Plugin Author
Allen
(@amweiss98)
if you put them into categories, then you can a) use category specific default images, b) use tags specific to the category, c) filter based on words for that category.
If the feeds come in sporadically, are you sure the feeds are being updated on the providers site?
Plugin Author
Allen
(@amweiss98)
I need a feed that is not being updated…if that is the problem.
Sorry if I wasn’t clear. That feed is updating new data, but the feed is not being pulled by the plugin.
Plugin Author
Allen
(@amweiss98)
ok..I’ll put this on my production server and see if this is working for my server.
Plugin Author
Allen
(@amweiss98)
Ok..that feed is now on my site, and it’s pulled in the most recent items..you can check tomorrow to see if it doesn’t pull in anything…if it does, then the problem isn’t with the plugin..it must be with your cron scheduler
http://www.wprssimporter.com/test-page/
Thanks for testing that….would it be better using a third party like easy cron? and how would that integrate with your plugin. I have a lot of feeds categorized by pages…here’s an example: http://fansunfiltered.com/wp-cron-feeds.php?module=unfiltered. Lastly, are you for hire to resolve problems?
Plugin Author
Allen
(@amweiss98)
I’m not for hire…go to wprssimporter.com/faq and look at the faqs for scheduling and you’ll find reasons why the cron isn’t working and solutions there.
I used EasyCron as a quick test, it says the cronjob ran successfully, but when I go to view output, i see this:
<b>Notice</b>: Undefined offset: 0 in <b>/home/fansunfi/public_html/wp-cron-feeds.php</b> on line <b>19</b>
Any clue what that means? Here’s the top 20 lines of that php file:
<?php
require_once(“wp-load.php”);
include_once(“itsi.inc.php”);
ini_set(“user_agent”,”Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)”);
ini_set(“max_execution_time”, 6000);
ini_set(“memory_limit”, “10000M”);
function arrayFlatten($a) {
$i = 1;
foreach($a as $r) {
if (is_object($r)) {
$b[] = $r->term_id;
} else {
$b[$i++] = $r[0];
}
}
return $b;
}
Plugin Author
Allen
(@amweiss98)
first of all, if you are getting an error like that, it comes from the wordpress cron….i’m not sure what that error means other than an undefined offset means there is an index in an array where there is nothing.