Apache服務器,從IIS遷移 - 我有錯誤報告,我有訪問服務器日誌,既沒有報告任何錯誤,但頁面仍然空白在遷移joomla安裝 - 無空白頁面
http://204.12.74.110/index.php
http://204.12.74.110/administrator/index.php
任何援助將不勝感激。
Apache服務器,從IIS遷移 - 我有錯誤報告,我有訪問服務器日誌,既沒有報告任何錯誤,但頁面仍然空白在遷移joomla安裝 - 無空白頁面
http://204.12.74.110/index.php
http://204.12.74.110/administrator/index.php
任何援助將不勝感激。
您是否檢查過您的PHP版本?檢查新服務器中的所有資源是否相同。
爲Joomla 2.5.X,1.7.x和1.6.x的
Software Recommended Minimum
PHP 5.3 + 5.2.4 +
MySQL 5.0.4 + 5.0.4 +
Microsoft IIS 7 7
,併爲Joomla 3.x的,你可以檢查此鏈接:http://www.joomla.org/technical-requirements.html
你設置錯誤中最大上報您joomla配置?如果您無法訪問後端槽的瀏覽器,手動更改的configuration.php文件,以下變量設置爲最大
public $error_reporting = 'maximum';
有時白頁是由文件權限問題造成的。嘗試下面的代碼添加到您的index.php文件
error_reporting(E_ALL);
ini_set('display_errors', '1');
的上端以確保正在調用該文件添加一個
echo 'hello';die;
到您的index.php文件也是如此。我認爲PHP是用Apache正確配置的?