Flush rewrite rules when every page gives 500 error?
You can remove the offending rewrite rule manually from the .htaccess file, in the web site’s root. Thanks, “mmm”!
You can remove the offending rewrite rule manually from the .htaccess file, in the web site’s root. Thanks, “mmm”!
For future reference you could use the define( ‘WP_DEBUG’, true ); at your wp_config to easily spot errors and turn to false when you are done. Enabling WP_DEBUG will cause all PHP errors, notices and warnings to be displayed. This is likely to modify the default behaviour of PHP which only displays fatal errors and/or … Read more
WordPress HTTP 500 Error “page isn’t working”
wp_update_user() returning http 500 internal server error
try these : go to dashboard >>updates>> reinstall wordpress if still does not work rename: plugins folder to “plugins-old” and create new empty plugin folder if still does not work try changing the theme let me know how it goes
you put a , instead of ; at end of $advert_details. you will better see this kind of error if you better indent the code. add_action(‘wp_enqueue_scripts’, ‘theme_enqueue_styles’, 12); function theme_enqueue_styles() { wp_enqueue_style(‘parent-style’, get_template_directory_uri() . ‘/style.css’); } if (!function_exists(‘adifier_custom_meta’)) { function adifier_custom_meta() { $meta_boxes = array(); $advert_details = array( array( ‘id’ => ‘advert_cond’, ‘name’ => esc_html__( … Read more
Could you please try to deactivate all other plugins, revert to a default theme like TwentySeventeeen and test once more? If this resolves the error, it should be a conflict with some theme and/or plugin(s). Simply activate them back one-by-one checking each time the installation process until you get the error again. Also, check that … Read more
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
Found the issue to be the types_render_field() function (I am using the Toolset plugin). Switched to using get_post_meta() instead and it works fine.
Enable wp debug and then visit your login, let me know what is says. https://codex.wordpress.org/WP_DEBUG