php验证session无效问题解决办法

DDD
Release: 2023-11-24 17:42:10
Original
1561 people have browsed it

php验证session无效问题解决办法

   环境,我用的是apache+php环境了

  如我的程序代码如下

 代码如下  


           
           
           

提交之后处理文件这post.php文件

if($_SESSION['ssioner']!=$ssever){
           echo("<script>alert('验证码必须由4位数字组成!');history.back();</script>");exit;  
           }

  结果发现一直提示验证码必须由4位数字组成,我再打印输出session

  echo $_SESSION['ssioner'];exit;

  一直为空了,于时我想到了php环境配置的一个session文件目录,现在我们找到php.ini配置文件找到

  upload_tmp_dir

  发现这个目录是

  upload_tmp_dir="D:\www.111cn.net\tp"

  我检查一下我的D盘发现只有www.111cn.net文件而没有tp目录了,这样问题就找到了,于时我创建一个tp目录,重启apache发现在tp目录有sess_i40gl0p4hfep5r69j67o1k26d01文件了,这样再重新登录发现成功了。

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