Title: illicious's Replies | WordPress.org

---

# illicious

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] new version high load?](https://wordpress.org/support/topic/new-version-high-load/)
 *  [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/new-version-high-load/#post-17434654)
 * Update:
 * It turn out my host server was having some network issues that made it very difficult
   for WP and all plugins to connect with other servers to perform efficiently.
 * This very slow network connection caused a sort of constant reconnect timeout
   that exhausted the server resources to a 508 error.
 * Server network is fine now where WP and Wordfence can retrieve needed data and
   now runs smoothly.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] new version high load?](https://wordpress.org/support/topic/new-version-high-load/)
 *  [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/new-version-high-load/#post-17432609)
 * I am also having this issue.
 * After an update from last night, the server load spiked up so much I kept receiving
   the 508 resource limit reached screens for all my WP sites.
 * I will try downgrading or temporary disabling wordfence until next version update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields (ACF®)] Latest Version Not Updating](https://wordpress.org/support/topic/latest-version-not-updating/)
 *  Thread Starter [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/latest-version-not-updating/#post-17406604)
 * New 6.2.6.1 update, updated just fine.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Minify HTML] Some links are together as a whole word.](https://wordpress.org/support/topic/some-links-are-together-as-a-whole-word/)
 *  Thread Starter [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/some-links-are-together-as-a-whole-word/#post-17210123)
 * I understand.
 * I just had to narrow down the issue and make sure there wasn’t any conflicts.
 * I have restored the Minify plugin to it’s unmodified normal state and added/altered
   the custom tags plugin’s css.
 * It now works find with or without html minify
 * Thanks for time and great plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Minify HTML] Some links are together as a whole word.](https://wordpress.org/support/topic/some-links-are-together-as-a-whole-word/)
 *  Thread Starter [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/some-links-are-together-as-a-whole-word/#post-17196750)
 * I’m aware of this as this was only a quick temporary fix until I have more time
   to look through long lines of codes.
 * Thanks for your reply.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Minify HTML] Some links are together as a whole word.](https://wordpress.org/support/topic/some-links-are-together-as-a-whole-word/)
 *  Thread Starter [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/some-links-are-together-as-a-whole-word/#post-17194693)
 * Small correction.
 * “On line 105 change:” Should be “On line 53 change:”
 * Or just look for the string listed in the earlier post
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Minify HTML] Some links are together as a whole word.](https://wordpress.org/support/topic/some-links-are-together-as-a-whole-word/)
 *  Thread Starter [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [2 years, 8 months ago](https://wordpress.org/support/topic/some-links-are-together-as-a-whole-word/#post-17194178)
 * I think I have made a temporary fix:
 * On line 105 change:
 *     ```wp-block-code
       $buffer = str_ireplace(array ('<script', '/script>', '<pre', '/pre>', '<textarea', '/textarea>', '<style', '/style>'), array ('M1N1FY-ST4RT<script', '/script>M1N1FY-3ND', 'M1N1FY-ST4RT<pre', '/pre>M1N1FY-3ND', 'M1N1FY-ST4RT<textarea', '/textarea>M1N1FY-3ND', 'M1N1FY-ST4RT<style', '/style>M1N1FY-3ND'), $buffer);
       ```
   
 * With:
 *     ```wp-block-code
       $buffer = str_ireplace(array ('<a', '/a>', '<script', '/script>', '<pre', '/pre>', '<textarea', '/textarea>', '<style', '/style>'), array ('M1N1FY-ST4RT<a', '/a>M1N1FY-3ND', 'M1N1FY-ST4RT<script', '/script>M1N1FY-3ND', 'M1N1FY-ST4RT<pre', '/pre>M1N1FY-3ND', 'M1N1FY-ST4RT<textarea', '/textarea>M1N1FY-3ND', 'M1N1FY-ST4RT<style', '/style>M1N1FY-3ND'), $buffer);
       ```
   
 * I simply added “<a></a>” links and now its working.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery by FooGallery : Responsive Image Gallery, Masonry Gallery & Carousel] Posts by Category?](https://wordpress.org/support/topic/posts-by-category-2/)
 *  Thread Starter [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/posts-by-category-2/#post-15882705)
 * Thanks for the reply.
 * I figured I could media categorize the images and load source them into a gallery.
 * Thanks again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Real Custom Post Order: Create a custom order for your content] Post Order Plugin Breaks Posts Nav Links.](https://wordpress.org/support/topic/post-order-plugin-breaks-posts-nav-links/)
 *  Thread Starter [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/post-order-plugin-breaks-posts-nav-links/#post-15832429)
 * I disabled every plugin and switched to an up to date wp theme with only rcpo
   plugin activated and problem is still there.
    I replaced the wp core files/folders(
   root, admin & include) with new wp (6.0.1). Though I remember modifying the link-
   template.php so that post navigation links would only point within the same taxonomy/
   category.
 * Will try again with all new wp install using default theme and import database
   data, See what happens from there.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Real Custom Post Order: Create a custom order for your content] Post Order Plugin Breaks Posts Nav Links.](https://wordpress.org/support/topic/post-order-plugin-breaks-posts-nav-links/)
 *  Thread Starter [illicious](https://wordpress.org/support/users/illicious/)
 * (@illicious)
 * [3 years, 12 months ago](https://wordpress.org/support/topic/post-order-plugin-breaks-posts-nav-links/#post-15824219)
 * A little follow up.
    I tried every version of the plugin down to v.1.3.8 Seems
   to be some incompatibility with another plugin or theme.
 * Will continue to work on this and try to resolve.
 * Btw. The plugin is working fine on my other WP site.

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