levviking Posted February 11, 2014 Share Posted February 11, 2014 I have prestashop 1.5.6.2. After i have some errors with the modules, i turned ON the debug in config/defines.inc.php I left with the "!!!!" errors on the head of my pages. Later i turned OFF debug mode, but i have some payment module, whit error, and when i ask for suport from payment developers, he say i have debug ON. Where to set the debug OFF? Link to comment Share on other sites More sharing options...
El Patron Posted February 11, 2014 Share Posted February 11, 2014 config/defines.inc.php /* Debug only */ define('_PS_MODE_DEV_', false); Link to comment Share on other sites More sharing options...
levviking Posted February 11, 2014 Author Share Posted February 11, 2014 thank you @El Patron I have this settings: */ /* 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); } define('_PS_DEBUG_PROFILING_', false); define('_PS_MODE_DEMO_', false); $currentDir = dirname(__FILE__); if (!defined('PHP_VERSION_ID')) { $version = explode('.', PHP_VERSION); define('PHP_VERSION_ID', ($version[0] * 10000 + $version[1] * 100 + $version[2])); It's something else, and i can't figure out. I need to delete the .htacces file and regenerate it? Link to comment Share on other sites More sharing options...
El Patron Posted February 11, 2014 Share Posted February 11, 2014 I would suspect it has something to do with you php.ini settings... you can look at these values at runtime using this free module http://www.prestashop.com/forums/topic/278164-free-module-display-php-environment-phpinfo-back-office/ http://screencast.com/t/u0KCSJewFq Link to comment Share on other sites More sharing options...
levviking Posted February 11, 2014 Author Share Posted February 11, 2014 Thank you very much for this module. But i don't understand what i search. I'm dumb in this developers ini.php settings. Link to comment Share on other sites More sharing options...
El Patron Posted February 11, 2014 Share Posted February 11, 2014 search under inf_configuration for 'error'... Link to comment Share on other sites More sharing options...
levviking Posted February 11, 2014 Author Share Posted February 11, 2014 I have only local value, i see on topic about your module is two column of settings, local and master value. I attach an image with the settings. http://postimg.org/image/nv5af5nq3/ Link to comment Share on other sites More sharing options...
El Patron Posted February 11, 2014 Share Posted February 11, 2014 I have only local value, i see on topic about your module is two column of settings, local and master value. I attach an image with the settings. http://postimg.org/image/nv5af5nq3/ Never seen where the master value has not displayed..so many hosting types.....the mystery continues Link to comment Share on other sites More sharing options...
El Patron Posted February 11, 2014 Share Posted February 11, 2014 Thank you very much for this module. But i don't understand what i search. I'm dumb in this developers ini.php settings. between the wall...claiming dumb won't get you extra help. If you are going to be a serious shop business then you are going to need to learn different things...jack of all trades, master of none. Link to comment Share on other sites More sharing options...
levviking Posted February 11, 2014 Author Share Posted February 11, 2014 ok, thank you. 1 Link to comment Share on other sites More sharing options...
nowotny Posted March 12, 2014 Share Posted March 12, 2014 Never seen where the master value has not displayed..so many hosting types.....the mystery continues It's because the 'display_functions' value is one long string without any line breaks so it stretches the table beyond the screen... you can even see the horizontal scrollbar on the screenshot... 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