I'm getting this error from several RSS feed joomla modules. (below is an example from one of them, LightRSSFeedReader, but I'm getting the issue on the others I have tried)
Strict Standards: Non-static method DOMDocument::load() should not be called statically in /mnt/data/vhosts/casite-395567.cloudaccess.net/httpdocs/modules/mod_LightRSSFeedReader/tmpl/default.php on line 40
Notice: Trying to get property of non-object in /mnt/data/vhosts/casite-395567.cloudaccess.net/httpdocs/modules/mod_LightRSSFeedReader/tmpl/default.php on line 48
Line 40 reads: $rss = DOMDocument::load("$rss_feed_url");
There is some discussion on the web to use "->" instead of "::" but simply changing it (in an override of course), but that just creates more errors.
There is also something about getting the right code from http://php.net/manual/en/domdocument.load.php but I'm at a loss as to how that plays with the "$rss" variable.
As you can tell, I'm not a PHP coder.
Any help is widely appreciated.