How to enable error logs and debug mode in WordPress using Azure Cloud?
Take out the @ini_set. I’m not sure what your intent is there, but you’re doing two different things. Your setting for WP_DEBUG_DISPLAY is telling it to display errors (set to true), and then you’re turning around and telling it not to (ini_set to 0). The value of WP_DEBUG_DISPLAY is used to determine whether ini_set() to … Read more