• Ok, so I successfully installed WordPress on a Apache server, and was immediately met with a 403/ACCESS DENIED error trying to sign in.

    All of my file permissions are set to 775.

    What’s even more odd is I can log into the wp-admin/index.php file just fine. I can access a .txt file, or .html in the root directory just fine, I can also access any image in any directory just fine.

    I just simply can’t run my index PHP files in my root directory, or my wp-content/theme/nameoftheme/it’s index.php file. The root php files give me a 403/ACCESS DENIED error, and my theme/index.php file gives me a error string, failure to call function, etc.

    I can however, run wp-login.php in my root directory, so it’s just the index.php file…

    My .htaccess file looks as such :

    # BEGIN WordPress
    
    AddType x-mapp-php5 .php
    AddHandler x-mapp-php5 .php
    
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    <IfModule mod_security.c>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </IfModule>
    
    # END WordPress

    Please help, I’m at my wits end….

Viewing 4 replies - 1 through 4 (of 4 total)
  • Have you tried to upload index.php again in case the transfer was corrupt?

    Have you contacted your host to see if they can see any issues with your account?

    Thread Starter dankfresh

    (@dankfresh)

    Yea I uploaded index.php a few times, and the entire WordPress package to see maybe if that was the case.

    Still waiting to hear from Network Solutions.

    From what I’ve read, this could be a problem on their part, as a lot of people have experienced this with NetSol.

    Did anyone find a solution to this?

    All of my file permissions are set to 775.

    The permissions need to 755 for folders and 644 for files

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘403 Error Access Denied, index.php root file only’ is closed to new replies.