NeonNero wrote:
As for the permission issue, I don't have this problem with my WordPress blog installed on the Linode I have in London.
When I installed WordPress, I did this:
Code:
chown -R www-data:www-data /space/web/neonnero.com/www
Where both the user name and the group name Apache runs under is named "www-data" (Debian default, I assume), and "/space/web/neonnero.com/www" is the server path of the WordPress install directory. The "-R" changes the ownership recursively in all files and subpaths.
Thanks for the tips! I am using CentOS, so I changed the ownership of my wordpress files to apache.apache and it works.
cd /www-root-directory/
chown -R apache.apache *
I am not sure this will cause security issue or not, but you can change the ownership back after you finish the installation.