skip to Main Content

hello and hope you guys have a fantastic time

I have a problem with my WordPress website, it does now show fallowing elements: my theme, my homepage, my WordPress bar at the top

it just show a empty black blank page with big logo of my website

you can see other part of the website by searching it manually (like: yourname.com/blog)

but not the main home page (like: yourname.com)

please assist me

thanks ❤

2

Answers


  1. Seems most likely a HTTP 403 or .htaccess error or maybe Permission error.

    Paste this content into .htaccess file:

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    # END WordPress
    

    In case you cannot find .htaccess file, DOT files are hidden by default. If you are using cPanel, Go to File Manager, click on settings and select show DOT files.

    If you still have problems, Go to Chrome Developer Tools(F12 or inspect element) and then to console. Click a screenshot of (red) errors and send it here.

    Generally, the second problem might be the Permissions. Do the following in terminal/ssh:

    chmod 755 /path/to/wordpress/* -r
    

    This is a insecure setting as you should keep PHP files on 0644 and other static files on 0755. If it works after this, problem was your permissions.

    If you still experience problems, share the Error Log or PHP version and other details.

    Login or Signup to reply.
  2. To display your home page at yourname.com you have to change the setting for that.
    In your WordPress dashboard go to settings-> reading
    enter image description here

    IN static page select the home page which you have to display in yourname.com

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search