ELBibich Posted January 12, 2012 Share Posted January 12, 2012 Bonjour, j'ai fait un module qui fonctionne correctement sur la version 1.4. Je dois également l'installer sur un prestasho pen version 1.3.0.6 et là patatra. Quand je vais dans ma page modules j'ai une belle page blanche. J'ai activé l'affiche des erreurs, ajouté de la mémoire, mais rien y fait. @ini_set('memory_limit', '64M'); @ini_set('display_errors', 'on'); define('_PS_DEBUG_SQL_', true); Le Problème c'est je n'ai aucun log ni à l'écran, ni dans aucun fichier, et ça commence à me courir... Est-que quelqu'un pourrait m'aider Merci. Julien. Link to comment Share on other sites More sharing options...
ELBibich Posted January 13, 2012 Author Share Posted January 13, 2012 Bon, je viens de trouver. En haut de mon module (comme dans beaucoup d'autres) il y a : if (!defined('_CAN_LOAD_FILES_')) exit; Ce code a été introduit à partir de la version 1.3.2 Du coup sur ma version, comme cette constante n'existait pas il y avait un jolie exit donc sans log comme il n'y avait pas d'erreurs. du coup j'ai remplacé par: if( _PS_VERSION_ > '1.3.1.1' ) { if (!defined('_CAN_LOAD_FILES_')) exit; } Link to comment Share on other sites More sharing options...
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 accountSign in
Already have an account? Sign in here.
Sign In Now