Wordpress Index.php not loading Wordpress Index.php not loading wordpress wordpress

Wordpress Index.php not loading


This may be a long shot, but once saw a simillar problem which in the end the problem was that there was an index.html file as well in the folder.Make sure such file does not exist.

And did you try re-installing?


may be the premits of htaccess disallow it from working, that will result not found pages

if you uploaded the script though root access

try this command

chown -hR user:user folder_path;chmod -R 644 folder_path/*.php

replace user by your user name, replace folder path by the full path of wordpress

Edit:

The problem is your theme not include index.php

try to explore your theme directory, and check if there is index.php file, or switch to another theme

if the file is exists, Try to change file permissions use the command that i provided above again, i've edited it


You can change main diretory and sub directory all php files permission with this SSH Command

find /top/level/directory -type f -name "*.php" -print | xargs chmod 644