• Hi there,

    sorry to bother you but I have a strange problem when debugging my WordPress. Long story short, I do not see any deprecated function and I know that I have because I am using them for testing purposes :O

    I’ve tryed any kind of debug, the inline, the logged one and also the Debug Bar plugin (cool plugin btw).

    Any of you have ever meet this problem?

    If you are wondering which functions I am using here they are: get_the_author_description(), get_postdata() and user_can_create_post(). Each time I try to debug them I don’t see any warning or notice, I checked my php.ini (on the local install) and is suppost to report any kind of error: E_ALL

    I don’t know how to fix it… Thanks for your help!

Viewing 1 replies (of 1 total)
  • First of all, I want to be sure that you have define('WP_DEBUG', TRUE ); in your wp-config.php file.

    If that isn’t the problem, I would suggest inserting the following lines at the top of your .htaccess file, typically just above # BEGIN WordPress:

    php_flag display_errors  On
    php_flag display_startup_errors On
    php_flag track_errors  On
    php_value error_reporting 2147483647
    php_flag html_errors  On
    php_flag session.bug_compat_42  On
    php_flag session.bug_compat_warn  On

Viewing 1 replies (of 1 total)

The topic ‘Deprecated Functions not showing up on Debug’ is closed to new replies.