Title: computerslayer1's Replies | WordPress.org

---

# computerslayer1

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 66 total)

1 [2](https://wordpress.org/support/users/computerslayer1/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/computerslayer1/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/computerslayer1/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/computerslayer1/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/computerslayer1/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Drafts don’t save or publish](https://wordpress.org/support/topic/drafts-dont-save-or-publish/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/drafts-dont-save-or-publish/#post-13939569)
 * This block of code in the htaccess file seems to have been causing the problem.
 *     ```
       # Add/remove trailing slash to (non-file) URLs
       # ----------------------------------------------------------------------
       #
       # Google treats URLs with and without trailing slashes separately.
       # Forcing a trailing slash is usually preferred, but all that's really important is that one correctly redirects to the other.
       #
       # By default option 1 (force trailing slash) is activated.
       # http://googlewebmastercentral.blogspot.com/2010/04/to-slash-or-not-to-slash.html
       # http://www.alistapart.com/articles/slashforward/
       # http://httpd.apache.org/docs/2.0/misc/rewriteguide.html#url Trailing Slash Problem
       # ----------------------------------------------------------------------
       #
       # Option 1:
       # Rewrite "domain.com/foo -> domain.com/foo/"
       #
       RewriteCond %{REQUEST_FILENAME} !-f
       RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/|#(.*))$
       RewriteRule ^(.*)$ /$1/ [R=301,L]
       ```
   
 * I’m not sure why that was causing an issue, or if that rule is even necessary
   these days.
 * [edit]: Ok, so it looks like it is no longer necessary with apache 2.2 and 2.4.
   The DirectorySlash option is on by default, which makes these rules unnecessary.
    -  This reply was modified 5 years, 3 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
    -  This reply was modified 5 years, 3 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
    -  This reply was modified 5 years, 3 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Drafts don’t save or publish](https://wordpress.org/support/topic/drafts-dont-save-or-publish/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/drafts-dont-save-or-publish/#post-13939443)
 * On a hunch, I removed everything in my htaccess file except for the very bare
   minimum wordpress rewrite rules.
 * After that, a draft successfully saved.
 * So it looks like there may be an issue in the htaccess file somewhere. There 
   are several blocks of security-related rules, so it seems logical to assume something
   in there is preventing wordpress from saving posts properly. I’ll have to troubleshoot
   further.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Drafts don’t save or publish](https://wordpress.org/support/topic/drafts-dont-save-or-publish/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/drafts-dont-save-or-publish/#post-13938716)
 * Bump…still stuck on this.
 * One other thing to not is that in the posts database table, new rows are created,
   but the title and content data are not saved. These rows just seem to be populated
   by a bare minimum of initial default data and never actual save anything that
   I input.
 * The post_title is always “Auto Draft” and the post_status is always “auto-draft”.
 * Every time I click save draft or publish, a new row gets created.
 * Here are the rows that get created in the posts table:
 *     ```
       INSERT INTOmy_posts(ID,post_author,post_date,post_date_gmt,post_content,post_title,post_excerpt,post_status,comment_status,ping_status,post_password,post_name,to_ping,pinged,post_modified,post_modified_gmt,post_content_filtered,post_parent,guid,menu_order,post_type,post_mime_type,comment_count) VALUES
       (921, 1, '2021-01-21 10:48:32', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2021-01-21 10:48:32', '2021-01-21 15:48:32', '', 0, 'http://mydomain.com/?p=921', 0, 'post', '', 0),
       (920, 1, '2021-01-21 10:47:39', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2021-01-21 10:47:39', '0000-00-00 00:00:00', '', 0, 'http://mydomain.com/?p=920', 0, 'post', '', 0),
       (919, 1, '2021-01-21 10:43:58', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2021-01-21 10:43:58', '2021-01-21 15:43:58', '', 0, 'http://mydomain.com/?p=919', 0, 'post', '', 0),
       (918, 1, '2021-01-21 10:28:38', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'open', 'open', '', '', '', '', '2021-01-21 10:28:38', '0000-00-00 00:00:00', '', 0, 'http://mydomain.com/?p=918', 0, 'post', '', 0);
       ```
   
    -  This reply was modified 5 years, 3 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
    -  This reply was modified 5 years, 3 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
    -  This reply was modified 5 years, 3 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
    -  This reply was modified 5 years, 3 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
    -  This reply was modified 5 years, 3 months ago by [Yui](https://wordpress.org/support/users/fierevere/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Drafts don’t save or publish](https://wordpress.org/support/topic/drafts-dont-save-or-publish/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/drafts-dont-save-or-publish/#post-13913278)
 * I tried installing the wordpress health check plugin.
 * The only “critical” issue listed was that I have automatic updates disabled (
   intentionally).
 * There were 2 recommended improvements (remove inactive plugins & themes).
 * Other than that, nothing else was listed.
 * The file integrity check also passed.
    -  This reply was modified 5 years, 3 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Drafts don’t save or publish](https://wordpress.org/support/topic/drafts-dont-save-or-publish/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/drafts-dont-save-or-publish/#post-13913223)
 * I mentioned above that I disabled all plugins, and it had no impact on the issue.
 * I doubt this is a PHP engine issue. 7.4.14 was released this January and is supported
   until 2022. This issue has appeared throughout different versions of PHP and 
   different versions of wordpress. I don’t think it’s as simple as a versioning
   issue, otherwise I think it would have disappeared on its own by this point.
 * Any other ideas?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Drafts don’t save or publish](https://wordpress.org/support/topic/drafts-dont-save-or-publish/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/drafts-dont-save-or-publish/#post-13913136)
 * PHP is 7.4.14
 * Reinstall from admin did not impact the issue.
 * I’m running a custom theme. Switching to the default 2021 theme did not impact
   the issue.
 * When I load the new post page, in the console there are a few jquery depreciation
   warnings, and this:
 * `[DOM] Found 2 elements with non-unique id #_wpnonce: (More info: https://goo.
   gl/9p2vKq) <input type=​"hidden" id=​"_wpnonce" name=​"_wpnonce" value=​"0ca1cf43d3"
   >​ <input type="hidden" id="_wpnonce" name="_wpnonce" value="2486c5182f"> post-
   new.php:1`
 * When I attempt to save or publish, there no additional warnings or errors.
    -  This reply was modified 5 years, 3 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Drafts don’t actually save or publish (3.5)](https://wordpress.org/support/topic/drafts-dont-actually-save-or-publish-3-5/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/drafts-dont-actually-save-or-publish-3-5/#post-12514269)
 * My mistake–It’s 5.3.2. I reversed the numbers.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Stock Manager for WooCommerce] Error – No stock editing option (v2.02)](https://wordpress.org/support/topic/error-no-stock-editing-option-v2-02/)
 *  [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [6 years, 10 months ago](https://wordpress.org/support/topic/error-no-stock-editing-option-v2-02/#post-11697789)
 * That kind of defeats the purpose of this plugin if there’s no way to view/edit
   stock numbers…
 * Can we go back to the previous version?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[cformsII] Wrong URL for jquery files](https://wordpress.org/support/topic/wrong-url-for-jquery-files/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/wrong-url-for-jquery-files/#post-9617250)
 * Nevermind–I found in the styling section of the plugin that “Redmond” was entered,
   instead of “redmond”. Problem solved.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No thumbnails for large resolution images](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/#post-9350712)
 * Well, the host increased the memory limit to 128MB and that seemed to resolve
   the issue.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No thumbnails for large resolution images](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/#post-9333118)
 * It’s a managed server. I don’t have shell access.
 * However, I don’t seem to have a problem uploading large files through cpanel.
   A 45MB file uploaded without any problems.
    -  This reply was modified 8 years, 10 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
    -  This reply was modified 8 years, 10 months ago by [computerslayer1](https://wordpress.org/support/users/computerslayer1/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No thumbnails for large resolution images](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/#post-9326144)
 * Well, I increased the memory limit to 128MB, but now I’m back to seeing the mysterious“
   HTTP error”
 * > [View post on imgur.com](https://imgur.com/WPJhlLM)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No thumbnails for large resolution images](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/#post-9326129)
 * I did not see anything in the server logs or server error logs pertaining to 
   gd or imagemagick.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [No thumbnails for large resolution images](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/no-thumbnails-for-large-resolution-images/#post-9326108)
 * This is what is currently set:
 * max_execution_time = 30 ; Maximum execution time of each script, in seconds
    
   max_input_time = 60 ; Maximum amount of time each script may spend parsing request
   data max_input_vars = 1000 memory_limit = 96M ; Maximum amount of memory a script
   may consume (32MB)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] Not working on multisite](https://wordpress.org/support/topic/not-working-on-multisite-17/)
 *  Thread Starter [computerslayer1](https://wordpress.org/support/users/computerslayer1/)
 * (@computerslayer1)
 * [9 years ago](https://wordpress.org/support/topic/not-working-on-multisite-17/#post-9086225)
 * Yes, I have 2.5.19 installed.

Viewing 15 replies - 1 through 15 (of 66 total)

1 [2](https://wordpress.org/support/users/computerslayer1/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/computerslayer1/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/computerslayer1/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/computerslayer1/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/computerslayer1/replies/page/2/?output_format=md)