vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   [v1.6] Inferno RSS Forum Feeds Technology (https://vborg.vbsupport.ru/showthread.php?t=94510)

ixian 10-07-2005 05:29 PM

I've yet to see a dupe now. Ha! Two bugs fixed in one!

(knocks on wood)

Gizmo5h1t3 10-07-2005 06:45 PM

Quote:

Originally Posted by ixian
I've yet to see a dupe now. Ha! Two bugs fixed in one!

(knocks on wood)

yep, just been back on me site..deleted all the posts i grabbed from the feeds arlier, and tried forcing a feed update with a cron job done manually....updated with zero posts....

seems the dupe problem has been sorted out....

hope everyone else can use this info to try it on their boards... :ninja:

ManagerJosh 10-07-2005 07:11 PM

Quote:

Originally Posted by ixian
I've yet to see a dupe now. Ha! Two bugs fixed in one!

(knocks on wood)

still seeing duplicates.

SkyShadow 10-08-2005 09:21 AM

My problem is unsolved.
Please help

https://vborg.vbsupport.ru/showpost....&postcount=278

garrynewman 10-08-2005 10:46 AM

I think I figured out why I was getting duplicates. Kinda.

The order was set the wrong way. On the first import I had to have it on back to front to order the posts right, but then front to back to update it so it doesn't repeat.

garrynewman 10-08-2005 01:56 PM

I've got a question related to this.

Is it possible to have the posts not get 'bumped' to the top of the list when a user replies. Have the always ordered by the date of the first post?

Is that possible?

ManagerJosh 10-08-2005 09:44 PM

Quote:

Originally Posted by garrynewman
I've got a question related to this.

Is it possible to have the posts not get 'bumped' to the top of the list when a user replies. Have the always ordered by the date of the first post?

Is that possible?

BTW, ZT came up with this kewl mod for me for the HTML usergroup cause HTML still appears. Note: You need this Plugin Installed for it to work

./includes/class_ffrss.php

FIND:
PHP Code:

$ThreadDM->registry->options['floodchecktime'] = 0// Disable flood check in memory... 

BELOW IT ADD:
PHP Code:

$vbulletin->overide_html 1


IN: bbcode_parse_start (Plugin Manager) for plugin "Allow Usergroups to post HTML"

FIND:
PHP Code:

if ($permissions['allowhtmlpermissions'] & $vbulletin->bf_ugp_allowhtmlpermissions['canposthtml']) 

REPLACE IT WITH

PHP Code:

if (($permissions['allowhtmlpermissions'] & $vbulletin->bf_ugp_allowhtmlpermissions['canposthtml']) || $vbulletin->overide_html

Now it should render feeds properly.


Note, this doesn't work if you installed this fix... for some reason those lines of codes make the mod above break.

garrynewman 10-08-2005 10:02 PM

Did you mean to quote me?

ixian 10-09-2005 01:05 AM

Quote:

Originally Posted by ManagerJosh
Note, this doesn't work if you installed this fix... for some reason those lines of codes make the mod above break.

That's because you are making the exact same mistake my fix corrects with the other line of code; you are passing a variable as part of a string. That code won't work with newer versions of PHP 5 period whether my fix is used or not.

ManagerJosh 10-09-2005 01:21 AM

Quote:

Originally Posted by ixian
That's because you are making the exact same mistake my fix corrects with the other line of code; you are passing a variable as part of a string. That code won't work with newer versions of PHP 5 period whether my fix is used or not.

Hey I didn't write the code.... ZT did :)

Az_Rael 10-09-2005 03:55 PM

Testing now...so far this works great!!!

Thanx ZT! You da MAN

dreck 10-10-2005 10:06 PM

NIce...!

Installed on 3.5 no problems.
Created a new user & moderate posts in new forum. Allowed html code in the forum.
I used google Top News:

http://news.google.com/news?ned=us&topic=h&output=rss
Parent RSS Tag Name: channel
Items RSS Tag Name: item
Thread Title RSS Tag Name Choose one of the following: title

NOw all I have to do is find the post where I saw something about keeping the news feed out of new posts search? :)

Hope someone will find away around the dupe soon. :ermm:

Thanks, dreck

*install*

tommykilla 10-10-2005 10:10 PM

I still keep getting duplicates.

c0d3x 10-11-2005 05:41 AM

me too!!

GrendelKhan{TSU 10-11-2005 03:04 PM

omg.. I so freaking happy.

I fiiiiinaaaaaallllllllyy got it to work!!! :D

it was all about the cURL. I even had to switch hosts (UGH!) to get a host that would allow me to enable cURL. ;) :D

anyway.... haven't seen duplicates yet. but that is preferred to nothing at all for me. ;)

[high]* GrendelKhan{TSU finally clicks INSTALL!!
[/high]

btw...3.5.0 Gold

weaver 10-11-2005 03:14 PM

The moderator tip didn't work for me. I had to set post flood to 0 in order to stop the duplicates. Maybe there is a setting somewhere that I'm missing but the new moderator account I created for the feeds was still limited by the post flood protection.

Sanjiyan 10-11-2005 08:30 PM

I have installed this hack, and I have it importing the html just fine, but I have a problem.

the RSS feed when it wants to start a new line does, something like following:

Code:

same test.<br><br>new line
The forum post it makes, ends up doing this:

same test.


new line

As you can see it does two line breaks. Any idea if I can get it to ignore the BR tag if it sees two of them?

You can see an example here: http://www.friendship7.co.uk/forum/s...ead.php?t=2389

Any ideas why it messes up when it comes to the <br><br> tags?

Or how do I get it to remove all the html tags from the rss feed?

artonex 10-11-2005 10:58 PM

Hey all im running vB3.5 Gold and ive added a feed.

I press the update button and i get this error.

Fatal error: Unable to proceed with save while $errors array is not empty in class vb_datamanager_thread_firstpost in /includes/class_dm.php on line 758

Does anyone know how to fix?

BLazeD1 10-12-2005 12:35 AM

Like the others, it is creating a lot of duplicate threads

Sanjiyan 10-12-2005 07:03 AM

Quote:

Originally Posted by artonex
Hey all im running vB3.5 Gold and ive added a feed.

I press the update button and i get this error.

Fatal error: Unable to proceed with save while $errors array is not empty in class vb_datamanager_thread_firstpost in /includes/class_dm.php on line 758

Does anyone know how to fix?

I downloaded the lastest version and upgraded the hack, nd it fixed that errror for me.

NiROE 10-12-2005 07:50 AM

Amazing... I was putting off upgrading to vB3.5 because I wasnt sure if I could get a good replacement for articlebot, but this easily fits my needs.. Thank you :D

GrendelKhan{TSU 10-12-2005 08:03 AM

wow. I actually just went through this entire thread :O

so, here's the quick OVERVIEW of what's up with this (doesn't cover everything, but most of the common problems/questions-- UP TO NOW):

feel free to correct me or update if I got something wrong...


==================================================
HACK SUPPORT/BUGS OVERVIEW:
  • This hack DOES work for MOST people in 3.5 Gold. If it doesn't for you....read on....

  • Just assume this hack is NOT supported!!!! And won't be for sometime.

    ZT is busy on other things. It may get updated sometime again (after ZT is done with the RPG game he is making for vb) and everyone will be stoked. But if you can't deal with that...then don't install and don't complain.
    (or go to his forums and see if you can reach him there). ;)


    ERROR:
  • The feed is correct but you keep getting this error message: "INVALID URL TO RSS FEED GIVEN"

    ---solution:
    cURL or open_URL needs to be ENABLED in your server.ini file. THIS HAS TO BE DONE BY YOUR HOST PROVIDER. I had to actually move hosts to get it. :/

  • ERROR
    Quote:

    Fatal error: Unable to proceed with save while $errors array is not empty in class vb_datamanager_thread_firstpost in /includes/class_dm.php on line 758
    Download latest version (we THINK is the latest.) This MIGHT fix it. (it worked for him)

    If still doesn't work.......
    then past solutions:

    ----solution:
    Flood Protection or Create Moderator
    more detailed info

    but that only works for some people. :(

    THIS solution (https://vborg.vbsupport.ru/showpost....&postcount=319 ) seems to work as well, and/or explain why it WON'T for some. But I'm a n00b too, so that is greek to me.


  • What version is this? it still reads as 1.5 but the download says 1.6
    ----see directly below

  • ERROR
    Duplicates!!....... Duplicates!!! =P

    ---Solution:
    well ZT made a brief announcement saying everthing was fixed HERE ...but looks to have forgot to actually update the ZIP download (1.5 to 1.6) before disappearing again. lol. It MAY be 1.6...but lists as 1.5 in the admincp.

    anyway... MOST PEOPLE STILL HAVE THIS ERROR. Some don't. Maybe 1.6 will get uploaded, maybe not....but see first item in this list if you got a problem with that. Until then.......

    YOU HAVE TO JUST DEAL WITH IT OR FIX IT YOURSELF!!!

  • Parse URLS? (whatever that means... :p)
    Do this: https://vborg.vbsupport.ru/showpost....&postcount=137

    Ane at the bottom of that post...you will find the answer to:

  • Problem
    Set up so RSS feeds do NOT appear in NEW POSTS
    Again:
    Quote:

    One other thing someone was asking how not to exclude these posts in new posts or todays posts - do this.. if you have rss feeds in 16 15 and 23

    just add &exclude=6,15,23 to the end of the do=getnew url and it'll exlude the forums with the forumids 6, 15 and 23.
    (that is, modify the navbar template.^^)

    OR you can use this: Opt-Out Forums from Get New/Get Daily

  • Problem
    You do NOT want to enable HTML in the rss forum!!

    Then do this: new user in new usergroup with html enabled
    Using this: Allow Users Groups to post HTML

  • PROBLEM
    "it doesn't seem to understand rdf, rdf:RDF or rdf: as the parent tag."

    then this is a temp solution:
    https://vborg.vbsupport.ru/showpost....&postcount=306

  • PROBLEM
    Chokes on enclosure tags since there is no end tag.

    An enclosure tag looks like this -
    Quote:

    Code:
    <pubDate>Tue, 04 Oct 2005 21:29:27 -0500</pubDate>
    <enclosure url="http://libsyn.com/media/wizardsnetwork/UW_20051004.mp3" length="4700889" type="audio/mpeg" />
    <media:content url="http://libsyn.com/media/wizardsnetwork/UW_20051004.mp3" fileSize="4700889" type="audio/mpeg">
    <media:adult>false</media:adult>
    </media:content>
    ---solution: none. Needs to updated to deal with this

  • QUESTION:
    how do I get this to post the whole article on 3.5 Gold? I just want it to post the whole article instead of the description with a link.


    ---answer: You can't. You are at the mercy of the RSS feed itself. Its nothing to do with the hack, but dependent on the what the xml feed spits out itself.


there are some other issues....but those are the one's I saw with solutions or clear answers (good or bad).

please let me know if I messed any of that up and I'll update this post. ;)


Hope that helps. I wrote mostly for myself as well....shhesssssh!! this thread. +_+;;.... lol

Sanjiyan 10-12-2005 09:40 AM

Quote:

Originally Posted by garrynewman
I made kind of a hacky bounce script to solve the rdf:RDF problem.

It's probably better that the plugin is fixed but this will tide us over until then..

Make a php file with this in it..

Code:

<?

        $h = fopen( "http://steampowered.com/rss.xml", "r" );

        while (!feof($h))
        {
                $rss .= fgets($h, 4096);
        }
       
        $rss = str_replace( "</channel>", "", $rss );
        $rss = str_replace( "</rdf:RDF>", "</channel>\n</rdf:RDF>", $rss );
        $rss = str_replace( "content:encoded", "content", $rss );
               
        echo $rss;

?>

Now use the address of that script as your RSS feed (the auto detect thing should be able to figure it out)


I'm using this, it works great.

NxTek 10-12-2005 05:53 PM

Quote:

Originally Posted by NxTek
How does Inferno handle Podcasts (enclosure tags) and also images?

Is anyone getting any feeds with images? I'm interested to see how Inferno handles them.

Also, Inferno chokes on enclosure tags since there is no end tag. You might add that to your list GrendelKhan.

An enclosure tag looks like this -
Code:

<pubDate>Tue, 04 Oct 2005 21:29:27 -0500</pubDate>
<enclosure url="http://libsyn.com/media/wizardsnetwork/UW_20051004.mp3" length="4700889" type="audio/mpeg" />
<media:content url="http://libsyn.com/media/wizardsnetwork/UW_20051004.mp3" fileSize="4700889" type="audio/mpeg">
<media:adult>false</media:adult>
</media:content>

I really hope this mod is supported and doesn't turn into an "Article Bot".

xtreme-mobile 10-12-2005 06:48 PM

how can i get the rss feed to display in full on my forum? at the moment it only shows a line or 2 of text then offers a link, is there a way of being able to get the full report rather than lose the members from my forum?

cheers

Celtic_Mad 10-12-2005 08:01 PM

I have got http://sport.scotsman.com/topics.cfm?tid=829&format=rss as my RSS Feed link, but everytime it updates, it adds the same news over and over again in the forum instead of just adding the newest ones without adding the whole lot of them again.

msu2k 10-12-2005 08:34 PM

I would love to add this to my site but I request that all of my users add a special Post Icon whenever they post a link to a news story. Is there any way to alter this so that all the new posts that this makes get a certain Post Icon? Thanks for the help, great hack otherwise.

b6gm6n 10-13-2005 02:11 AM

{XML[title]}

should work right? well it saves ok, but wipes my RSS settings after i save, might not like the extra tags, works for [B] etc

-b6

GrendelKhan{TSU 10-13-2005 03:54 AM

Quote:

Originally Posted by NxTek
Is anyone getting any feeds with images? I'm interested to see how Inferno handles them.

Also, Inferno chokes on enclosure tags since there is no end tag. You might add that to your list GrendelKhan.

done. refresh :)

or click RSS SUPPORT/BUGS OVERVIEW POST
:)

@extreme-mobile: I don't think so. As I understand it (could be wrong), its nothing to do with the hack, but dependent on the what the xml feed spits out itself.

xtreme-mobile 10-13-2005 05:52 AM

Quote:

Originally Posted by GrendelKhan{TSU
done. refresh :)

or click RSS SUPPORT/BUGS OVERVIEW POST
:)

@extreme-mobile: I don't think so. As I understand it (could be wrong), its nothing to do with the hack, but dependent on the what the xml feed spits out itself.

ok thanks mate

b6gm6n 10-13-2005 11:57 AM

Quote:

Originally Posted by Celtic_Mad
I have got http://sport.scotsman.com/topics.cfm?tid=829&format=rss as my RSS Feed link, but everytime it updates, it adds the same news over and over again in the forum instead of just adding the newest ones without adding the whole lot of them again.

yeah same ere! - the feed is good, just adds the same amount over & over again, stops at a certain point in time and i dunno why...hmmm

EDIT - looks like version 1.5 is still online, instead of the bug fixed 1.6, might fix this duplicate problem

-b6

Deimos 10-13-2005 11:18 PM

I just installed this AOK, butttttttt

When it first ran, it added some 29 new threads, no problem
But, no matter how many times i click "mark as read", they still show up on the new post count?

b6gm6n 10-14-2005 02:12 AM

Quote:

Originally Posted by Deimos
I just installed this AOK, butttttttt

When it first ran, it added some 29 new threads, no problem
But, no matter how many times i click "mark as read", they still show up on the new post count?

try editing your "new posts" link in your navbar template

Add the &exclude=27 (change 27 to the forum id where your feeds are posted)

Code:

http://www.mysite.com/forum/search.php?do=getnew&exclude=27
-b6

blue6995 10-15-2005 02:49 PM

I am a complete novice at this so please bear with me. I appear to have installed it properly but how do I get it to show in a Forum? I have set up the name of the Forum through the ACP>RSS Forum Feeds

Thank you

adb22791 10-15-2005 03:32 PM

Hello,
I have this hack on my forums, and its great! Much better than article bot. I would like to add a Slashdot feed, but can't seem to be able to add it. Has anybody else successfully added one? Whenever I try I get a bunch of errors :(.

popowich 10-15-2005 04:36 PM

Hello,

Should I be able to get this feed to work?

http://www.billrini.com/xmlfeeds/cp_news.xml

This is the first one I have seen with the RDF in it, seems to be giving me some troubles.

I am trying to use:

channel / items / title

{XML[title]}
{XML[description]}
{XML[link]}Read more... (surrounded by the URL tags)

It gives me the error:

The system could not find the thread "title" tag you specified (title)

-Raymond

cynix2 10-15-2005 08:17 PM

@abd22791 and popowich

I myself tried to add slashdot and Was unsuccessful at getting it to detect an rdf feed.

@b6

I was trying to incorperate html into my definations area so that it would hot link and what not. Seams html is not allowed because it just dumps everything. Try sticking with bb code.

subnet_rx 10-16-2005 01:34 AM

One question, is the version number in product manager still supposed to read 1.5?

hexonxonx 10-16-2005 04:36 PM

I have read all the way through page 16 and gave up.

Does anyone know how to get this to post the whole article on 3.5 Gold? I have this working perfectly, I just want it to post the whole article instead of the description with a link.

Thanks

popowich 10-16-2005 05:21 PM

I believe you are at the mercy of the source of the feed.

You get the teaser, than click the link to go to their site.

Otherwise, why would you visit their site?

-Raymond


All times are GMT. The time now is 04:32 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02248 seconds
  • Memory Usage 1,864KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (4)bbcode_php_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete