While I have not gone through and thoroughly analyzed your code, I did check the feed url http://www.volumestat.com/feed/ and if you view source on it (in Firefox, IE won't even open the feed) you will see at the end of it:
Code:
<b>Fatal error</b>: Call to undefined function get_the_post_thumbnail() in <b>/home/dvason/public_html/wp-content/plugins/mrss-with-thumbnail.php</b> on line <b>53</b><br />
So the lack of correctly formed xml in the feed is likely a major problem...
Last edited by astupidname; 07-25-2010 at 12:26 PM.
Reason: browser clarification
While I have not gone through and thoroughly analyzed your code, I did check the feed url http://www.volumestat.com/feed/ and if you view source on it (in Firefox, IE won't even open the feed) you will see at the end of it:
Code:
<b>Fatal error</b>: Call to undefined function get_the_post_thumbnail() in <b>/home/dvason/public_html/wp-content/plugins/mrss-with-thumbnail.php</b> on line <b>53</b><br />
So the lack of correctly formed xml in the feed is likely a major problem...
Okay...thanks for that. I found what was causing that and I deleted that file. Now, I'm just getting one error:
Code:
Cannot access empty property in /home/content/s/o/c/socialowner/html/load_volume.php on line 51
Apparently may be an error in the actual code above...in this area
PHP Code:
foreach ($item -> enclosure as $img_tag){
$all_attributes = $img_tag -> attributes();
foreach ($all_attributes as $a => $b){
if ($a == "url") { $img_count=0;
if ((preg_match("/\.jpg/i", $b)) && ($img_count < 1)) {
$image_location=$b; $img_count++; }
} } }
..can you see something that I'm not calling right here?
While I have not gone through and thoroughly analyzed your code, I did check the feed url http://www.volumestat.com/feed/ and if you view source on it (in Firefox, IE won't even open the feed) you will see at the end of it:
Code:
<b>Fatal error</b>: Call to undefined function get_the_post_thumbnail() in <b>/home/dvason/public_html/wp-content/plugins/mrss-with-thumbnail.php</b> on line <b>53</b><br />
So the lack of correctly formed xml in the feed is likely a major problem...
Okay...thanks for that. I found what was causing that and I deleted that file. Now, I'm just getting one error:
Code:
Cannot access empty property in /home/content/s/o/c/socialowner/html/load_volume.php on line 51
Apparently may be an error in the actual code above...in this area
PHP Code:
foreach ($item -> enclosure as $img_tag){
$all_attributes = $img_tag -> attributes();
foreach ($all_attributes as $a => $b){ //line 51
if ($a == "url") { $img_count=0;
if ((preg_match("/\.jpg/i", $b)) && ($img_count < 1)) {
$image_location=$b; $img_count++; }
} } }
..can you see something that I'm not calling right here?
Bookmarks