0

我正在尝试在我的本地主机上安装 drupal6,但安装未完成。它在创建数据库表后卡住了。

它重定向到http://localhost/sie/install.php?locale=en&profile=default&op=start&id=105并给出以下错误。

在火狐中

Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

此问题有时可能是由禁用或拒绝接受 cookie 引起的。

在 Chrome 中

此网页有重定向循环

我尝试启用 cookie/添加 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>
4

1 回答 1

1

问题出在我的 mysql 配置上,我在 /etc/mysql/my.cnf 中给出了 autocommit=0 以更快地加载巨大的数据文件,然后我就忘记了。

因为自动提交不会发生,drupal 安装脚本会堆积所有事务并导致重定向循环。

当我评论 autocommit=0 行时,问题就消失了。

于 2013-10-30T13:01:15.120 回答