Cannot start session without errors,please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

  • 22907
  • 0
  • PHP
  • 2013-08-14

Cannot start session without errors,please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.

如果在架PHP網站站的時候,當要進入phpMyAdmin介面時發生下圖錯誤訊息。

會產生問題是因為session的設定未設定完全而導致。

可依照下列操作問題排除:

1. 找到C:\Windows\php.ini 後將它開啟,

    利用搜尋找到session.auto_start = 0,將前面的分號(;)刪除,

    若是設定成0就是不會自動開始session,若希望session會自動開始則可設1。

 

2. 一樣在php.ini裡面,利用搜尋找到

    ; where MODE is the octal representation of the mode. Note that this
    ; does not overwrite the process's umask.
    ;session.save_path = "C:/Users/JELLY/AppData/Local/Temp"

    將session.save_path前面的分號(;)刪除,後面的路徑就是存放session的地方(也可另外指定要存放的地方),

    請務必確認是否真有此路徑和資料夾。

 

3. 找到AppServ\www\phpMyAdmin\config.inc.php

    $cfg['Servers'][$i]['auth_type']     = 'cookie';

    將cookie改為http

    $cfg['Servers'][$i]['auth_type']     = 'http';

 

4. 按照上述解決辦法設定好後,重新啟動Apache2.2,再開啟phpMyAdmin即可正常進入介面。

 

 

參考或是複製語法時,別忘了留個言喔 ^ ^ ~