Jump to content

AYUDA! Error con defines.inc.php (Solucionado)


Recommended Posts

tengo problemas con unos archivos que toqué y necesito que me ayuden indicando cual era la configuración normal, ya que se me generan logs de error inmensos!

 

defines.inc.php tengo esto actualmente (rango que he metido mano.)

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

config.inc.php rango que modifiqué

/* Debug only */
@ini_set('display_errors', 'off');
define('_PS_DEBUG_SQL_', false);

$start_time = microtime(true);

/* Compatibility warning */
define('_PS_DISPLAY_COMPATIBILITY_WARNING_', false);

por favor ayudenme indicando correctamente como debería estar siempre.

Edited by RicRey (see edit history)
Link to comment
Share on other sites

tema solucionado xD me desesperé de por gusto aca en mi pais son 12am y estoy cansado jajaja para los que quieran saber por si acaso la solución es:

 

defines.inc.php

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

y para config.inc.php

/* Debug only */
@ini_set('display_errors', 'off');
define('_PS_DEBUG_SQL_', false);

disculpen el tema tonto :( (Solucionado)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...