Facebook  Twitter 

SMFHacks.com

+-

SMFHacks.com

+- User Information

Welcome, Guest.
Please login or register.
 
 
 
Forgot your password?

+- Forum Stats

Members
Total Members: 4255
Latest: andreios
New This Month: 3
New This Week: 1
New Today: 0
Stats
Total Posts: 43259
Total Topics: 7518
Most Online Today: 177
Most Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Members: 0
Guests: 185
Total: 185

Author Topic: RSS Feed Mod  (Read 16836 times)

0 Members and 1 Guest are viewing this topic.

Offline Jump1979man

  • Sr. Member
  • ****
  • Posts: 274
    • View Profile
    • Midwest Motorcycles Forum
RSS Feed Mod
« on: January 12, 2007, 01:11:50 pm »
I am having the same problem with the space in the admin panel without any link for administration of this mod.....it is the same exact problem I had in this link.

http://www.smfhacks.com/index.php/topic,12.msg2434.html#msg2434

It is probably an easy fix to add some info to file like explained in the linked post but I check the files for the mod and cant find what info to add....can you help?  And maybe that isnt even the answer this time.

Thanks.
Midwest Motorcycles Forum
http://www.mwmotorcycles.com

Riverway Racing
https://www.riverwayracing.com
Motorcycle parts, gear, and accessories.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: RSS Feed Mod
« Reply #1 on: January 12, 2007, 01:42:18 pm »
Here's the xml file for it
Code: [Select]
<file name="$languagedir/Modifications.english.php">
<operation error="ignore">
<search position="after"><![CDATA[
?>]]></search>
<add><![CDATA[
// Begin RSS FeedPoster Text Strings
$txt['smfrssposter_admin'] = 'Feed Poster Configuration';

// END  RSS FeedPoster
]]></add>
</operation>
</file>

<file name="$boarddir/index.php">
<operation>
<search position="before"><![CDATA[loadPermissions();]]></search>
<add><![CDATA[
// RSS Feed Poster run fake cron job
if (!empty($modSettings['rss_fakecron']))
{
require_once($sourcedir . '/Subs-RSS.php');
UpdateRSSFeedBots();
}

]]></add>
</operation>
<operation>
<search position="before"><![CDATA['sticky' => array('LockTopic.php', 'Sticky'),]]></search>
<add><![CDATA[
'feedsadmin' => array('FeedPoster.php', 'FeedsMain'),]]></add>
</operation>
</file>
<file name="$sourcedir/Subs.php">
<operation>
<search position="before"><![CDATA['edit_settings' => '<a href="' . $scripturl . '?action=serversettings;sesc=' . $sc . '">' . $txt[222] . '</a>',]]></search>
<add><![CDATA[
'feeds_settings' => '<a href="' . $scripturl . '?action=feedsadmin;sesc=' . $sc . '">' . $txt['smfrssposter_admin'] . '</a>',
]]></add>
</operation>
</file>
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Jump1979man

  • Sr. Member
  • ****
  • Posts: 274
    • View Profile
    • Midwest Motorcycles Forum
Re: RSS Feed Mod
« Reply #2 on: January 12, 2007, 02:21:55 pm »
yeah I see it now....thanks
« Last Edit: January 12, 2007, 02:27:31 pm by Jump1979man »
Midwest Motorcycles Forum
http://www.mwmotorcycles.com

Riverway Racing
https://www.riverwayracing.com
Motorcycle parts, gear, and accessories.

Offline Jump1979man

  • Sr. Member
  • ****
  • Posts: 274
    • View Profile
    • Midwest Motorcycles Forum
Re: RSS Feed Mod
« Reply #3 on: January 12, 2007, 04:49:23 pm »
How do I know if this is working properly?  I have had it installed now for a few hours and nothing has been posted.
Midwest Motorcycles Forum
http://www.mwmotorcycles.com

Riverway Racing
https://www.riverwayracing.com
Motorcycle parts, gear, and accessories.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: RSS Feed Mod
« Reply #4 on: January 12, 2007, 08:24:45 pm »
You have to setup a cron job to cronrss.php or use fake crons
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Jump1979man

  • Sr. Member
  • ****
  • Posts: 274
    • View Profile
    • Midwest Motorcycles Forum
Re: RSS Feed Mod
« Reply #5 on: January 13, 2007, 02:40:58 pm »
You have to setup a cron job to cronrss.php or use fake crons


This is the cron job I setup and it isnt working....

GET http://www.mwmotorcycles.com/forum/cronrss.php > /dev/null

any ideas why?
Midwest Motorcycles Forum
http://www.mwmotorcycles.com

Riverway Racing
https://www.riverwayracing.com
Motorcycle parts, gear, and accessories.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: RSS Feed Mod
« Reply #6 on: January 13, 2007, 02:47:43 pm »
Is the feed enabled. And what is the feed url you are using?
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Jump1979man

  • Sr. Member
  • ****
  • Posts: 274
    • View Profile
    • Midwest Motorcycles Forum
Re: RSS Feed Mod
« Reply #7 on: January 13, 2007, 04:27:32 pm »
Is the feed enabled. And what is the feed url you are using?

yes they are enabled....here are the feeds...three of them.

http://rss.topix.net/rss/motorcycles/motorcycles.xml

http://www.motorcycleracing.it/rss.xml

http://www.sportrider.com/rss/nonstandard_rss.xml

The feeds are good as I have them in a block on my tiny portal home.
Midwest Motorcycles Forum
http://www.mwmotorcycles.com

Riverway Racing
https://www.riverwayracing.com
Motorcycle parts, gear, and accessories.

Offline Jump1979man

  • Sr. Member
  • ****
  • Posts: 274
    • View Profile
    • Midwest Motorcycles Forum
Re: RSS Feed Mod
« Reply #8 on: January 15, 2007, 04:08:57 pm »
any help?
Midwest Motorcycles Forum
http://www.mwmotorcycles.com

Riverway Racing
https://www.riverwayracing.com
Motorcycle parts, gear, and accessories.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: RSS Feed Mod
« Reply #9 on: January 15, 2007, 04:13:56 pm »
Try to redownload the mod updated it.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Jump1979man

  • Sr. Member
  • ****
  • Posts: 274
    • View Profile
    • Midwest Motorcycles Forum
Re: RSS Feed Mod
« Reply #10 on: January 15, 2007, 07:30:46 pm »
Try to redownload the mod updated it.


done....what was updated?
Midwest Motorcycles Forum
http://www.mwmotorcycles.com

Riverway Racing
https://www.riverwayracing.com
Motorcycle parts, gear, and accessories.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: RSS Feed Mod
« Reply #11 on: January 15, 2007, 07:36:39 pm »
Added some more options to download feeds.
Fixed only 1 item per feed downloading.
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Jump1979man

  • Sr. Member
  • ****
  • Posts: 274
    • View Profile
    • Midwest Motorcycles Forum
Re: RSS Feed Mod
« Reply #12 on: January 15, 2007, 07:44:04 pm »
it works now with fake cron jobs.....however it is duplicating posts...meaning posting the same thing more than once.


How can this be fixed to stop.
Midwest Motorcycles Forum
http://www.mwmotorcycles.com

Riverway Racing
https://www.riverwayracing.com
Motorcycle parts, gear, and accessories.

Offline SMFHacks

  • Administrator
  • Hero Member
  • *****
  • Posts: 16436
    • View Profile
Re: RSS Feed Mod
« Reply #13 on: January 15, 2007, 07:47:45 pm »
It should not be duplicating posts from the same feed url for a feed bot.
What feed url are you using?
Do you have more than one feed bot using the same url?
Get your Forum Ranked! at https://www.forumrankings.net - find out how your forum compares with others!

Like What I do? Support me at https://www.patreon.com/vbgamer45/

Offline Jump1979man

  • Sr. Member
  • ****
  • Posts: 274
    • View Profile
    • Midwest Motorcycles Forum
Re: RSS Feed Mod
« Reply #14 on: January 15, 2007, 07:53:01 pm »
It should not be duplicating posts from the same feed url for a feed bot.
What feed url are you using?
Do you have more than one feed bot using the same url?

I am using these feeds....

http://rss.topix.net/rss/motorcycles/motorcycles.xml

http://www.motorcycleracing.it/rss.xml

http://www.sportrider.com/rss/nonstandard_rss.xml

The same bot is posting for all three.  The feeds do not duplicate.
Midwest Motorcycles Forum
http://www.mwmotorcycles.com

Riverway Racing
https://www.riverwayracing.com
Motorcycle parts, gear, and accessories.

 

Related Topics

  Subject / Started by Replies Last post
6 Replies
6756 Views
Last post February 03, 2007, 11:57:03 am
by exit
RSS Feed

Started by marcbkk Support

1 Replies
3479 Views
Last post March 04, 2007, 09:39:02 pm
by SMFHacks
8 Replies
5018 Views
Last post September 18, 2010, 01:31:41 am
by TeeJay
48 Replies
21630 Views
Last post August 25, 2015, 12:58:40 pm
by SMFHacks
2 Replies
2984 Views
Last post April 18, 2017, 07:39:26 am
by hippieboy123

+- Recent Topics

No thumbnails on new uploads by SMFHacks
March 27, 2024, 02:10:41 pm

Display the Contact Page for guests by SMFHacks
March 27, 2024, 10:55:43 am

is it possible to add support for odysee.com by fvlog19
March 21, 2024, 08:47:51 am

Request for admin notification by davejo
March 10, 2024, 01:31:59 am

I need help with torrent upload by Ineedsmfhelp
March 09, 2024, 10:01:13 pm

an idea for new mod (( content type with different display )) by SMFHacks
February 27, 2024, 01:36:27 pm

[Mod] RSS Feed Poster by SMFHacks
February 27, 2024, 11:57:18 am

find duplicate pictures by fvlog19
February 14, 2024, 02:22:40 pm

Error uploading video. by SMFHacks
February 08, 2024, 02:04:16 pm

Gallery icon as last added image by fvlog19
February 01, 2024, 01:04:56 pm

Powered by EzPortal