Jordan C
New Member
- Messages
- 433
- Reaction score
- 0
- Points
- 0
Hi. I'm trying to install a mod on my forum that autoposts when a rss feed updates. This requires mySql databases, and I'm having a little trouble configuring it.
Heres the only config instructions the author gives: - all configuration for feeds of lastRSS autoposting bot is in database table
phpbb_lastrss_autopost ...
Columns explanation :
`name` - name of the feed - is also used in posting
`url` - URL of the feed ...
`next_check` - next check time (from PHP function time())
`next_check_after` - number of hours between checks
`destination_id` - forum_id where BOT will try to post
`enabled` INT( 1 ) - boolean - if true, this feed will be checked
In the phpbb_lastpostrss_autopost is this:
I need some help setting this up.
What i want is the feed url to be http://www.macrumors.com/macrumors.xml , the name to be MacRumors, the forum id to be 47 (I think, or http://smartmaconline.com/viewforum.php?f=47 (board disabled))
I want it to start checking whenever, and it to recheck afterthat every hour.
Can anyone help, I'm not very good with Mysql.
Heres the only config instructions the author gives: - all configuration for feeds of lastRSS autoposting bot is in database table
phpbb_lastrss_autopost ...
Columns explanation :
`name` - name of the feed - is also used in posting
`url` - URL of the feed ...
`next_check` - next check time (from PHP function time())
`next_check_after` - number of hours between checks
`destination_id` - forum_id where BOT will try to post
`enabled` INT( 1 ) - boolean - if true, this feed will be checked
In the phpbb_lastpostrss_autopost is this:
Code:
SELECT * FROM `phpbb_lastrss_autopost` WHERE 1`name``url``next_check``next_check_after``destination_id``enabled`
I need some help setting this up.
What i want is the feed url to be http://www.macrumors.com/macrumors.xml , the name to be MacRumors, the forum id to be 47 (I think, or http://smartmaconline.com/viewforum.php?f=47 (board disabled))
I want it to start checking whenever, and it to recheck afterthat every hour.
Can anyone help, I'm not very good with Mysql.