And one more:
PHP Notice: Undefined variable: options in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/inc/custom_posts.php on line 1063
i think i resolve the first notice replacing:
return preg_match( "/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER['HTTP_USER_AGENT'] );
with:
return preg_match( "/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", isset($_SERVER['HTTP_USER_AGENT']) );
/wp-rss-multi-importer/inc/admin_init.php on line 69
And more:
PHP Notice: Undefined variable: cat_default_image in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/inc/options.php on line 142
PHP Notice: Undefined variable: cat_default_tags in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/inc/options.php on line 144
PHP Notice: Undefined variable: cat_default_filterwords in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/inc/options.php on line 145
PHP Notice: Undefined index: RSSdefaultImage in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/wp-rss-multi-importer.php on line 255
PHP Notice: Undefined index: todaybefore in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/wp-rss-multi-importer.php on line 260
PHP Notice: Undefined index: maxperPage in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/wp-rss-multi-importer.php on line 264
PHP Notice: Undefined index: perPage in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/wp-rss-multi-importer.php on line 274
PHP Notice: Undefined variable: feed_cat in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/inc/import_feeds.php on line 349
PHP Notice: Undefined variable: rssmi_title in /var/www/vhosts/website/httpdocs/wp-content/plugins/wp-rss-multi-importer/inc/import_feeds.php on line 350
The author’s general position on PHP notices is they aren’t anything to worry about and if you simply turn off error logging the problem will “go away”. At least that’s the gist of the responses I got when I ask about these PHP notices sometime back..
Let me be clear here.. I don’t consider PHP Notices as unimportant. I would expect that the condition which causes the notice to be generated should be ADDRESSED and RESOLVED.. The author disagreed apparently..
My point is you should run these down and fix them on your own..