doujia6433 2019-03-27 20:29
浏览 79
已采纳

当我使用会话从页面发送值到另一个页面时,出现以下错误[重复]

This question already has an answer here:

Warning: session_start(): open(/var/cpanel/php/sessions/ea-php56/sess_c84fdb91458e26c7325faf74a529a3, O_RDWR) failed: No such file or directory (2) in /home/username/public_html/test2.php on line 3

Warning: session_start(): Failed to read session data: files (path: /var/cpanel/php/sessions/ea-php56) in /home/username/public_html//test2.php on line 3

Notice: Undefined index: username in /home/username/public_html/test2.php on line 4

i used this code but add

(error_reporting(E_ALL); 
ini_set('display_errors', 1);) 

to above of test2.php

</div>
  • 写回答

1条回答 默认 最新

  • doureng6738 2019-03-27 20:36
    关注

    Your session directory /var/cpanel/php/sessions/ea-php56/ on sever may be not exist or you do not have permissons to access to it.

    Create directory if not exist with proper permissions or change session directory in php.ini file. If you dont have access to server contact your service provider.

    You can set below line before accesing or creating sesssion to change session directory for your script.

    ini_set('session.save_path', '/path/to/your/folder')
    

    https://www.php.net/manual/en/function.session-save-path.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部