• Resolved jrothhardt

    (@jrothhardt)


    Hello,
    I currently have the following error messages when logging in to my WordPress page:

    Notice: Constant CONCATENATE_SCRIPTS already defined in /var/www/vhosts/hausgeraete-tipps.com/calaunet.de/wp-content/plugins/wp-cerber/cerber-load.php on line 1635
    
    Notice: Undefined index: authonlyacl in /var/www/vhosts/hausgeraete-tipps.com/calaunet.de/wp-content/plugins/wp-cerber/cerber-load.php on line 1729
    
    Notice: Undefined index: authonly in /var/www/vhosts/hausgeraete-tipps.com/calaunet.de/wp-content/plugins/wp-cerber/cerber-load.php on line 1734

    What can I do about it? Do I have to reinstall WP-Cerber?
    Thank you very much for your help and answer,
    Best regards from Calau

    J?rg Rothhardt

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author gioni

    (@gioni)

    Hi!

    The first notice is about conflict with another security-related plugin. Disable “Protect admin scripts” on the Hardening tab.

    The last two: Go to the “Users” tab and click “Save Changes”.

    P.S. None of the Notices affects plugin functionality.

    Hello Gioni,
    I also have been seeing a lot of PHP notices regarding undefined indexes in cerber-load.php on lines 1971 and 1976. My errors logs were generating these notices multiple times per second.

    To fix it I simply replaced:
    if ( $opt['authonlyacl']
    with:
    if ( isset( $opt['authonlyacl'] )
    on line 1971.
    And:
    if ( $opt['authonly']
    with:
    if ( isset( $opt['authonly'] )
    on line 1976.

    It would be great to have this patch added to the plugin for the next release. Thanks!

    • This reply was modified 5 years, 7 months ago by imfromio. Reason: added code tags
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Undefined index: authonlyacl in wp-cerber/cerber-load.php’ is closed to new replies.