/dashboard/setup redirect loop [SOLUTION]
I'm posting this here to help others.
The .htaccess file is botched in the 2.6 download. Maybe it isn't for some, but for some it is. I tried several versions, reinstalling, etc etc.. and the only thing that worked was an old post by @vrijvlinder of an older .htaccess file:
<IfModule mod_rewrite.c> RewriteEngine On # Certain hosts may require the following line. # If vanilla is in a subfolder then you need to specify it after the /. # (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum) RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L] </IfModule>
Hope this helps someone not spend an entire day on a redirect problem.
Now.. if someone could just tell me how to format code correctly on this forum
^ just for good measure.
Donovan
Comments
Testing further, I added back one component at a time, and the offending code in the original .htaccess is somewhere in:
Donovan