I have already turn on errors and the page don’t show me error, system do what i want to do ( e.g i delete a product, i obtain blank page, a return to BO and product was deleted ) but every time show me blank page. I don’t understand where is the problem… someone had this problem before me?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hello,
What I usually do with similar CMS issues is:
Enable PHP errors so that you could get more information
Enable Debug mode for your PrestaShop
Check your Apache error logs
If this still does not help, I usually add this to my index:
// Debug - Add this on top of your index.php file
ini_set('error_reporting', E_ERROR);
register_shutdown_function("fatal_handler");
function fatal_handler() {
$error = error_get_last();
echo("");
print_r($error);
}
So let’s say that you are getting this in your /admin area, then you need to add this in your /admin/index.php file. In 99% of the cases, this would display the exact error that is causing the white page.
Regards, Bobby Source
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.