我正在尝试在我的localhost上安装drupal6,但安装没有完成。 它在创建数据库表后陷入困境。
重定向到http://localhost/sie/install.php?locale=en&profile=default&op=start&id=105
并提供以下错误。
在Firefox中
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
此问题有时可能是由禁用或拒绝引起的 接受cookies。
在Chrome中
此网页有重定向循环
我尝试过启用cookies /添加localhost作为例外。请帮帮我。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
答案 0 :(得分:1)
问题在于我的mysql配置,我在/etc/mysql/my.cnf中给出了autocommit = 0来加快数据文件的加载速度,然后我就忘了它。
因为自动提交不会发生,所以drupal安装脚本会堆积所有事务并导致重定向循环。
当我评论autocommit = 0行时,问题就消失了。