Title: greencode's Replies - page 8 | WordPress.org

---

# greencode

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 106 through 120 (of 536 total)

[←](https://wordpress.org/support/users/greencode/replies/page/7/?output_format=md)
[1](https://wordpress.org/support/users/greencode/replies/?output_format=md) [2](https://wordpress.org/support/users/greencode/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/greencode/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/greencode/replies/page/7/?output_format=md)
8 [9](https://wordpress.org/support/users/greencode/replies/page/9/?output_format=md)…
[34](https://wordpress.org/support/users/greencode/replies/page/34/?output_format=md)
[35](https://wordpress.org/support/users/greencode/replies/page/35/?output_format=md)
[36](https://wordpress.org/support/users/greencode/replies/page/36/?output_format=md)
[→](https://wordpress.org/support/users/greencode/replies/page/9/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Add new post status](https://wordpress.org/support/topic/add-new-post-status-2/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/add-new-post-status-2/#post-11377866)
 * Ah, looks like this works:
 *     ```
       add_action( 'pre_get_posts', 'target_main_category_query_with_conditional_tags' );
   
       function target_main_category_query_with_conditional_tags( $query ) {
   
           if ( ! $query->is_main_query() ) {
                   $query->set( 'category__not_in', 1147 );
           }
       }
       ```
   
 * Still just need to know about stopping posts from showing with a direct URL to
   the post and stop indexing them in Search Engines.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Add new post status](https://wordpress.org/support/topic/add-new-post-status-2/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/add-new-post-status-2/#post-11377856)
 * Sorry, this is what I’m using:
 *     ```
       function target_main_category_query_with_conditional_tags( $query ) {
   
           if ( ! is_admin() && $query->is_main_query() ) {
               if ( is_category() ) {
                   $query->set( 'category__not_in', 1147 );
               }
           }
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Add new post status](https://wordpress.org/support/topic/add-new-post-status-2/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/add-new-post-status-2/#post-11377855)
 * That’s great. Thanks for this. I’ve managed to add that and now no posts are 
   showing in the archive page but they are still showing in all other post queries.
   How would I also block the individual posts from being picked up Google – just
   use robots to discourage Google?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Add new post status](https://wordpress.org/support/topic/add-new-post-status-2/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/add-new-post-status-2/#post-11365698)
 * Sorry I didn’t reply sooner. Private posts still show on the site though – I 
   realise the user won’t be able to read the post but I don’t want it on the site
   at all. Drafts, currently, are probably the only solution – not ideal as if we
   need to use that for actual Drafts then it could get messy. Find it very strange
   this isn’t an easy thing in WordPress.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Approve User] Emails not getting received](https://wordpress.org/support/topic/emails-not-getting-received/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/emails-not-getting-received/#post-11091638)
 * Ignore this. They were going into SPAM!
 *   Forum: [Developing with WordPress](https://wordpress.org/support/forum/wp-advanced/)
   
   In reply to: [wp_list_categories include parent](https://wordpress.org/support/topic/wp_list_categories-include-parent/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/wp_list_categories-include-parent/#post-10851906)
 * Thanks for this. The only trouble with using the exclude_tree is if I added further
   top level categories in the future I would then need to go into the code and 
   add the new ID to the exclude list. Is that correct? That’s fine if it were just
   me but if this is for a client then could be tricky.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found](https://wordpress.org/support/topic/php-fatal-error-class-litespeed_cache_esi-not-found/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/php-fatal-error-class-litespeed_cache_esi-not-found/#post-10826402)
 * Hi.
 * Here’s my list of errors for the past few days. As you can see it’s not just 
   ACF. It’s Yoast SEO and Wordfence.
 * I’ve not been activating or deactivating any plugins. These plugins have been
   on the site for a number of months.
 * [28-Oct-2018 00:55:42 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found
   in /home/talented1/public_html/site/wp-content/plugins/wordpress-seo/inc/class-
   wpseo-replace-vars.php on line 749
    [28-Oct-2018 00:55:43 UTC] PHP Fatal error:
   Unknown: Cannot use output buffering in output buffering display handlers in 
   Unknown on line 0 [28-Oct-2018 05:25:50 UTC] PHP Warning: Illegal offset type
   in /home/talented1/public_html/site/wp-includes/class-wp-hook.php on line 277[
   28-Oct-2018 05:25:50 UTC] PHP Warning: Invalid argument supplied for foreach()
   in /home/talented1/public_html/site/wp-includes/class-wp-hook.php on line 277[
   28-Oct-2018 10:35:49 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found
   in /home/talented1/public_html/site/wp-content/plugins/advanced-custom-fields-
   pro/includes/fields/class-acf-field-number.php on line 92 [28-Oct-2018 10:35:
   50 UTC] PHP Fatal error: Unknown: Cannot use output buffering in output buffering
   display handlers in Unknown on line 0 [28-Oct-2018 10:35:50 UTC] PHP Fatal error:
   Class ‘LiteSpeed_Cache_ESI’ not found in /home/talented1/public_html/site/wp-
   content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-radio.
   php on line 156 [28-Oct-2018 10:35:50 UTC] PHP Fatal error: Unknown: Cannot use
   output buffering in output buffering display handlers in Unknown on line 0 [28-
   Oct-2018 10:35:50 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found
   in /home/talented1/public_html/site/wp-content/plugins/advanced-custom-fields-
   pro/includes/fields/class-acf-field-post_object.php on line 38 [28-Oct-2018 10:
   35:50 UTC] PHP Fatal error: Unknown: Cannot use output buffering in output buffering
   display handlers in Unknown on line 0 [28-Oct-2018 11:53:34 UTC] PHP Fatal error:
   Uncaught OutOfBoundsException: ipRange is not a valid property for this block
   type in /home/talented1/public_html/site/wp-content/plugins/wordfence/models/
   block/wfBlock.php:1148 Stack trace: #0 /home/talented1/public_html/site/wp-content/
   plugins/wordfence/waf/wfWAFIPBlocksController.php(63): wfBlock->__get(‘ipRange’)#
   1 [internal function]: wfWAFIPBlocksController::synchronizeConfigSettings() #
   2 {main} thrown in /home/talented1/public_html/site/wp-content/plugins/wordfence/
   models/block/wfBlock.php on line 1148 [28-Oct-2018 13:01:33 UTC] PHP Fatal error:
   Class ‘LiteSpeed_Cache_ESI’ not found in /home/talented1/public_html/site/wp-
   content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-field-number.
   php on line 25 [28-Oct-2018 13:01:33 UTC] PHP Fatal error: Unknown: Cannot use
   output buffering in output buffering display handlers in Unknown on line 0 [28-
   Oct-2018 17:48:14 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found
   in /home/talented1/public_html/site/wp-content/plugins/wordpress-seo/frontend/
   class-opengraph-image.php on line 517 [28-Oct-2018 17:48:15 UTC] PHP Fatal error:
   Unknown: Cannot use output buffering in output buffering display handlers in 
   Unknown on line 0 [28-Oct-2018 18:09:29 UTC] PHP Fatal error: Uncaught OutOfBoundsException:
   ipRange is not a valid property for this block type in /home/talented1/public_html/
   site/wp-content/plugins/wordfence/models/block/wfBlock.php:1148 Stack trace: #
   0 /home/talented1/public_html/site/wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.
   php(63): wfBlock->__get(‘ipRange’) #1 [internal function]: wfWAFIPBlocksController::
   synchronizeConfigSettings() #2 {main} thrown in /home/talented1/public_html/site/
   wp-content/plugins/wordfence/models/block/wfBlock.php on line 1148 [28-Oct-2018
   23:06:01 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found in /home/
   talented1/public_html/site/wp-content/plugins/advanced-custom-fields-pro/includes/
   fields/class-acf-field-post_object.php on line 570 [28-Oct-2018 23:06:01 UTC]
   PHP Fatal error: Unknown: Cannot use output buffering in output buffering display
   handlers in Unknown on line 0 [29-Oct-2018 01:22:13 UTC] PHP Fatal error: Class‘
   LiteSpeed_Cache_ESI’ not found in /home/talented1/public_html/site/wp-content/
   plugins/advanced-custom-fields-pro/pro/fields/class-acf-field-flexible-content.
   php on line 417 [29-Oct-2018 01:22:13 UTC] PHP Fatal error: Unknown: Cannot use
   output buffering in output buffering display handlers in Unknown on line 0 [29-
   Oct-2018 02:43:49 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Admin_Rules’ not
   found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   admin/litespeed-cache-admin-rules.class.php on line 472 [29-Oct-2018 03:40:51
   UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found in /home/talented1/
   public_html/site/wp-content/plugins/wordpress-seo/frontend/class-opengraph.php
   on line 550 [29-Oct-2018 03:40:51 UTC] PHP Fatal error: Unknown: Cannot use output
   buffering in output buffering display handlers in Unknown on line 0 [29-Oct-2018
   03:47:56 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found in /home/
   talented1/public_html/site/wp-content/plugins/wordpress-seo/frontend/class-opengraph-
   image.php on line 93 [29-Oct-2018 03:47:56 UTC] PHP Fatal error: Unknown: Cannot
   use output buffering in output buffering display handlers in Unknown on line 
   0 [29-Oct-2018 07:10:41 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not
   found in /home/talented1/public_html/site/wp-content/plugins/advanced-custom-
   fields-pro/includes/fields/class-acf-field-image.php on line 134 [29-Oct-2018
   07:10:41 UTC] PHP Fatal error: Unknown: Cannot use output buffering in output
   buffering display handlers in Unknown on line 0 [29-Oct-2018 07:37:06 UTC] PHP
   Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found in /home/talented1/public_html/
   site/wp-content/plugins/advanced-custom-fields-pro/pro/fields/class-acf-field-
   flexible-content.php on line 306 [29-Oct-2018 07:37:06 UTC] PHP Fatal error: 
   Unknown: Cannot use output buffering in output buffering display handlers in 
   Unknown on line 0 [29-Oct-2018 10:47:42 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’
   not found in /home/talented1/public_html/site/wp-content/plugins/advanced-custom-
   fields-pro/includes/fields/class-acf-field-wysiwyg.php on line 330 [29-Oct-2018
   10:47:42 UTC] PHP Fatal error: Unknown: Cannot use output buffering in output
   buffering display handlers in Unknown on line 0 [29-Oct-2018 11:35:08 UTC] PHP
   Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found in /home/talented1/public_html/
   site/wp-content/plugins/advanced-custom-fields-pro/includes/fields/class-acf-
   field-image.php on line 134 [29-Oct-2018 11:35:08 UTC] PHP Fatal error: Unknown:
   Cannot use output buffering in output buffering display handlers in Unknown on
   line 0
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] PHP Fatal error: Class ‘LiteSpeed_Cache_ESI’ not found](https://wordpress.org/support/topic/php-fatal-error-class-litespeed_cache_esi-not-found/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/php-fatal-error-class-litespeed_cache_esi-not-found/#post-10818348)
 * Hi. I think this sent
 * Report number: IZCCZKQK
    -  This reply was modified 7 years, 6 months ago by [greencode](https://wordpress.org/support/users/greencode/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YASR - Yet Another Star Rating Plugin for WordPress] I’ haven’t been able to comunicate](https://wordpress.org/support/topic/i-havent-been-able-to-comunicate-with-yetanotherstarsrating-com/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/i-havent-been-able-to-comunicate-with-yetanotherstarsrating-com/#post-10802956)
 * Sure is. Thanks for the quick response.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Errors in error log](https://wordpress.org/support/topic/errors-in-error-log-4/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/errors-in-error-log-4/#post-10677728)
 * Thanks. Report number: IZCCZKQK
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Errors in error log](https://wordpress.org/support/topic/errors-in-error-log-4/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/errors-in-error-log-4/#post-10677515)
 * Sorry, what do you mean by report number?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LiteSpeed Cache] Errors in error log](https://wordpress.org/support/topic/errors-in-error-log-4/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/errors-in-error-log-4/#post-10677500)
 * Apologies, I completely forgot to reply! In answer to your questions; no nothing
   other than keeping plugins firmly up to date and I don’t think I’m using plugins
   to prevent some other plugins load in certain places – Not really sure what that
   would be TBH. Still getting a fair few errors
 * [06-Sep-2018 01:32:15 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Log’ not found
   in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/inc/media.
   class.php on line 158
    [06-Sep-2018 01:32:15 UTC] PHP Fatal error: Uncaught Error:
   Class ‘LiteSpeed_Cache_Media’ not found in /home/talented1/public_html/site/wp-
   content/plugins/litespeed-cache/inc/litespeed-cache.class.php:472 Stack trace:#
   0 [internal function]: LiteSpeed_Cache->send_headers_force(”, 9) #1 {main} thrown
   in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/inc/litespeed-
   cache.class.php on line 472 [06-Sep-2018 01:36:14 UTC] PHP Fatal error: Class‘
   LiteSpeed_Cache_Control’ not found in /home/talented1/public_html/site/wp-content/
   plugins/litespeed-cache/inc/optimize.class.php on line 1177 [06-Sep-2018 01:36:
   14 UTC] PHP Fatal error: Uncaught Error: Class ‘LiteSpeed_Cache_Optimize’ not
   found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   inc/litespeed-cache.class.php:481 Stack trace: #0 [internal function]: LiteSpeed_Cache-
   >send_headers_force(”, 11) #1 {main} thrown in /home/talented1/public_html/site/
   wp-content/plugins/litespeed-cache/inc/litespeed-cache.class.php on line 481 [
   06-Sep-2018 05:14:25 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Tag’ not found
   in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/inc/tag.
   class.php on line 208 [06-Sep-2018 07:36:05 UTC] PHP Fatal error: Uncaught OutOfBoundsException:
   ipRange is not a valid property for this block type in /home/talented1/public_html/
   site/wp-content/plugins/wordfence/models/block/wfBlock.php:1148 Stack trace: #
   0 /home/talented1/public_html/site/wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.
   php(61): wfBlock->__get(‘ipRange’) #1 [internal function]: wfWAFIPBlocksController::
   synchronizeConfigSettings() #2 {main} thrown in /home/talented1/public_html/site/
   wp-content/plugins/wordfence/models/block/wfBlock.php on line 1148 [06-Sep-2018
   15:14:42 UTC] PHP Fatal error: Uncaught Error: Class ‘OMAPI_Widget’ not found
   in /home/talented1/public_html/site/wp-includes/class-wp-widget-factory.php:100
   Stack trace: #0 /home/talented1/public_html/site/wp-includes/widgets.php(115):
   WP_Widget_Factory->register(‘OMAPI_Widget’) #1 /home/talented1/public_html/site/
   wp-content/plugins/optinmonster/optin-monster-wp-api.php(133): register_widget(‘
   OMAPI_Widget’) #2 /home/talented1/public_html/site/wp-includes/class-wp-hook.
   php(286): OMAPI->widgets(”) #3 /home/talented1/public_html/site/wp-includes/class-
   wp-hook.php(310): WP_Hook->apply_filters(NULL, Array) #4 /home/talented1/public_html/
   site/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #5 /home/talented1/
   public_html/site/wp-includes/widgets.php(1649): do_action(‘widgets_init’) #6 /
   home/talented1/public_html/site/wp-includes/class-wp-hook.php(286): wp_widgets_init(”)#
   7 /home/talented1/public_html/site/wp-includes/class-wp-hook.php(310): WP_Hook-
   >apply_filters(NULL, Array) #8 /home/talented1/public_html/site/wp-includes/plugin.
   php(4 in /home/talented1/public_html/site/wp-includes/class-wp-widget-factory.
   php on line 100 [06-Sep-2018 15:17:10 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Admin_Rules’
   not found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   admin/litespeed-cache-admin-rules.class.php on line 811 [06-Sep-2018 15:35:55
   UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Vary’ not found in /home/talented1/
   public_html/site/wp-content/plugins/litespeed-cache/inc/vary.class.php on line
   464 [06-Sep-2018 16:37:18 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Admin_Rules’
   not found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   admin/litespeed-cache-admin-rules.class.php on line 704 [06-Sep-2018 22:09:45
   UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Tag’ not found in /home/talented1/
   public_html/site/wp-content/plugins/litespeed-cache/inc/tag.class.php on line
   170 [07-Sep-2018 05:17:58 UTC] PHP Fatal error: Uncaught OutOfBoundsException:
   ipRange is not a valid property for this block type in /home/talented1/public_html/
   site/wp-content/plugins/wordfence/models/block/wfBlock.php:1148 Stack trace: #
   0 /home/talented1/public_html/site/wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.
   php(61): wfBlock->__get(‘ipRange’) #1 [internal function]: wfWAFIPBlocksController::
   synchronizeConfigSettings() #2 {main} thrown in /home/talented1/public_html/site/
   wp-content/plugins/wordfence/models/block/wfBlock.php on line 1148 [07-Sep-2018
   12:01:29 UTC] PHP Fatal error: Uncaught Error: Class ‘LiteSpeed_Cache_CDN’ not
   found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   inc/litespeed-cache.class.php:483 Stack trace: #0 [internal function]: LiteSpeed_Cache-
   >send_headers_force(”, 9) #1 /home/talented1/public_html/site/wp-includes/functions.
   php(3743): ob_end_flush() #2 /home/talented1/public_html/site/wp-includes/class-
   wp-hook.php(286): wp_ob_end_flush_all(”) #3 /home/talented1/public_html/site/
   wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(NULL, Array) #4 /home/
   talented1/public_html/site/wp-includes/plugin.php(453): WP_Hook->do_action(Array)#
   5 /home/talented1/public_html/site/wp-includes/load.php(679): do_action(‘shutdown’)#
   6 [internal function]: shutdown_action_hook() #7 {main} thrown in /home/talented1/
   public_html/site/wp-content/plugins/litespeed-cache/inc/litespeed-cache.class.
   php on line 483 [07-Sep-2018 14:13:33 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Control’
   not found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   inc/optimize.class.php on line 898 [07-Sep-2018 14:13:33 UTC] PHP Fatal error:
   Uncaught Error: Class ‘LiteSpeed_Cache_Optimize’ not found in /home/talented1/
   public_html/site/wp-content/plugins/litespeed-cache/inc/litespeed-cache.class.
   php:481 Stack trace: #0 [internal function]: LiteSpeed_Cache->send_headers_force(”,
   11) #1 {main} thrown in /home/talented1/public_html/site/wp-content/plugins/litespeed-
   cache/inc/litespeed-cache.class.php on line 481 [08-Sep-2018 00:33:12 UTC] PHP
   Fatal error: Class ‘LiteSpeed_Cache_Log’ not found in /home/talented1/public_html/
   site/wp-content/plugins/litespeed-cache/inc/media.class.php on line 619 [08-Sep-
   2018 00:33:13 UTC] PHP Fatal error: Uncaught Error: Class ‘LiteSpeed_Cache_Media’
   not found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   inc/litespeed-cache.class.php:472 Stack trace: #0 [internal function]: LiteSpeed_Cache-
   >send_headers_force(”, 9) #1 {main} thrown in /home/talented1/public_html/site/
   wp-content/plugins/litespeed-cache/inc/litespeed-cache.class.php on line 472 [
   08-Sep-2018 02:44:30 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_GUI’ not found
   in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/inc/gui.
   class.php on line 92 [08-Sep-2018 02:44:30 UTC] PHP Fatal error: Unknown: Cannot
   use output buffering in output buffering display handlers in Unknown on line 
   0 [08-Sep-2018 08:53:53 UTC] PHP Fatal error: Uncaught Error: Class ‘LiteSpeed_Cache_Control’
   not found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   inc/litespeed-cache.class.php:518 Stack trace: #0 /home/talented1/public_html/
   site/wp-includes/class-wp-hook.php(286): LiteSpeed_Cache->send_headers(”) #1 /
   home/talented1/public_html/site/wp-includes/class-wp-hook.php(310): WP_Hook->
   apply_filters(”, Array) #2 /home/talented1/public_html/site/wp-includes/plugin.
   php(453): WP_Hook->do_action(Array) #3 /home/talented1/public_html/site/wp-includes/
   load.php(679): do_action(‘shutdown’) #4 [internal function]: shutdown_action_hook()#
   5 {main} thrown in /home/talented1/public_html/site/wp-content/plugins/litespeed-
   cache/inc/litespeed-cache.class.php on line 518 [08-Sep-2018 09:30:25 UTC] PHP
   Fatal error: Class ‘LiteSpeed_Cache_Vary’ not found in /home/talented1/public_html/
   site/wp-content/plugins/litespeed-cache/inc/vary.class.php on line 200 [08-Sep-
   2018 09:48:35 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Tag’ not found in /
   home/talented1/public_html/site/wp-content/plugins/litespeed-cache/inc/cdn.class.
   php on line 128 [08-Sep-2018 09:48:35 UTC] PHP Fatal error: Uncaught Error: Class‘
   LiteSpeed_Cache_CDN’ not found in /home/talented1/public_html/site/wp-content/
   plugins/litespeed-cache/inc/litespeed-cache.class.php:483 Stack trace: #0 [internal
   function]: LiteSpeed_Cache->send_headers_force(”, 9) #1 {main} thrown in /home/
   talented1/public_html/site/wp-content/plugins/litespeed-cache/inc/litespeed-cache.
   class.php on line 483 [08-Sep-2018 14:31:48 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Tag’
   not found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   inc/cdn.class.php on line 83 [08-Sep-2018 14:31:48 UTC] PHP Fatal error: Uncaught
   Error: Class ‘LiteSpeed_Cache_CDN’ not found in /home/talented1/public_html/site/
   wp-content/plugins/litespeed-cache/inc/litespeed-cache.class.php:483 Stack trace:#
   0 [internal function]: LiteSpeed_Cache->send_headers_force(”, 9) #1 {main} thrown
   in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/inc/litespeed-
   cache.class.php on line 483 [09-Sep-2018 02:44:06 UTC] PHP Fatal error: Uncaught
   Error: Class ‘LiteSpeed_Cache_GUI’ not found in /home/talented1/public_html/site/
   wp-content/plugins/litespeed-cache/inc/litespeed-cache.class.php:479 Stack trace:#
   0 [internal function]: LiteSpeed_Cache->send_headers_force(”, 9) #1 /home/talented1/
   public_html/site/wp-includes/functions.php(3743): ob_end_flush() #2 /home/talented1/
   public_html/site/wp-includes/class-wp-hook.php(286): wp_ob_end_flush_all(”) #
   3 /home/talented1/public_html/site/wp-includes/class-wp-hook.php(310): WP_Hook-
   >apply_filters(NULL, Array) #4 /home/talented1/public_html/site/wp-includes/plugin.
   php(453): WP_Hook->do_action(Array) #5 /home/talented1/public_html/site/wp-includes/
   load.php(679): do_action(‘shutdown’) #6 [internal function]: shutdown_action_hook()#
   7 {main} thrown in /home/talented1/public_html/site/wp-content/plugins/litespeed-
   cache/inc/litespeed-cache.class.php on line 479 [09-Sep-2018 07:44:28 UTC] PHP
   Fatal error: Uncaught Error: Class ‘LiteSpeed_Cache_Vary’ not found in /home/
   talented1/public_html/site/wp-content/plugins/litespeed-cache/inc/litespeed-cache.
   class.php:520 Stack trace: #0 /home/talented1/public_html/site/wp-includes/class-
   wp-hook.php(286): LiteSpeed_Cache->send_headers(”) #1 /home/talented1/public_html/
   site/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters(”, Array) #2 /
   home/talented1/public_html/site/wp-includes/plugin.php(453): WP_Hook->do_action(
   Array) #3 /home/talented1/public_html/site/wp-includes/load.php(679): do_action(‘
   shutdown’) #4 [internal function]: shutdown_action_hook() #5 {main} thrown in/
   home/talented1/public_html/site/wp-content/plugins/litespeed-cache/inc/litespeed-
   cache.class.php on line 520 [09-Sep-2018 10:15:04 UTC] PHP Warning: call_user_func_array()
   expects parameter 1 to be a valid callback, function ‘dfads_purge_transients’
   not found or invalid function name in /home/talented1/public_html/site/wp-content/
   plugins/advanced-custom-fields-pro/includes/api/api-helpers.php on line 36 [09-
   Sep-2018 10:15:05 UTC] PHP Warning: (Registered shutdown functions) Unable to
   call shutdown_action_hook() – function does not exist in /home/talented1/public_html/
   site/wp-content/plugins/advanced-custom-fields-pro/includes/api/api-helpers.php
   on line 36 [09-Sep-2018 11:00:11 UTC] PHP Fatal error: Class ‘LiteSpeed_Cache_Vary’
   not found in /home/talented1/public_html/site/wp-content/plugins/litespeed-cache/
   inc/vary.class.php on line 548 [09-Sep-2018 22:03:10 UTC] PHP Fatal error: Class‘
   LiteSpeed_Cache_Admin_Rules’ not found in /home/talented1/public_html/site/wp-
   content/plugins/litespeed-cache/admin/litespeed-cache-admin-rules.class.php on
   line 433 [10-Sep-2018 19:35:38 UTC] PHP Warning: Illegal offset type in /home/
   talented1/public_html/site/wp-includes/class-wp-hook.php on line 277 [10-Sep-
   2018 19:35:38 UTC] PHP Warning: Invalid argument supplied for foreach() in /home/
   talented1/public_html/site/wp-includes/class-wp-hook.php on line 277 [11-Sep-
   2018 02:03:11 UTC] PHP Warning: Illegal offset type in /home/talented1/public_html/
   site/wp-includes/class-wp-hook.php on line 277 [11-Sep-2018 02:03:11 UTC] PHP
   Warning: Invalid argument supplied for foreach() in /home/talented1/public_html/
   site/wp-includes/class-wp-hook.php on line 277 [11-Sep-2018 12:39:03 UTC] PHP
   Warning: array_key_exists() expects parameter 2 to be array, null given in /home/
   talented1/public_html/site/wp-includes/cache.php on line 700 [11-Sep-2018 12:
   39:04 UTC] PHP Warning: Invalid argument supplied for foreach() in /home/talented1/
   public_html/site/wp-includes/class-wp-hook.php on line 277
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailgun for WordPress] Emails not sending – Region select dropdown](https://wordpress.org/support/topic/emails-not-sending-region-select-dropdown/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/emails-not-sending-region-select-dropdown/#post-10654306)
 * Hi. No worries at all. Yes, the region was set in the Settings page of Mailgun.
   WP 4.9.8 and Mailgun 1.5.13.1. No other email plugins are being used.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Emails not sending after update](https://wordpress.org/support/topic/emails-not-sending-after-update-2/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/emails-not-sending-after-update-2/#post-10643552)
 * It turns out the culprit was Mailgun!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wordfence Security - Firewall, Malware Scan, and Login Security] “expects parameter 2 to be array” error breaking site](https://wordpress.org/support/topic/expects-parameter-2-to-be-array-error-breaking-site/)
 *  Thread Starter [greencode](https://wordpress.org/support/users/greencode/)
 * (@greencode)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/expects-parameter-2-to-be-array-error-breaking-site/#post-10631346)
 * I decided to do a completely manual uninstall of the plugin and start again. 
   All seems to be working well, so far, with no errors in the log. I’ll update 
   this thread again in a few days.

Viewing 15 replies - 106 through 120 (of 536 total)

[←](https://wordpress.org/support/users/greencode/replies/page/7/?output_format=md)
[1](https://wordpress.org/support/users/greencode/replies/?output_format=md) [2](https://wordpress.org/support/users/greencode/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/greencode/replies/page/3/?output_format=md)…
[7](https://wordpress.org/support/users/greencode/replies/page/7/?output_format=md)
8 [9](https://wordpress.org/support/users/greencode/replies/page/9/?output_format=md)…
[34](https://wordpress.org/support/users/greencode/replies/page/34/?output_format=md)
[35](https://wordpress.org/support/users/greencode/replies/page/35/?output_format=md)
[36](https://wordpress.org/support/users/greencode/replies/page/36/?output_format=md)
[→](https://wordpress.org/support/users/greencode/replies/page/9/?output_format=md)