迁移joomla安装-获得没有错误的空白页面


Migrating a joomla install - getting blank page with no errors

Apache服务器,从IIS迁移-我有错误报告,我可以访问服务器日志,也没有报告任何错误,但页面在上仍然是空白的

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正确配置的?