php 页面跳转 本土windows 环境正常,上传linux 服务器上跳转不了

WBOY
Release: 2016-06-13 12:04:19
Original
1047 people have browsed it

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 />}
Copy after login





另外服务器是 操作系统: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 />}
Copy after login
如果登录成功,会弹出“验证成功”对话框,你有吗?
------解决方案--------------------

引用:
Quote: 引用:

有可能是你的session没有注册成功,到index.php页面之后,判断没有登录,又往登录界面跳转了。你先屏蔽index.php的跳转功能试试看。


session已经设置成功,屏蔽掉index.php的跳转后,程序就停在了logininphp


从你贴出来的loginin.php代码和运行情况来看,是不可能往 录界面跳转 跳转的,对吧? 屏蔽掉index.php的跳转后,程序就不再往登录界面跳转,这也就说明了一些问题。

你再在index.php最前面输出一些信息,看看情况如何?
------解决方案--------------------
那就是你没有 session_start() 了
------解决方案--------------------
輸出session看看有什麼東西?
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!