• I’ve just installed this plugin on my dev instance, and I’m getting this warning in the admin:
    Strict standards: Declaration of bbPMS_List_Table::get_sortable_columns() should be compatible with WP_List_Table::get_sortable_columns() in /var/www/wp-content/plugins/bbp-manage-subscriptions/bbp-manage-subscriptions.php on line 180

    I removed the strict setting in error_reporting:
    error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT

    Now getting 22527 in phpinfo() (used to be -1). But the error is still appearing. ??

    Any suggestions?

    Thanks,
    – AAA

    • This topic was modified 8 years ago by notorioushttp. Reason: wrong version of WP
Viewing 1 replies (of 1 total)
  • Plugin Author Pascal Casier

    (@casiepa)

    Hi,
    The standard WP Table does not seem too happy with how I want to use it, so it will take some time before I can fix this.
    But if you are seeing the warnings like these ones it seems that in your wp-config.php file (normally in the root of your main folder where the website resides) you must have the DEBUG on, which is best not to have active on a production site.

    Could you try to find the line that says
    define( ‘WP_DEBUG’, true );
    and change it to
    define( ‘WP_DEBUG’, false );
    ?

    Next major version of this plugin should no longer be using the WP Table to avoid these warnings.

    Pascal.

Viewing 1 replies (of 1 total)
  • The topic ‘Strict Issue’ is closed to new replies.