Jump to content

dati database visibili sul sito


Recommended Posts

Buongiorno a tutti,

ho appena installato prestashop 1.6, tutto pare funzionare, ma la cosa strana è che collegandosi al sito (anche da utente) al termine della pagina si vedono i dati presumibilmente del database con una serie infinita di numeri e dati diversi. 

Come si può ovviare al problema?

Vi allego una foto del fondo della pagina dove iniziano i dati di cui sopra.

 

Grazie a chiunque mi possa aiutare.

 

prestashop_errore.tiff

Link to comment
Share on other sites

controlla se in defines.inc.php nella prima parte tutto corrisponde a queste impostazioni:

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);

in questo modo il debug e la profilazione (il tuo "problema")sono disattivati, non ricevi nessun messaggio a spiegazione di eventuali errori, per ricevere eventuali messaggi di errore (utile solo in fase di sviluppo) cambia solo

if (!defined('_PS_MODE_DEV_')) {
define('_PS_MODE_DEV_', false);

in

if (!defined('_PS_MODE_DEV_')) {
define('_PS_MODE_DEV_', true);

  • Like 1
Link to comment
Share on other sites

TI ringrazio ancora,

purtroppo ho controllato ma niente, appare ancora tutto, riporto qui sotto il codice attuale. 

 

 

/* 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__);
Link to comment
Share on other sites

Prova così:

vai su Parametri avanzati > Prestazioni

e seleziona

Ricompila i file del template se sono stati aggiornati

poi

Cache: sposta su no il cursore

salva

poi

in alto a destra clicca Pulisci la cache

quindi aggiorna il browser con Ctrl+F5

se non sparisce così non saprei come altro aiutarti ... :(

Edited by ariom (see edit history)
  • Like 1
Link to comment
Share on other sites

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...