Woocommerce checkout page internal server error

烈酒焚心 提交于 2019-11-26 21:06:17

A most popular problem of 500 internal server error is some fatal errors in backend part of your website. To find, where you got problem, you should to remove this from your wp-config.php file:

define( 'WP_DEBUG', false );

And instead of it add this code:

define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );

The next step will be to go to the page of your website, where you're getting 500 internal server error. After open this file {your-website-folder}/wp-content/debug.log. Here you'll find all errors, which caused php files. There you'll find Fatal Error: {why it occured and where} .

So, after this steps you'll have to open new question about your error.

Disable all plugin and try. If problem solved active plugin one by one and see what plugin conflict. Or you can go woocommerce tools and recreate default pages

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!