php 页面跳转 本土windows 环境正常,上传linux 服务器上跳转不了
php 页面跳转 本地windows 环境正常,上传linux 服务器上跳转不了
php 做的一个下项目,登录后页面跳转到首页,在本地的Windows 环境是正常的,上传到linux服务器上就跳转不了。求解答。
代码,项目结构如下:
action/loginin.php
//user login<br />if (isset($_POST['username']) && isset($_POST['password'])<br /> && !empty($_POST['username']) && !empty($_POST['password'])<br />) {<br /> try{<br /> $username = $_POST['username'];<br /> $password = $_POST['password'];<br /> $rs = $config[DAOIMPL]->getLoginByName($username);<br /> $arr = mysql_fetch_array($rs);<br /> //echo $arr['sys_user_passwd'];<br /> if ($arr && $arr['sys_user_passwd'] == generateUserPassword($password)) {<br /> $_SESSION[SESSIONUSER] = $username;<br /> echo '<script language=javascript>window.location="../index.php"</script>';//跳转到根目录下的index.php<br /> }else {<br /> echo "<script language=javascript>alert('用户名或密码不正确,请重新输入!'); window.location='../login.php'</script>";<br /> exit(0);<br /> }<br /> }<br /> catch (Exception $e){<br /> echo "<script language=javascript>alert('".$e."'); window.location='../login.php'</script>";<br /> exit(0);<br /> }<br />}

另外服务器是 操作系统:Ubuntu 12.04 64位
------解决方案--------------------
重新回到登录界面 不一定是你没有跳转到index.php,有可能是你的session没有注册成功,到index.php又转到login.php了。
------解决方案--------------------
有可能是你的session没有注册成功,到index.php页面之后,判断没有登录,又往登录界面跳转了。你先屏蔽index.php的跳转功能试试看。
------解决方案--------------------
if (isset($_POST['username']) && isset($_POST['password']) && !empty($_POST['username']) && !empty($_POST['password'])) {<br /> $username = $_POST['username'];<br /> $password = $_POST['password'];<br /> $rs = $config[DAOIMPL]->getLoginByName($username);<br /> $arr = mysql_fetch_array($rs);<br /> if ($arr && $arr['sys_user_passwd'] == generateUserPassword($password)) {<br /> $_SESSION[SESSIONUSER] = $username;<br /> echo '<script language=javascript>alert("验证成功")</script>';<br /> echo '<script language=javascript>window.location="/cloudsong/index.php"</script>';<br /> }else {<br /> echo "<script language=javascript>alert('用户名或密码不正确,请重新输入!'); window.location='/cloudsong/login.php'</script>";<br /> }<br />}
------解决方案--------------------
从你贴出来的loginin.php代码和运行情况来看,是不可能往 录界面跳转 跳转的,对吧? 屏蔽掉index.php的跳转后,程序就不再往登录界面跳转,这也就说明了一些问题。
你再在index.php最前面输出一些信息,看看情况如何?
------解决方案--------------------
那就是你没有 session_start() 了
------解决方案--------------------
輸出session看看有什麼東西?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
