I put together a quick WordPress site locally using MAMP, then checked it into an SVN repo. I then checked it out on to my development server.
I didn't change anything except to run the search and replace tool script from Interconnectit to updated the URL of the site in the database on the server.
Initially, I got a 500 server error. Checking the logs, I discovered that this "SoftException" was because index.php
was writeable by group - the permissions were 664. No problem - a quick change of permissions to 644 sorted that. So now the frontside was working.
However, strangely, the admin side of the site did not work. It just produced an endless redirect loop in all browsers.
Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.
Nothing has changed since the local development version. The htaccess file is just a standard WordPress one. Nothing weird... still working fine locally.
So what's going on?
Checking the permissions of wp-login.php
revealed that they too had somehow been set to 664 - the same permissions that caused index.php
to fail and caused the 500 server error.
I changed the permissions of wp-login.php
to 644 and hey presto, the WordPress login page showed up.
But on logging in, another redirect loop. So, once again, looking at /wp-admin/index.php
, the permissions were 664 rather than 644.
Fixing them led to problems with the next files in line - the dashboard was a right mess. One by one, changing from 664 to 644 corrected the issues (/wp-admin/load-scripts.php, /wp-admin/load-styles.php).
So it became obvious that a recursive change of permissions was the only way to sort things out.
My UNIX isn't exactly top notch, but this appears to have worked (running from Mac OS X Terminal). I ran it from the root directory of this WP install.
find . -type f -perm 664 -print -exec chmod 644 {} \;
There might be a better command, but I understand this to mean "find all files with 664 permissions and change them to 644".
It has fixed my problem.