vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - CinVin vB Forum Feed Listing (https://vborg.vbsupport.ru/showthread.php?t=133365)

David_R 09-22-2008 01:14 PM

RSS feeds are not generated via templates.. Rss feeds from our domain has to be added to feedburner account, since we are using cinvin feeds for a long time.
It has become a requirement now :)

U.K.Visuals 09-28-2008 08:24 AM

Hello guys. i have the same problem like two other guys some pages ago:

Quote:

The requested URL /<!-- BEGIN TEMPLATE: cv_ffl_forum_feed_link -->http://board.mydomain.com/external.php<!-- END TEMPLATE: cv_ffl_forum_feed_link --> was not found on this server.
does anybody knows a solution for this problem? i didn't found anything in this thread yet.

KW802 09-28-2008 04:11 PM

Quote:

Originally Posted by U.K.Visuals (Post 1632102)
Hello guys. i have the same problem like two other guys some pages ago:



does anybody knows a solution for this problem? i didn't found anything in this thread yet.

I must've been a while since I don't remember that one but just edit your cv_ffl_forum_feed_link and remove the HTML comment tags.

U.K.Visuals 09-29-2008 06:02 AM

in the cv_ffl_forum_feed_link i have just this:

PHP Code:

$vboptions[bburl]/external.php<if condition="$forumid">?forumids=$forumid</if> 

i have this problem when i click one of the RSS buttons on the cv_rss_feeds.php

pnosko31 09-29-2008 09:09 AM

I tried to upload this before and just tried again - uploading this file makes my ftp program quit! odd lol

KW802 09-29-2008 02:48 PM

Quote:

Originally Posted by U.K.Visuals (Post 1632818)
in the cv_ffl_forum_feed_link i have just this:

PHP Code:

$vboptions[bburl]/external.php<if condition="$forumid">?forumids=$forumid</if> 

i have this problem when i click one of the RSS buttons on the cv_rss_feeds.php

I'll take a look when I get home tonight. In the back of my mind I remember somebody else reporting that problem ages ago but it's been so long I forget what the correction was. If you want to try something else in the interim of waiting for me to get a chance to work on it tonight, try downloading a fresh copy directly from CinVin.

Quote:

Originally Posted by pnosko31 (Post 1632892)
I tried to upload this before and just tried again - uploading this file makes my ftp program quit! odd lol

Sorry, but providing support for your FTP software is way outside of the scope.

U.K.Visuals 09-30-2008 12:42 PM

i downloaded the package again directly from CinVin and installed it... but still the same problem.

U.K.Visuals 10-06-2008 04:05 AM

did you already found a solution for my problem?

Spinball 10-13-2008 08:29 AM

Couple of things to report.
First, there is a bug, running with 3.7.2, when tuning on the vBSEO option within this mod's options causing a crash when accessing cv_rss_feeds.php:
Quote:

Fatal error: Call to undefined function get_forum_info() in /home/sites/avforums/public_html/forums/cv_rss_feeds.php on line 195
And secondly I want to display an RSS button right justified to the right of the forum title in forumdisplay. I got it working nearly correctly adding the following plugin:
forumdisplay_complete
HTML Code:

if ($vbulletin->options['cv_ffl_permissions_usergroupid']) {
        $forumperms = $foruminfo['permissions'][$vbulletin->options['cv_ffl_permissions_usergroupid']];
} else {
        $forumperms = $vbulletin->userinfo['forumpermissions'][$foruminfo['forumid']];
}

if ( (!($forumperms & $vbulletin->bf_ugp_forumpermissions['canview']) AND !$vbulletin->options['showprivateforums']) OR (!$foruminfo['displayorder']) OR !($foruminfo['options'] & $vbulletin->bf_misc_forumoptions['active']) OR ($foruminfo['link'] AND !$vbulletin->options['cv_ffl_show_linked'] AND !$forum['nametitle']) OR ($excluded_forums AND (in_array($foruminfo['forumid'],$excluded_forums))) ) {
        $forumrss = "";
} else {
        $forumrss = "<a style='float:right' rel='nofollow' href='http://www.avforums.com/forums/external.php?forumids=" . $foruminfo['forumid'] . "' title='" . $foruminfo['title'] . "'><img src='http://www.avforums.com/forums/images/cinvin_forum_feed_listing/rss.gif' border='0' alt='" . $foruminfo['title'] . "' /></a>";
}

and edited the forumdisplay template, changing
HTML Code:

<!-- / controls above thread list -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr>
        <td class="tcat" width="100%">$vbphrase[threads_in_forum]<span class="normal"> : $foruminfo[title] </span></td>

to
HTML Code:

<!-- / controls above thread list -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tr>
        <td class="tcat" width="100%">$forumrss $vbphrase[threads_in_forum]<span class="normal"> : $foruminfo[title] </span></td>

And you can see it working on www.avforums.com.
However for those forums in the exclude list in the options screen for this mod are still being included. Can anyone help refine this code, please?

BeakerUK 10-14-2008 03:33 AM

I know this is an old hack, but I'm just posting to say it's working perfectly with 3.7.0. I'll be upgrading the forum software to the latest patch soonish, but I assume it'll work fine with other 3.7.x versions.

By observation :: http://www.prestone.co.uk

Link is in the footer.

KW802 10-14-2008 01:57 PM

Spinball: What version of vBSEO are you using? Along the way vBSEO changed the name of a function which used to cause that error.

BeakerUK: It should work fine with all of the vB versions up the current vB 3.7.x series. I do not have an installation of vB 3.8 Beta installed yet so I can not verify that one at this time but I can verify that it works fine with 3.7.3 as-is.

KW802 11-04-2008 03:38 PM

I am working on making some tweaks...

What "Wish List" items does anybody have for this? :)

AyeCapn 11-10-2008 06:59 PM

I'd love some way to substitute FeedBurner or FeedProxy URL's for the ones that are auto-generated by vB.

KW802 11-10-2008 07:41 PM

Quote:

Originally Posted by AyeCapn (Post 1663068)
I'd love some way to substitute FeedBurner or FeedProxy URL's for the ones that are auto-generated by vB.

It's been a bit since I've last played with FeedBurner, and thus do not recall how the URLs are structured, but I'll check it out.

Added to the Wish List. :)

AyeCapn 11-11-2008 01:09 PM

Well, everyone who creates a feedburner feed has to manually approve the name. In my mind it would be a simple substitution. If the user adds a feedburner URL for a specific forum use that. If not, use the autogenerated one.

In my case I have one FeedBurner feed for the main external.php RSS 2.0 feed. Instead of www.myforum.com/forum/external.php I want it to use www.feedburner.com/MyFeedName

KW802 11-11-2008 01:15 PM

Quote:

Originally Posted by AyeCapn (Post 1663507)
Well, everyone who creates a feedburner feed has to manually approve the name. In my mind it would be a simple substitution. If the user adds a feedburner URL for a specific forum use that. If not, use the autogenerated one.

In my case I have one FeedBurner feed for the main external.php RSS 2.0 feed. Instead of www.myforum.com/forum/external.php I want it to use www.feedburner.com/MyFeedName

It turns out that there is an API for FeedBurner that supposedly allows you to create new feeds to your account as well. I have not played with it yet (last night was spent reading up on it) but it appears that a client can pass a user's name & password to to feedburner along with the name & URL of a new feed to burn. If that is true,then I've got a few ideas up my sleeve.

AyeCapn 11-11-2008 01:26 PM

Wow... that's hot.

The biggest draw is actually Google's FeedProxy since it allows us to insert Google Ads inside our feeds. I think the 2 are related somehow.

djwins 11-22-2008 10:13 PM

You can use feedburner to display google ads in your feeds. Google owns Feedburner.

Anticipating future updates to this mod...especially the feedburner stuff.

Doug Nelson 11-22-2008 10:35 PM

Yes, I'd like a way to include adsense ads, as well.

KW802 11-22-2008 11:34 PM

After AyeCapn suggested FeedBurner I checked it out a bit.

The problem is FeedBurner does not allow dynamic feeds so every forum (or other RSS source on your site) needs to pre-configured as a FeedBurner channel first. The FeedBurner API allows remote creation of the channels which is a good thing. But even with that there is no clean way of mapping the the vB forums to the newly created FeedBurner channels. There are two different possible mapping methods I'm exploring but most likely it won't be in the next release. The next release is shaping up to be a maintenance release with some tweaks done but not the FeedBurner stuff yet.

AyeCapn 11-23-2008 12:46 AM

I love you. Have I told you that recently?

doraj 11-29-2008 02:12 PM

Hello,

Please is it compatibile also with vBulletin 3.7.x?

Thanks :)

KW802 11-30-2008 02:02 AM

Quote:

Originally Posted by doraj (Post 1675187)
Hello,

Please is it compatibile also with vBulletin 3.7.x?

Thanks :)

Yes, this will work fine on vB 3.7.x. (I just didn't see the point of re-releasing the exact same code in two different threads).

A.Chakery 12-13-2008 12:13 PM

hi , I have problem with vbseo ersion : 3.2.0 and vb 3.7.4 , I have below error :

Fatal error: Call to undefined function get_forum_info() in /home/myroot/public_html/cv_rss_feeds.php on line 195

A.Chakery 12-14-2008 09:09 PM

Plz someone answer , Where is the support ?? :(
I will be so thankful if some one answer me

KW802 12-15-2008 12:01 AM

Quote:

Originally Posted by UIQarena (Post 1684471)
hi , I have problem with vbseo ersion : 3.2.0 and vb 3.7.4 , I have below error :


Fatal error: Call to undefined function get_forum_info() in /home/myroot/public_html/cv_rss_feeds.php on line 195

Either download a fresh copy directly from CinVin or make the following edit listed here.

Quote:

Originally Posted by UIQarena (Post 1685453)
Plz someone answer , Where is the support ?? :(
I will be so thankful if some one answer me

If you're going to complain about support, at least click the Install button before doing so.

jeremyalyea 01-05-2009 01:15 AM

Exactly what I was looking for and then some. Installed. Thank you.

ArnyVee 01-06-2009 08:04 PM

Hey Kevin, thanks for this mod! :D

I was looking for this awhile back and now had the need again and finally added it.

I did the vBSEO fix and everything seems fine there. But, I do have one question...I added all of the forums to be excluded and separated them by a comma, but they are still showing. Any particular reason why?

A.Chakery 01-25-2009 03:05 PM

hi dear KEVIN

really thnx for your reply,

Plz tell me if this gr8 mod works on vb 3.8.x

KW802 01-25-2009 11:07 PM

Quote:

Originally Posted by UIQarena (Post 1724321)
Plz tell me if this gr8 mod works on vb 3.8.x

UIQarene, yes, this should work fine on vB 3.8.0 and above. I have it running on at least two of my personal sites with vB 3.8.0 with no issues.

If you have a problem with it running on vB 3.8.0 (or any other version) just let me know :)

ArnyVee 01-26-2009 01:24 AM

Kevin,

Is my question a couple of posts up a 'bug' and we can't do anything about it? Just wondering because I'd like to fix that if it's possible.

KW802 01-26-2009 02:09 PM

Quote:

Originally Posted by ArnyVee (Post 1724786)
Kevin,

Is my question a couple of posts up a 'bug' and we can't do anything about it? Just wondering because I'd like to fix that if it's possible.

Whoops, I missed that one (blame on being a Code Monkey for the day job... we all have a bit of ADD you know ;)).

I *think* it's just a case of the download here at vB.org is out of date and I need to refresh it with the current version.

When I get home tonight (late tonight EST) I'll package the current working version and update the download here.

ArnyVee 01-26-2009 05:06 PM

Thanks Kevin! :D

Looking forward to the updated version :up:

BadgerDog 02-07-2009 10:59 AM

Can anyone help me add this RSS feed to the default page provided by this excellent mod?

Code:

<a href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=RSS_URL_HERE"><img src="http://www.newsgator.com/images/ngsub1.gif" alt="Subscribe in NewsGator Online" border="0"></a>

I'm not sure where to put this so that this option shows up along with the Yahoo and Google options.

Thanks for any feedback.... :)

BTW, running version 3.67pl1 .....

Regards,
Badger

AyeCapn 02-08-2009 03:17 AM

Quote:

Originally Posted by KW802 (Post 1670894)
After AyeCapn suggested FeedBurner I checked it out a bit.

The problem is FeedBurner does not allow dynamic feeds so every forum (or other RSS source on your site) needs to pre-configured as a FeedBurner channel first. The FeedBurner API allows remote creation of the channels which is a good thing. But even with that there is no clean way of mapping the the vB forums to the newly created FeedBurner channels. There are two different possible mapping methods I'm exploring but most likely it won't be in the next release. The next release is shaping up to be a maintenance release with some tweaks done but not the FeedBurner stuff yet.

Did this go anywhere?

KW802 02-10-2009 11:58 PM

Current version can be found here...

https://vborg.vbsupport.ru/showthread.php?t=204955

KW802 02-11-2009 12:02 AM

Quote:

Originally Posted by ArnyVee (Post 1725386)
Looking forward to the updated version :up:

I just posted the current version here. Please let me know if that takes care of the problem for you. :)

Quote:

Originally Posted by BadgerDog (Post 1736918)
Can anyone help me add this RSS feed to the default page provided by this excellent mod?

Code:

<a href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=RSS_URL_HERE"><img src="http://www.newsgator.com/images/ngsub1.gif" alt="Subscribe in NewsGator Online" border="0"></a>
I'm not sure where to put this so that this option shows up along with the Yahoo and Google options.

Would you like it to replace one of the existing options or in addition to all of the existing options?

Quote:

Originally Posted by AyeCapn (Post 1737499)
Did this go anywhere?

Sorry, but no, no updates on that topic. :(

BadgerDog 02-11-2009 12:07 AM

Quote:

Originally Posted by KW802 (Post 1740341)

Would you like it to replace one of the existing options or in addition to all of the existing options?

I'd like it in addition if possible.... :up:

Running v3.67pl1 ...

Thank you for your consideration..... :)

Regards,
Badger

A.Chakery 02-14-2009 01:02 PM

Quote:

Originally Posted by KW802 (Post 1724712)
UIQarene, yes, this should work fine on vB 3.8.0 and above. I have it running on at least two of my personal sites with vB 3.8.0 with no issues.

If you have a problem with it running on vB 3.8.0 (or any other version) just let me know :)

hi dear kevin

I have vb 3.8.1 (latest version) but I still have my problem :(

((( Fatal error: Call to undefined function get_forum_info() in /home/persianf/public_html/cv_rss_feeds.php on line 195 )))

oh I forgot to say that when I did this (as u said)

I have a blank page now:(:(:(:(:(:(.

When I installed 3.8.1 version , I had this problem too.

I really dont know what to do .

plz help me bro. (I had forgot to press mark as installed sorry about that bro :up:)

thnx in advanced.

KW802 02-14-2009 05:26 PM

UIQarena,

An updated version is available here....

https://vborg.vbsupport.ru/showthread.php?t=204955

Please upgrade to that version and then after you install that version, turn on the vBSEO option in the ACP.

ACP => vBulletin Options => CinVin Forum Feed Listing => vBSEO Installed

Please let me know in the other thread then if that takes care of the problem for you. If it doesn't, let me know that also so I can figure it out. :)

Kevin


All times are GMT. The time now is 07:23 AM.

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.01859 seconds
  • Memory Usage 1,855KB
  • 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
  • (2)bbcode_code_printable
  • (3)bbcode_html_printable
  • (2)bbcode_php_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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