[wp-hackers] Changed hosts for a multisite, now home page and only home page missing
Micky Hulse
mickyhulse.lists at gmail.com
Sat Sep 21 04:03:55 UTC 2013
"On Fri, Sep 20, 2013 at 8:56 PM, Abdussamad Abdurrazzaq
<abdussamad at abdussamad.com> wrote:
> If you want to display the errors on your site instead you can set WP_DEBUG
> to true in wp-config.php. But this is not a good idea from a security point
> of view.
Semi-related info:
Depending on your setup, this is a nice way of logging errors:
"Define WP_DEBUG conditionally / for admins only / log errors (append
query arg for all links?)"
<http://wordpress.stackexchange.com/a/69552/32387>
Essentially:
define('WP_DEBUG', TRUE);
define('WP_DEBUG_LOG', TRUE);
define('WP_DEBUG_DISPLAY', FALSE);
@ini_set('display_errors', 0);
>From there, ssh to server and:
$ tail -f wp-content/debug.log
More information about the wp-hackers
mailing list