• Hi, when i try made changes in text and map, but when i click update, goes to
    http://www.feeling.pt/wp-admin/post.php and appear
    “Page you are looking is Not Found
    The page you are looking for does not exist. It may have been moved, or removed altogether. Perhaps you can return back to the site’s homepage and see if you can find what you are looking for.”

    I just re-saved the permalinks and update the .htaccess and continues with same error.

    Any help?

    Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Yaroslava

    (@roboyaroslava)

    1: double check your .htaccess file. and paste below code into it.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress
    2: check your database for errors and perform a db repair and table optimization

    3: try changing the directory and file permissions & change them to 755, 775 or even 777 for a while. also change htaccess file permission to 777 for a short time.

    4: double check the URL of post edit screen and make sure the URL looks like below.

    http://yourdomain.com/wp-admin/post.php?post=1&action=edit
    where post=1 is the post ID and action value must equal to edit.

    5: i think you already have changed permalink structure from settings since it’s very basic thing and works for frontend but try changing them again to Numeric.

    6: make sure that you have not modified any core WordPress file or filename.

    7: WordPress provides an action hook named save_post which you can use to test post data for clarification. find out more here

Viewing 1 replies (of 1 total)

The topic ‘Page not upfate’ is closed to new replies.