Ubuntu上的Magento 1.9.1.0安装问题

时间:2017-03-04 08:24:37

标签: magento magento-1.9.1

我从magento.com网站下载了Magento 1.9.1.0。当我在解压缩下载程序后尝试安装时,它会出现以下错误:

  

localhost页面无效

     

localhost目前无法处理此请求。   HTTP ERROR 500

enter image description here

2 个答案:

答案 0 :(得分:1)

我也遇到类似的错误,这是我的apache配置文件被搞砸了,我建议你按照本教程一定会帮助你顺利安装。

https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-magento-on-ubuntu-14-04

答案 1 :(得分:0)

请从magento安装的根目录启用index.php文件中的错误。 要启用错误,请替换以下代码:-

if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
    Mage::setIsDeveloperMode(true);
}
ini_set('display_errors', 0);

umask(0);

具有:-

#if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
    Mage::setIsDeveloperMode(true);
#}
ini_set('display_errors', 1);

umask(0);

现在它将显示错误的实际原因,可以进一步处理