Thomas Griffin Feed Not Found
-
I’m not even sure why Soliloquy is attempting to load this feed from the plugin authors website. Thomas, why is attemping to load a feed from your website? Kind of seems strange to me that this URL is hard coded into this plugin. I will be commenting out line 86 in includes/utils.php in an attempt to resolve the following error. Line 86 is the lines that has: $feed->set_feed_url( $urls );
Thomas, can you please update the code to remove this portion of code that seems unnecessary?
-
Here is the PHP error being generated from Soliloquy:
PHP Notice: A feed could not be found at https://thomasgriffin.io/feed/planet/. A feed with an invalid mime type may fall victim to this error, or SimplePie was unable to auto-discover it.. Use force_feed() if you are certain this URL is a real feed.
-
Here is a portion of the PHP code from includes/utils.php:
// Return early if not on the right feed.
if ( strpos( $url, ‘planet.www.ads-software.com’ ) === false ) {
return;
}// Only move forward if this action hasn’t been done already.
if ( ! $GLOBALS[‘tgm_utils’] ) {
$GLOBALS[‘tgm_utils’] = true;
$urls = array( ‘https://thomasgriffin.io/feed/planet/’, $url );
$feed->set_feed_url( $urls );
}
- The topic ‘Thomas Griffin Feed Not Found’ is closed to new replies.