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 设计一个光控计数器,全部用ttl芯片
  • ¥15 vscode platformio
  • ¥15 代写uni代码,app唤醒
  • ¥15 全志t113i启动qt应用程序提示internal error
  • ¥15 ensp可以看看嘛.
  • ¥80 51单片机C语言代码解决单片机为AT89C52是清翔单片机
  • ¥60 优博讯DT50高通安卓11系统刷完机自动进去fastboot模式
  • ¥15 minist数字识别
  • ¥15 在安装gym库的pygame时遇到问题,不知道如何解决
  • ¥20 uniapp中的webview 使用的是本地的vue页面,在模拟器上显示无法打开
手机看
程序员都在用的中文IT技术交流社区

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

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

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

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

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

客服 返回
顶部