
I am glad to hear my feed works though.

Please post there the URL of the feed - I´ll check it ... Also check again the forum_id and permissions of the user which is used as APBot poster ...PrattP wrote:I had it already set to 0, but I changed the value and resaved it. Then purged cache on forum.
No output still.
1) APBot is initiated when index.php page is opened ... So if nobody wouldn´t visit your board for two hours and then you´ll come to your board (index.php), than the bot will be initiated and will check the first feed, which has to be checked, download it, and then check 20 items if the topics are not already posted ... Next browsing index.php will download the second feed ...reddevilmeuk wrote:have another question for you, i now have it feeding from two sites into mine with a setting of default 20 posts and an increment of every hour....
1) This is on a dev site, so if i dont visit for say 2 hours, will the new rss posts be there?
2) Can I have one feed going every 15 past the hour, the other on 30 past, the other 45past, etc etc etc
3) is it possible for the posts to be changed from
{NAME} | RSS FEED NAME
Code: Select all
INSERT INTO `phpbb_config` (`config_name`, `config_value`, `is_dynamic`) VALUES
('lastrss_type', 'curl', 0),
('lastrss_ap_version', '0.1.2', 0),
('lastrss_ap_enabled', '1', 0),
('lastrss_ap_items_limit', '5', 0),
('lastrss_ap_bot_id', '2', 0);
Code: Select all
CREATE TABLE `phpbb_lastrss_autopost` (
`name` varchar(255) collate utf8_bin NOT NULL,
`url` varchar(255) collate utf8_bin NOT NULL,
`next_check` int(10) NOT NULL,
`next_check_after` int(2) NOT NULL,
`destination_id` int(3) NOT NULL,
`enabled` int(1) NOT NULL,
PRIMARY KEY (`name`)
);
INSERT INTO `phpbb_lastrss_autopost` (`name`, `url`, `next_check`, `next_check_after`, `destination_id`, `enabled`) VALUES
('lastRSS', 'http://phpbb3.smika.net/lastrss.php', 0, 1, 2, 1);
INSERT INTO `phpbb_config` (`config_name`, `config_value`, `is_dynamic`) VALUES
('lastrss_ap_version', '0.1.2', 0),
('lastrss_ap_enabled', '1', 0),
('lastrss_ap_items_limit', '5', 0),
('lastrss_ap_bot_id', '2', 0);
Code: Select all
INSERT INTO `phpbb_config` (`config_name`, `config_value`, `is_dynamic`) VALUES
('lastrss_ap_version', '0.1.2', 0),
('lastrss_ap_enabled', '1', 0),
('lastrss_ap_items_limit', '5', 0),
('lastrss_ap_bot_id', '2', 0);
Check the code and you´ll see, that the edits are on the same places - add the bot edits as second - after agregator´s edits ...Add all edits after lastRSS agregator´s edits ...