• jmar83

    (@jmar83)


    hi there

    i’m on a migration, and i see in the error log that your plugin makes problems:

    [09-May-2018 09:27:34 UTC] PHP Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in C:\xampp\htdocs\wp-content\plugins\w3-total-cache\Generic_Plugin.php on line 88

    [09-May-2018 09:27:34 UTC] PHP Stack trace:

    [09-May-2018 09:27:34 UTC] PHP 1. {main}() C:\xampp\htdocs\index.php:0

    [09-May-2018 09:27:34 UTC] PHP 2. require() C:\xampp\htdocs\index.php:41

    [09-May-2018 09:27:34 UTC] PHP 3. require_once() C:\xampp\htdocs\wp-blog-header.php:13

    [09-May-2018 09:27:34 UTC] PHP 4. require_once() C:\xampp\htdocs\wp-load.php:37

    [09-May-2018 09:27:34 UTC] PHP 5. require_once() C:\xampp\htdocs\wp-config.php:119

    [09-May-2018 09:27:34 UTC] PHP 6. include_once() C:\xampp\htdocs\wp-settings.php:305

    [09-May-2018 09:27:34 UTC] PHP 7. require_once() C:\xampp\htdocs\wp-content\plugins\w3-total-cache\w3-total-cache.php:67

    [09-May-2018 09:27:34 UTC] PHP 8. W3TC\Root_Loader->run() C:\xampp\htdocs\wp-content\plugins\w3-total-cache\Root_Loader.php:164

    [09-May-2018 09:27:34 UTC] PHP 9. W3TC\Generic_Plugin->run() C:\xampp\htdocs\wp-content\plugins\w3-total-cache\Root_Loader.php:98

    [09-May-2018 09:27:34 UTC] PHP 10. ob_start() C:\xampp\htdocs\wp-content\plugins\w3-total-cache\Generic_Plugin.php:88

    …but when i change define(‘WP_CACHE’, true); to define(‘WP_CACHE’, false);, i still get the same message:

    [09-May-2018 09:27:59 UTC] PHP Fatal error: ob_start(): Cannot use output buffering in output buffering display handlers in C:\xampp\htdocs\wp-content\plugins\w3-total-cache\Generic_Plugin.php on line 88

    [09-May-2018 09:27:59 UTC] PHP Stack trace:

    [09-May-2018 09:27:59 UTC] PHP 1. {main}() C:\xampp\htdocs\index.php:0

    [09-May-2018 09:27:59 UTC] PHP 2. require() C:\xampp\htdocs\index.php:41

    [09-May-2018 09:27:59 UTC] PHP 3. require_once() C:\xampp\htdocs\wp-blog-header.php:13

    [09-May-2018 09:27:59 UTC] PHP 4. require_once() C:\xampp\htdocs\wp-load.php:37

    [09-May-2018 09:27:59 UTC] PHP 5. require_once() C:\xampp\htdocs\wp-config.php:119

    [09-May-2018 09:27:59 UTC] PHP 6. include_once() C:\xampp\htdocs\wp-settings.php:305

    [09-May-2018 09:27:59 UTC] PHP 7. require_once() C:\xampp\htdocs\wp-content\plugins\w3-total-cache\w3-total-cache.php:67

    [09-May-2018 09:27:59 UTC] PHP 8. W3TC\Root_Loader->run() C:\xampp\htdocs\wp-content\plugins\w3-total-cache\Root_Loader.php:164

    [09-May-2018 09:27:59 UTC] PHP 9. W3TC\Generic_Plugin->run() C:\xampp\htdocs\wp-content\plugins\w3-total-cache\Root_Loader.php:98

    [09-May-2018 09:27:59 UTC] PHP 10. ob_start() C:\xampp\htdocs\wp-content\plugins\w3-total-cache\Generic_Plugin.php:88

    normal? why this??

    regards, jan

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jmar83

    (@jmar83)

    how can i disable it REALLY??

    Thread Starter jmar83

    (@jmar83)

    or is the problem that “wp-config.php” will be cached too, so it’s useless to change that setting?

    Fist Full of Crisco

    (@fistfullofcrisco)

    1. It doesnt cache wp-config.php

    2. WP_CACHE in wp-config.php is a requirement by wp when a 3rd party cache program wants to override WP’s default. It tells wp to look for advanced-cache.php in wp-content directory.

    3. Have you checked your php’s disable_functions list? Maybe your ISP is blocking access to ob_start() function. You can do a ini_get(‘disable_functions’); and parse through it or check your php config for the line. If ob_start() is in it then that is your problem and will need to contact your isp to allow it to be used.

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

The topic ‘define(‘WP_CACHE’, false); true / false does not make any difference..’ is closed to new replies.