Results 1 to 5 of 5
  1. #1
    New Pligger ant560's Avatar
    Joined
    Feb 2008
    Posts
    3
    Thanks
    Received:0
    Given: 0

    RSS Import Feed - Feed Frequency Not working

    I am using RSS Import Module in my Pligg Installation 9.9.0
    I have set the feed to be imported every 12 hours. But the feed is not been imported automatically until & unless I login as a god user & click the import feeds button.

    Can anyone help me setting up the feed to be imported automatically without logging in & clicking the button.

    Below are the feed configuration for reference

    Code:
    - Feed Frequency (hours): 12 -- how often to check for new items.
    
    - Feed Order: 1 -- Do we start with the last items first? 0 = no, 1 = yes
    
    - Feed Random Votes: 1 -- Do we use a random number of votes? 0 = no, 1 = yes
    
    - Feed Votes (if not random): 1 -- how many votes new items recieve (limit 200)
    
    - Feed Votes Minimum (if random): 1 -- how many votes new items recieve (limit 200)
    - Feed Votes Maximum (if random): 4 -- how many votes new items recieve (limit 200)
    
    - Feed Items Limit: 3 -- how many new items to take from the feed when it's checked
    - Feed URL Dupes: 0 -- Allow duplicate URL's 0=No, 1=Yes, Allow
    - Feed Title Dupes: 0 -- Allow duplicate Title's 0=No, 1=Yes, Allow
    - Feed Submitter Id (number): 3 -- The ID of the person who will be listed as the submitter
    - Feed Category Id (number): 2 -- The ID of the category to place these items into
    
    -- feed field name: title --- pligg field name: link_title --- Remove this link
    -- feed field name: feedburner : origlink --- pligg field name: link_url --- Remove this link
    -- feed field name: atom_content --- pligg field name: link_content --- Remove this link.
    PLEASE HELP!

  2. #2
    New Pligger nates's Avatar
    Joined
    Jan 2008
    Posts
    29
    Thanks
    Received:0
    Given: 0
    Same as above...also
    In regards to Feed Order does "last item" mean oldest or does it mean the newest item in the feed? I want the most recent item to be posted that comes through the feed to be at the top. Since that is the case do I need a 0 or a 1 in that spot?

    When I put the upcoming in feedburn the newest feed is on the bottom and the oldest is on top.

    Thanks for any suggestions.

  3. #3
    Casual Pligger Rob472's Avatar
    Joined
    Oct 2007
    Posts
    38
    Thanks
    Received:0
    Given: 0
    Quote Originally Posted by ant560 View Post
    I am using RSS Import Module in my Pligg Installation 9.9.0
    I have set the feed to be imported every 12 hours. But the feed is not been imported automatically until & unless I login as a god user & click the import feeds button.

    Can anyone help me setting up the feed to be imported automatically without logging in & clicking the button.

    Below are the feed configuration for reference

    Code:
    - Feed Frequency (hours): 12 -- how often to check for new items.
    
    - Feed Order: 1 -- Do we start with the last items first? 0 = no, 1 = yes
    
    - Feed Random Votes: 1 -- Do we use a random number of votes? 0 = no, 1 = yes
    
    - Feed Votes (if not random): 1 -- how many votes new items recieve (limit 200)
    
    - Feed Votes Minimum (if random): 1 -- how many votes new items recieve (limit 200)
    - Feed Votes Maximum (if random): 4 -- how many votes new items recieve (limit 200)
    
    - Feed Items Limit: 3 -- how many new items to take from the feed when it's checked
    - Feed URL Dupes: 0 -- Allow duplicate URL's 0=No, 1=Yes, Allow
    - Feed Title Dupes: 0 -- Allow duplicate Title's 0=No, 1=Yes, Allow
    - Feed Submitter Id (number): 3 -- The ID of the person who will be listed as the submitter
    - Feed Category Id (number): 2 -- The ID of the category to place these items into
    
    -- feed field name: title --- pligg field name: link_title --- Remove this link
    -- feed field name: feedburner : origlink --- pligg field name: link_url --- Remove this link
    -- feed field name: atom_content --- pligg field name: link_content --- Remove this link.
    PLEASE HELP!
    Did you set up a cron job to run the import script? Thats the only way it will run at specific time intervals.

  4. #4
    New Pligger nates's Avatar
    Joined
    Jan 2008
    Posts
    29
    Thanks
    Received:0
    Given: 0
    Thanks for the reply...I am missing the cron job. But when I try to added it


    /usr/bin/php -q /home/xxxx/public_html/modules/rss_import/import.php>

    I am getting an error
    /bin/sh: -c: line 0: syntax error near unexpected token `newline'
    /bin/sh: -c: line 0: `/usr/bin/php -q /home/xxxxx/public_html/modules/rss_import/import.php>'


    try without the >
    /home/xxxxx/public_html/modules/rss_import/import.php

    Error
    <b>Warning</b>: main(Smarty.class.php) [<a href='function.main'>function.main</a>]: failed to open stream: No such file or directory in <b>/public_html/modules/rss_import/import.php</b> on line <b>7</b><br />
    <br />
    <b>Warning</b>: main() [<a href='function.include'>function.include</a>]: Failed opening 'Smarty.class.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in <b>/home/xxxx/public_html/modules/rss_import/import.php</b> on line <b>7</b><br />
    <br />
    <b>Fatal error</b>: Cannot instantiate non-existent class: smarty in <b>/home/xxxx/public_html/modules/rss_import/import.php</b> on line <b>8</b><br />


    any suggestions?

    ------- V 9.9
    Update: Now working - here is what I did.

    In your cpanel
    Command to run:
    /usr/bin/GET http://www.yourdomain.com/Directory-Folder/import.php


    Now you need to your goto
    >>modules>>rss_import/ folder and copy the import.php file to your root directory

    Hope it helps


    Thanks again

  5. #5
    Senior Member bhatiacane's Avatar
    Joined
    Jul 2007
    Posts
    125
    Thanks
    Received:0
    Given: 0

    Exclamation

    Read : http://forums.pligg.com/pligg-mods/1...ble-pligg.html

    "Dollars5" Comments in my thread : There is no way a file can automatically run itself - unless you explicitly call it or call via cron job.

    If you donot want/ donot have a cron setup at your server - use a site that offers free cron job scheduling for you (a simple google search will get you many) or better switch to a host who offers cron - that is lot better


    Quote Originally Posted by ant560 View Post
    I am using RSS Import Module in my Pligg Installation 9.9.0
    I have set the feed to be imported every 12 hours. But the feed is not been imported automatically until & unless I login as a god user & click the import feeds button.

    Can anyone help me setting up the feed to be imported automatically without logging in & clicking the button.

    Below are the feed configuration for reference

    Code:
    - Feed Frequency (hours): 12 -- how often to check for new items.
    
    - Feed Order: 1 -- Do we start with the last items first? 0 = no, 1 = yes
    
    - Feed Random Votes: 1 -- Do we use a random number of votes? 0 = no, 1 = yes
    
    - Feed Votes (if not random): 1 -- how many votes new items recieve (limit 200)
    
    - Feed Votes Minimum (if random): 1 -- how many votes new items recieve (limit 200)
    - Feed Votes Maximum (if random): 4 -- how many votes new items recieve (limit 200)
    
    - Feed Items Limit: 3 -- how many new items to take from the feed when it's checked
    - Feed URL Dupes: 0 -- Allow duplicate URL's 0=No, 1=Yes, Allow
    - Feed Title Dupes: 0 -- Allow duplicate Title's 0=No, 1=Yes, Allow
    - Feed Submitter Id (number): 3 -- The ID of the person who will be listed as the submitter
    - Feed Category Id (number): 2 -- The ID of the category to place these items into
    
    -- feed field name: title --- pligg field name: link_title --- Remove this link
    -- feed field name: feedburner : origlink --- pligg field name: link_url --- Remove this link
    -- feed field name: atom_content --- pligg field name: link_content --- Remove this link.
    PLEASE HELP!

Similar Threads

  1. why I cant import this feed?
    By tripbr in forum Questions & Comments
    Replies: 3
    Last Post: 05-06-2009, 10:20 PM
  2. RSS Importer - Feed Frequency?
    By davemackey in forum Questions & Comments
    Replies: 0
    Last Post: 06-04-2008, 06:54 PM
  3. rss feed import howto do this?
    By frulk in forum Questions & Comments
    Replies: 6
    Last Post: 02-07-2008, 04:33 AM
  4. Feed Import
    By argh2xxx in forum Questions & Comments
    Replies: 5
    Last Post: 12-30-2007, 03:11 PM
  5. Feed Frequency is not working
    By fxnews in forum Questions & Comments
    Replies: 2
    Last Post: 06-20-2007, 10:30 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Pligg Modules and Pligg Templates from Pligg Pro Web Hosting Services by Midphase Dreamhost Web Hosting Donate to Pligg