PHP Session not Saving

前端 未结 9 1084
情话喂你
情话喂你 2020-12-03 17:39

I have this written at the very first line on every page of my website.

include(\"restd.php\");

and restd.php contains the following lines

9条回答
  •  离开以前
    2020-12-03 17:48

    Your session directory (probably /tmp/) is not writable.

    Check with session_save_path() if it is writable.

    if (!is_writable(session_save_path())) {
        echo 'Session path "'.session_save_path().'" is not writable for PHP!'; 
    }
    

提交回复
热议问题