托管magento与godaddy得到错误
我已经更改了我的.htacces和php5.ini文件...
内部服务器错误
服务器遇到内部错误或配置错误,无法完成您的请求。
请与服务器管理员联系,告知他们错误发生的时间以及您在此错误发生之前执行的操作。
服务器错误日志中可能提供了有关此错误的更多信息。 我会感激你的。
答案 0 :(得分:1)
我刚刚在godaddy虚拟主机上完成了magento安装,并遇到了同样的问题。
修复方法是执行以下操作:
然后在magento基目录的.htaccess文件中,将rewrite base指令更改为指向相对路径,如下所示:
RewriteBase /
在同一个文件中,在其末尾添加以下内容: RewriteRule ^ index.php /(.*)$ [L]
将以下指令添加到godaddy的虚拟主机根目录下的php5.ini文件中(如果它不存在,则创建一个具有指定的相同名称):
[sourcecode language =“php”] register_globals = on allow_url_fopen = on cgi.fix_pathinfo = 1 [/源代码]
就是这样(不要忘记保存所有文件更改并关闭使用的文件。
有关完整说明和更详细的步骤,请转到以下文章。 The article
答案 1 :(得分:0)
首先检查您的服务器配置是否与Magento安装兼容:
Click here for Server Compatibility check
还要确保正确提供文件许可。
将以下文件夹的文件夹权限更改为777
app/etc
var
media
将以下文件的文件权限更改为644
index.php (main index file in magento root folder)
downloader/index.php ( otherwise if you will try to access System > Magento Connect >Magento Connect Manager (after magento installation) by logging to magento admin, you will get 500 Internal Server Error.)