• When I have wordpress in debug mode, it is complaining about your plugin:

    Strict Standards: Declaration of EPS_Walker_PageDropdown::start_el() should be compatible with Walker::start_el(&$output, $object, $depth = 0, $args = Array, $current_object_id = 0) in /var/www/html/wordpress/wp-content/plugins/eps-301-redirects/class.drop-down-pages.php on line 66

    Strict Standards: Non-static method EPS_Redirects::get_redirect() should not be called statically in /var/www/html/wordpress/wp-content/plugins/eps-301-redirects/templates/template.redirect-entry-edit.php on line 18

    Notice: get_bloginfo was called with an argument that is deprecated since version 2.2! The home option is deprecated for the family of bloginfo() functions. Use the url option instead. in /var/www/html/wordpress/wp-includes/functions.php on line 3193

    https://wordpress.org/plugins/eps-301-redirects/

Viewing 5 replies - 1 through 5 (of 5 total)
  • I have the same issue on a site. It has been two months since nickterry posted above.

    Any resolution to this? We are using WordPress 4.0.

    Here is the error code:

    Strict Standards: Declaration of EPS_Walker_PageDropdown::start_el() should be compatible with Walker::start_el(&$output, $object, $depth = 0, $args = Array, $current_object_id = 0) in /home/mydomain.com/public_html/wp-content/plugins/eps-301-redirects/class.drop-down-pages.php on line 66

    Here’s a workaround until there’s an official fix.

    This assumes you’re editing via the WP editor, but obviously you could edit it directly via FTP/SSH if you have access to those methods.

    1. Edit plugin (Plugins > Editor > choose Egpplant)
    2. Edit the class.drop-down-pages.php file (located to the right of the editor)
    3. Find “function start_el” (near the bottom of the file)
    4. Replace this line:

    function start_el(&$output, $page, $depth, $args, $id = 0) {

    with this:

    function start_el(&$output, $page, $depth = 0, $args = array(), $id = 0) {

    Dave

    (@dave861)

    Thanks Benjamin – that works a treat 🙂

    eggplantstudios

    (@shawneggplantstudiosca)

    This has been fixed in 2.2.0. Thanks for the feedback everyone!

    eggplantstudios

    (@shawneggplantstudiosca)

    Closing this.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘WordPress in Debug Mode – Plugin Error’ is closed to new replies.