Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Please delete this modification. Rebuilding Modification Details »»
Please delete this modification. Rebuilding Modification
Version: 1.08, by daveaite daveaite is offline
Developer Last Online: Oct 2015 Show Printable Version Email this Page

Category: Major Additions - Version: 4.1.2 Rating:
Released: 12-24-2010 Last Update: 03-26-2011 Installs: 34
Uses Plugins
Additional Files  
No support by the author.


A Dynamically Driven Forum Slider for your vBulletin4.X Forum or Suite. Sites like Yahoo, MSN, AOL, MTV, all use Dynamic Sliders as their Main Focus of the Home Page.

Features:
  • Automatically Pulls Content from your Forums! Images and Text
  • Display Text from Forum Threads
  • Display Images from Forum Threads
  • Automatically cut off long titles
  • Automatically cut off long descriptions
  • Easy Customization in Admincp Options
  • No work after installation
  • New Content Automatically displayed
  • Special Permissions of who can post
  • 5 Minute Installation
  • Custom default image if no images are present in thread.
  • Works with External Sites
  • Powerd By Jquery
  • Deep Links to new content in Your Forum
  • Unique Custom Coded Slider


See a Complete list of all features of the Lite version.

SEO Features
  • Drives traffic from your front page to deep threads in your forum
  • Adds fresh content hourly or daily to your Home Page
  • Parses title and content to your front page.
  • Not a FLASH Based Slider.

Other features:
Frequently Asked Questions

Demos:
A live version can be seen on MMORPG Games. Installation Instructions included inside.



Q: It's not working. Error?
A: Make sure RSS Syndication is Turned on, on your forum.
Go to Settings > Options > External Data Provider > Enable RSS Syndication

Q: It's not parsing any data?
A: Try switching the rss feed as a test

Demo

Scroll down to first post for more images.


Update log: 3/27/2011
v.1.08
-Fixed Copyright issues
-Fixed overlapping with navbar and forumslider if navbar used pulldowns in css3 or javascript
-Fixed core components to improve performance
-Fixed Aesthetics - Looks cleaner.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #62  
Old 02-21-2011, 01:43 AM
daveaite's Avatar
daveaite daveaite is offline
 
Join Date: Jul 2009
Location: Florida
Posts: 1,890
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey all, just giving a nice update. We've been using this on our main site: http://buypoe.com, and a bunch of others have been using it with no problems.

Errors tend to occur when you put the wrong rss feed, or an unsupported rss feed into the vboptions for forumslider.

So try multiple types of rss feeds. The one I use is:

http://buypoe.com/external.php?do=rs...s=120&count=10

so replace buypoe.com with your url.

phpbb and smf versions - we want to release, were still determining if theres enough of a demand for them.


Another common error we see with people is there images aren't being placed into the slider. You cannot used attached images, they must be bbcoded because this mod uses data from your rss feed, so whatever shows there, will be displayed.

It currently does/does not support other languages. We have not tested this.

-David
Reply With Quote
  #63  
Old 02-21-2011, 02:40 AM
Alfa1's Avatar
Alfa1 Alfa1 is offline
 
Join Date: Dec 2005
Location: Netherlands
Posts: 3,537
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Please make this available for vbadvanced CMPS.
Reply With Quote
  #64  
Old 02-21-2011, 07:18 PM
rwoscott rwoscott is offline
 
Join Date: Jan 2007
Location: Melbourne
Posts: 142
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Still doesn't work, I've tried the url as you supplied abocve, and I've tried the RSS feed directly out of my main forum, and I still get the same error.

Code:
Warning: DOMDocument::load(http://www.redandwhiteonline.com/external.php?type=RSS2&forumids=2) [domdocument.load]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/fslider/public_html/core/include.php on line 27
Reply With Quote
  #65  
Old 02-21-2011, 10:36 PM
daveaite's Avatar
daveaite daveaite is offline
 
Join Date: Jul 2009
Location: Florida
Posts: 1,890
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay, I recently got that error, and that is usually after an upgrade.

All you have to do is, take the php code supplied with the package, and open the php widget and add it again and save.

Code:
$fsconfig = array();
$fsconfig['width'] = vB::$vbulletin->options[fs_width];
$fsconfig['height'] = vB::$vbulletin->options[fs_height];
$fsconfig['style'] = vB::$vbulletin->options[fs_style];
$fsconfig['template'] = vB::$vbulletin->options[fs_template];
$fsconfig['rss_url'] = vB::$vbulletin->options[fs_rss_url];
$fsconfig['def_image'] = vB::$vbulletin->options[fs_def_image];
$fsconfig['border_color'] = vB::$vbulletin->options[fs_border_color];
$fsconfig['back_color'] = vB::$vbulletin->options[fs_back_color];
$fsconfig['title_max_char'] = vB::$vbulletin->options[fs_title_max_char];
$fsconfig['des_max_char'] = vB::$vbulletin->options[fs_des_max_char];
$fsconfig['cap_height'] = vB::$vbulletin->options[fs_cap_height];
$fsconfig['path'] = "forumslider/templates/" . $fsconfig['template'];
$fsconfig['border_size'] = vB::$vbulletin->options[fs_border_size];

include_once("forumslider/slider.php");

$output .= generateOutput($fsconfig);
So when that error occurs, just delete everything in the php widget, and re-enter it. Works.
Reply With Quote
  #66  
Old 02-22-2011, 12:13 AM
rwoscott rwoscott is offline
 
Join Date: Jan 2007
Location: Melbourne
Posts: 142
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It was not an upgrade, but a fresh install.
I've done as you said anyway, and I still have the same issue.
Reply With Quote
  #67  
Old 02-22-2011, 01:08 PM
Mastar's Avatar
Mastar Mastar is offline
 
Join Date: Sep 2005
Posts: 680
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It doesn't display: http://mydomain.com/forums/ (my forums frontpage).

However it will display: http://mydomain.com/forums/content.php/45-combat-arms (Categories).


vB 4.1.2
Reply With Quote
  #68  
Old 02-22-2011, 03:23 PM
strudinox's Avatar
strudinox strudinox is offline
 
Join Date: Mar 2010
Location: California
Posts: 147
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I can get it pulling the content correctly from the RSS without error, however it doesn't pull any of the images from the content in my RSS feeds. I just get the default default.png image on all the slides.

Running v4.1.2
Reply With Quote
  #69  
Old 03-13-2011, 06:16 AM
daveaite's Avatar
daveaite daveaite is offline
 
Join Date: Jul 2009
Location: Florida
Posts: 1,890
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by strudinox View Post
I can get it pulling the content correctly from the RSS without error, however it doesn't pull any of the images from the content in my RSS feeds. I just get the default default.png image on all the slides.

Running v4.1.2

The way to do it is keep the image close to the top of the thread. They must also be in the thread before "saving it" in said thread. So if you were to promote it to the front, make sure the image is at the top of the thread before promoting it, as the rss page does not refresh after page edits. Be sure there are no smiley faces before your image as those count as images. Also attached images don't go into RSS Feeds. use image BBcode and it works perfectly.

Running v.4.2. See http://buypoe.com for working version or other demos on forumslider.com
Reply With Quote
  #70  
Old 03-14-2011, 04:28 PM
Kingdombuilder's Avatar
Kingdombuilder Kingdombuilder is offline
 
Join Date: Oct 2009
Posts: 127
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This mod works great for me! great job with this one...

I do however have a problem with some of the images being pulled into the slider. The text will pull in but some of the images will not. I'm my best to evaluate why some and not others. When i promote the images are there but not coming into the slider. I'm wondering if it has to do with the images being a link that was embedded vs a image attachment. Not sure just yet I'm still trying to compare. If someone has figured this out please advise.

Edit: This is the problem with some of the images not showing up in the slider. All the ones that show have been put in with a url. All the ones that do not show have been put in through the image upload. Is there a way to fix this problem?
Reply With Quote
  #71  
Old 03-15-2011, 02:27 PM
tekmiester tekmiester is offline
 
Join Date: Mar 2008
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Guys,

I had not yet removed this component from my site today, and found it to be defaced. After some research, it seems that all sites running this component have been defaced.

I WOULD ADVISE YOU TO REMOVE IT IMMEDIATELY

Buypoe.com (The developer's site) and other's using it have all been defaced.
*edited out* (which also uses Forum Slider) has also been defaced.
Nemesisguild.net another Forum Slider has also been defaced.

All three sites show a picture of David Ahmad ( of Forum-Skins.com) modified to look like he is doing something obscene.

I am not a fan of the guy or his work, but someone else seems to be very angry with him. It seems there is a long-running feud in one of his forums.

Andrew
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:33 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05035 seconds
  • Memory Usage 2,315KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete