Viewing 1 replies (of 1 total)
  • In the file wp-content/plugins/seo-rank-reporter/seo-rank-reporter.php line #689 needs to be changed from…

    if ($_POST['dnload-csv'] == "Download CSV") {

    to this…

    if (isset($_POST['dnload-csv']) && $_POST['dnload-csv'] == "Download CSV") {

    Another PHP notice this plugin is throwing that should be corrected is (same file)…

    Undefined index: HTTP_REFERER in /path/to/wordpress/wp-content/plugins/seo-rank-reporter/seo-rank-reporter.php on line 190

    if (stristr($_SERVER['HTTP_REFERER'], $kw_sengine_country) !== false && !is_user_logged_in()) {

    should be changed to…

    if (isset($_SERVER['HTTP_REFERER']) && stristr($_SERVER['HTTP_REFERER'], $kw_sengine_country) !== false && !is_user_logged_in()) {

Viewing 1 replies (of 1 total)
  • The topic ‘ndefined index: dnload-csv error’ is closed to new replies.