安装magento2.2.2时出现500 Internal Server Error


14

我正在尝试使用WAMP在本地Windows环境中安装Magento 2.2.2。但这给了我500内部服务器错误。当我替换htaccess文件的先前版本时,它可以工作。那会是问题吗?

重写引擎已打开,模块已加载。

错误日志:

Invalid command '<IfVersion', perhaps misspelled or defined by a module not included in the server configuration

我试图启用LoadModule version_module modules/mod_version.so它,但是现在安装运行时,介于两者之间的响应在我的控制台中false是几秒钟之后的。当我尝试刷新时,它将启动剩余的安装,但是我必须刷新几次才能完成安装。我不知道在此过程中是否成功安装了Magento。

当我去管理员那可以用,但是我收到控制台JS错误。前端仍然在没有CSS的情况下加载。

我尝试安装几次,但每次出现此错误时


您能否共享htaccess文件以及详细描述错误的日志文件?
user5198077 '18年

Answers:


21

好吧,最后....这是我摆脱掉的过程。

步骤1 ::请确保LoadModule version_module modules/mod_version.so已从httpd.conf文件中加载该文件以解决Invalid command '<IfVersion', perhaps misspelled or defined by a module not included in the server configuration错误。

第2步::

请确保将以下变量值设置为

max_execution_time = 1800
max_input_time = 1800
memory_limit = 1024M

步骤3::(可选)

创建虚拟主机。

在文件路径中添加以下代码:: D:\wamp64\bin\apache\apache2.4.18\conf\extra\httpd-vhosts.conf

路径可能会因您的安装而异

<VirtualHost *:80>
ServerName demomage222
ServerAlias www.demomage222.com
DocumentRoot D:/wamp64/www/mage222
<Directory  "/">
    Options +Indexes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
</Directory>

在主机文件中输入以下内容。我的主机文件路径(可能与您有所不同)::C:\Windows\System32\drivers\etc\hosts

127.0.0.1 www.demomage222.com

为您的信息+1,它可以帮助我解决问题!需要启用特殊的Loadmodule mod_version.so!再次感谢您
Manthan Dave


0

找到Options +FollowSymLinks.htaccess你的Magento根并将其更改为:Options +SymLinksIfOwnerMatch

为此/pub/static/.htaccess/pub/media/.htaccess也要这样做。

编辑

所描述的错误指向未启用mod_version。

要启用它,去http.conf了在conf文件夹中,发现有mod_version中有一条线。

从开头删除“#”以取消注释。

然后重新启动apache。


变化但什么都没发生
Zaheerabbas

您应该检查php错误日志,然后发布它的内容。它应该位于这里:... \ wamp \ logs \ error.log
Lez,

它给日志中的错误,如Invalid command '<IfVersion', perhaps misspelled or defined by a module not included in the server configuration
Zaheerabbas

0

如果在安装时面对它则可能是Permissions Error

在大多数情况下,“ 500 Internal Server Error”是由于对一个或多个文件或文件夹的不正确权限所致。将文件夹权限设置为0775

sudo chmod -R 775 /path_to_magent/Folder

不适用于此处的窗户
Dominic
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.