• Notice: Undefined index: port in /home/mydir/public_html/mysite.com/wp-content/plugins/eu-cookie-law/defaults.php on line 53

    Any idea what is causing this? Thanks for the plugin.

Viewing 1 replies (of 1 total)
  • Hey,

    Got also this message cause of an uninitialized value.
    To get around, on line 53 of the defaults.php file change :
    $nPort = $asParts['port'];
    by
    $nPort = isset($asParts['port']) ? $asParts['port'] : '';

Viewing 1 replies (of 1 total)
  • The topic ‘Undefined index: port’ is closed to new replies.