3

Someone just upgraded to PHP 5.4.8 and now I get an error:

Google Chrome:

The website encountered an error while retrieving http://10.10.1.22/. It may be 
down for maintenance or configured incorrectly.

Firefox: Blank all white window

I did some playing around and found if I put just index.html in the /var/www/html, it display's it. But if I put in a fresh copy of joomla I get that error. I get the same error when trying to access phpmyadmin.

Everything was working fine before the upgrade, any idea's on what I need to configure? Suggestions one things I should look at or try.

I believe LAMP is installed.

4

2 回答 2

1

如果我将 index.html 放在 /var/www/html 中,它就会显示出来。说明没有php配置问题。

可能存在一些特定于扩展的问题。您可以尝试使用默认的 Joomla 安装并一次添加一个扩展,直到您确定哪些特别有问题,然后咨询扩展开发人员 - 他们可能不知道这些问题。

于 2012-11-10T02:30:43.777 回答
1

Html 不需要服务器干预即可显示。

尝试放置一个 php 文件:index.php

里面放了这些代码:

<?php

ini_set('display_errors', 1); 
ini_set('log_errors', 1); 
ini_set('error_log', dirname(__FILE__) . '/error_log.txt'); 
error_reporting(E_ALL);

echo "Hello World!";
echo "php is working";
php_info();

//this should generate an error--->
echo $unknown_var;
    ?>
    <html>
    Html is working
    </html>

这应该可以帮助您确定问题所在。

我的猜测是您的服务器可能需要重新启动。

编辑

看来您的设置open_basedir有问题

或 .htaccess 阻止您访问您的 www 导演。

olso 检查doc_root的值

于 2012-11-10T02:56:26.780 回答