Jump to content
  • 0

Jak wyłączyć _pS_DEBUG_PROFILING ?


2BC

Question

Sytuacja wygląda następująco. Włączyłem Debug_mode bo wtyczka paypal nie chciała współpracować. Problem "usunąłem" i wyłączyłem debug_mode...tylko, że aktualnie strona wskazuje na to, że _pS_DEBUG_PROFILING_ jest uruchomiony. 

A w config/defines.inc.php jest jak byk: 

/* Debug only */
if (!defined('_PS_MODE_DEV_')) {
define('_PS_MODE_DEV_', false);
}
/* Compatibility warning */
define('_PS_DISPLAY_COMPATIBILITY_WARNING_', false);
if (_PS_MODE_DEV_ === true) {
    @ini_set('display_errors', 'on');
    @error_reporting(E_ALL | E_STRICT);
    define('_PS_DEBUG_SQL_', true);
} else {
    @ini_set('display_errors', 'off');
    define('_PS_DEBUG_SQL_', false);
}

define('_PS_DEBUG_PROFILING_', false);
define('_PS_MODE_DEMO_', false);

$currentDir = dirname(__FILE__);

Strona oczywiście wygląda tak jak w załączniku. post-989321-0-81775800-1479127647_thumb.jpg 

 

Macie jakiś pomysł jak to wyłączyć ? gdzie to wyłączyć ? 
 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...