We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

what's this ???[Answered] | Forum

Topic location: Forum home » Support » General Questions
Oxwall Türkiye
Oxwall Türkiye Oct 8 '14
The Forum post is edited by ross Oct 8 '14
Michael
Michael Oct 8 '14
Profiler is enabled in your config.php

So open config.php and scroll to the bottom

Yours is set to
    define('OW_PROFILER_ENABLE', true);

and it should be set to false
Oxwall Türkiye
Oxwall Türkiye Oct 8 '14
ok tnsk 
Oxwall Türkiye
Oxwall Türkiye Oct 8 '14

define('OW_USE_CLOUDFILES', false);


if ( defined('OW_CRON') )

    define('OW_DEBUG_MODE', true);

    define('OW_DEV_MODE', false);

    define('OW_PROFILER_ENABLE', true);

else 

    /**

    * Make changes in this block if you want to enable DEV mode and DEBUG mode

    */

    

    define('OW_DEBUG_MODE', !true);

    define('OW_DEV_MODE', false);

    define('OW_PROFILER_ENABLE', true);

Michael
Michael Oct 8 '14
This is how it should be

define('OW_USE_CLOUDFILES', false);

if ( defined('OW_CRON') )
{
    define('OW_DEBUG_MODE', false);
    define('OW_DEV_MODE', false);
    define('OW_PROFILER_ENABLE', false);
}
else
{
    /**
    * Make changes in this block if you want to enable DEV mode and DEBUG mode
    */
   
    define('OW_DEBUG_MODE', false);
    define('OW_DEV_MODE', false);
    define('OW_PROFILER_ENABLE', false);
}


You have other issues than profiler being enabled, you also have a random '!' on the same line as your debug.

Replace your code with what I have added above
Oxwall Türkiye
Oxwall Türkiye Oct 8 '14
ok problem finis tnks
Michael
Michael Oct 8 '14
Welcome
ross Team
ross Oct 8 '14
Thanks Michael, I'm going to mark this post as Answered