• Hello
    So far all has been going well setting up my blog.
    Today though I have tried to edit a page.

    When I click on Pages>Edit I get the list of pages as usual.
    BUT
    When I then click on EDIT or QUICK EDIT for any of the pages I don’t get any editors appearing. All I get is a header at the top saying “EDIT PAGE”.

    I have the usual menus on the right and left.

    Heeeelp!!!!!

    Thanks

    Dave

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter davehoward23

    (@davehoward23)

    Though a screenshot may help

    Thread Starter davehoward23

    (@davehoward23)

    Here’s a screenshot

    Thread Starter davehoward23

    (@davehoward23)

    Anyone out there?

    I think it may be a database problem but I don’t know!

    Thread Starter davehoward23

    (@davehoward23)

    Any ideas anyone?
    How do I repair the database?
    Clues?

    I’m getting exactly the same problem. Just installed latest WP and cannot edit any content on either posts or pages. All other screens and data appear fine, so I strongly doubt it’s the database. I went into PHPAdmin to see that all tables were readable, etc., and everything looked fine.

    I’m wondering if a setting in FireFox is blocking the AJAX code that allows editing, or if it’s a directory permissions setting, or a browser incompatibility with the latest WP.

    Anybody at WP.org have an idea. Prior versions of WP did not have this problem.

    Dave, I found what was preventing the editor on my system. I had edited the contents of .htaccess within the wp-admin folder on the server to deny access to non-admin IP addresses. In the process, I had removed the WordPress code that was in there. Adding it back (example is in the wp-content folder) solved the problem. The code should resemble the following:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /[yourhomefolder]/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /[yourhomefolder]/index.php [L]
    </IfModule>
    
    # END WordPress
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Suddenly No page editing available’ is closed to new replies.