Title: larkinsoft's Replies | WordPress.org

---

# larkinsoft

  [  ](https://wordpress.org/support/users/larkinsoft/)

 *   [Profile](https://wordpress.org/support/users/larkinsoft/)
 *   [Topics Started](https://wordpress.org/support/users/larkinsoft/topics/)
 *   [Replies Created](https://wordpress.org/support/users/larkinsoft/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/larkinsoft/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/larkinsoft/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/larkinsoft/engagements/)
 *   [Favorites](https://wordpress.org/support/users/larkinsoft/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post and Page edit screens are blank in FireFox](https://wordpress.org/support/topic/post-and-page-edit-screens-are-blank-in-firefox/)
 *  Thread Starter [larkinsoft](https://wordpress.org/support/users/larkinsoft/)
 * (@larkinsoft)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/post-and-page-edit-screens-are-blank-in-firefox/#post-1305462)
 * esmi, the solution was simpler but less obvious. I had edited the contents of.
   htaccess in my wp-admin folder to deny non-admin types, and in the process had
   removed the WordPress default code (see below). Adding the code back in below
   my edits restored the page/post editor functionality.
 *     ```
       # 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
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Suddenly No page editing available](https://wordpress.org/support/topic/suddenly-no-page-editing-available/)
 *  [larkinsoft](https://wordpress.org/support/users/larkinsoft/)
 * (@larkinsoft)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/suddenly-no-page-editing-available/#post-1304027)
 * 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
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Unable To Add New Blog Content](https://wordpress.org/support/topic/unable-to-add-new-blog-content/)
 *  [larkinsoft](https://wordpress.org/support/users/larkinsoft/)
 * (@larkinsoft)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/unable-to-add-new-blog-content/#post-1269654)
 * Also, make sure that the .htaccess file in your wp-admin folder contains the 
   following code (put there by default, but many developers edit this file for 
   security purposes):
 *     ```
       # 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
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Suddenly No page editing available](https://wordpress.org/support/topic/suddenly-no-page-editing-available/)
 *  [larkinsoft](https://wordpress.org/support/users/larkinsoft/)
 * (@larkinsoft)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/suddenly-no-page-editing-available/#post-1304007)
 * 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.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Non-menu, non-private Static Pages](https://wordpress.org/support/topic/non-menu-non-private-static-pages/)
 *  Thread Starter [larkinsoft](https://wordpress.org/support/users/larkinsoft/)
 * (@larkinsoft)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/non-menu-non-private-static-pages/#post-1100006)
 * Thanks a million Jarret – I appreciate it!

Viewing 5 replies - 1 through 5 (of 5 total)