Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBulletin Slide Show 1.10 Details »»
vBulletin Slide Show 1.10
Version: 1.00, by J98680Bxxxxx J98680Bxxxxx is offline
Developer Last Online: Oct 2011 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.8.x Rating:
Released: 12-18-2009 Last Update: Never Installs: 22
DB Changes Uses Plugins Template Edits Auto-Templates
Re-useable Code Additional Files Translations  
No support by the author.

About
This mod was commissioned by "The Land of Fu" and approved for release at vbulletin.org. The original goals for developing this mod were:
  • To reduce the growing size of vbulletin database;
  • To allow members to posts series of images not limited in size, but kept at images hosting sites like photobucket.com, imageshack.com, tinypic.com, etc...;
  • To allow continuing discussions within those threads displaying slide shows.

Acknowledgement
The basis codes used in this mod originate from SINA?s, an online media company and MVAS provider in the People's Republic of China and the global Chinese communities, and have been modified to suit the needs of "The Land of Fu". The basis templates have been adapted from the vBulletin Album templates.

What this mod does

It adds a Flash "Slide Show" system to your community, a slide show been a display of a series of chosen pictures, which is done for artistic, instructional or discussion purposes.

How To Use The Slide Show In Your Threads

Open/Create a thread describing the content of your slides (Pictures, Covers, Posters, Lobby Cards, etc...). Once the thread has been successfully created, click on the "Thread Tools" menu and select "Add Slide Show". Follow the instructions afterwards. To edit the content of your slide show, click on the "Thread Tools" menu and select "Edit Slide Show".

Features:
  1. Create a slide show from images/pictures kept anywhere on the internet.
  2. No limitations in images/pictures sizes.
  3. No uploading and storage of images/pictures in your mysql database.
  4. Fully phrased to allow (language translation)
  5. Displays a flash slide show to the main post of threads.
  6. Displays a button for selection of the flash playing speed mode.
  7. Displays a button for forward, backward display of images/pictures
  8. Displays a button for viewing of images/pictures in flash full screen mode.
  9. Displays a button for viewing images/pictures in tabulation mode.
  10. Displays a link in the ?Thread Tools? for adding/editing slide shows.
  11. Option to add a ?Slide Shows? link on the navigation menu, for displaying all slide shows created.
  12. Option to add a quick link to the "Quick Navigation" menu, for displaying all slide shows created.
  13. Option to disable the mod on selected forums
  14. Option to ban selected usergroups from using the mod.
  15. Displays user?s slide show mini-block on user?s profile.
  16. Displays user?s slide show statistics on user?s profile.
  17. Option to display user?s slide show statistics on postbit.
  18. Option to display a mini slide show on forum home.

Installation instructions - Version 1.10.
  1. One (1) manual template modification. Perform the following manual template modification (I failed to have it automated).
    Code:
    In SHOWTHREAD template, search for:
    <tr>
    	<td class="vbmenu_option"><img class="inlineimg" src="$stylevar[imgdir_button]/mysticky.gif" />
    	<if condition="in_array($thread['threadid'], $personalstickys)">
    		<a href="showthread.php?$session[sessionurl]do=unpersonalsticky&amp;t=$threadid">$vbphrase[personal_unsticky]</a>
    	<else />
    		<a href="showthread.php?$session[sessionurl]do=personalsticky&amp;t=$threadid">$vbphrase[personal_sticky]</a>
    	</if>
    	</td>
    </tr>
    
    Insert the following right after:
    
    <!-- Slide Show Link -->
    	$slideshow_threadtool_link
    <!-- / Slide Show Link -->
  2. Uncompress the archive
  3. Upload the content of the "upload" folder into your forum root/main directory
  4. Import the "product_slideshow.xml" product via your ACP:
    ACP -> Plugins & Products -> Manage Product -> Add/Import Product
  5. Adjust the mod settings as you see fit.
    ACP -> vBulletin Options -> vBulletin Options -> vBulletin Slide Show
  6. Save the specified settings.

Working well on vb3.7x - 3.8x

If for some reasons the database columns required by this mod on the "thread" and "user" tables have not been automatically created during this mod installation, please do add those columns manually using the ALTER table command.

Code:
ALTER TABLE `thread` ADD `slideshowid` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL;
ALTER TABLE `user` ADD `slideshows` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL;
Enjoy

Live demo at: http://www.fuflixbulletin.net
It?s a members only discussion forum and registration is required.

If you have a public board and have installed this mod, please provide a demo link for other users..

Update in v.1.01

1.
In the installation section of the XML:

`cover` varchar(250) NOT NULL),

changed to

`cover` varchar(250) NOT NULL,

Parenthesis removed just after the NULL.

2.
Option not to display the slideshow on forumhome added and checked.

Update in v.1.02

The following piece of code in the XML and PHP files:
Code:
query_write("DELETE FROM `". TABLE_PREFIX ."slideshow` WHERE `slideshow`.`slideshowid`=
has been replaced by
Code:
query_write("DELETE FROM `". TABLE_PREFIX ."slideshow` WHERE `slideshowid`=
as it affect databases with prefixed tables.


Update in v.1.10
  • Option to download active picture on slideshow
  • Option for slideshow owner to select/change the background color of its slideshow display
  • Option for users to add descriptive text per slide show pictures.


If for some reasons the database new column 'slideshow_bgcolor' required by this mod on the "thread" table has not been automatically created during this mod installation/upgrade, please do add that column manually using the ALTER table command.

Code:
ALTER TABLE `TABLE_PREFIXthread` ADD `slideshow_bgcolor` VARCHAR(50) DEFAULT '#fff' NOT NULL

Replace TABLE_PREFIX by your actual table prefix. If you have none, then use the instruction:

ALTER TABLE `thread` ADD `slideshow_bgcolor` VARCHAR(50) DEFAULT '#fff' NOT NULL

Get the attachment from this thread in the vb3.7x section:
https://vborg.vbsupport.ru/showthread.php?t=230476

Show Your Support

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

Comments
  #52  
Old 01-03-2010, 08:20 AM
J98680Bxxxxx J98680Bxxxxx is offline
 
Join Date: Jan 2008
Location: Bridge - Enterprise
Posts: 325
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by RobbieZ View Post
nice slideshow, can get rather complicated, more or an experienced poster to use and not newbs.

But it is a learning curve.

Nice. Thanx

When are you going to release the rate thread thing u have got going ?
When Jarod will give his approval. It is still in testing.
Reply With Quote
  #53  
Old 01-03-2010, 02:09 PM
betts02's Avatar
betts02 betts02 is offline
 
Join Date: Jun 2009
Posts: 910
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no file to download ??????
Reply With Quote
  #54  
Old 01-03-2010, 07:42 PM
J98680Bxxxxx J98680Bxxxxx is offline
 
Join Date: Jan 2008
Location: Bridge - Enterprise
Posts: 325
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by betts02 View Post
no file to download ??????
Get the attachment from this thread in the vb3.7x section:
https://vborg.vbsupport.ru/showthread.php?t=230476

I didn't want to post it twice.
Reply With Quote
  #55  
Old 01-03-2010, 08:01 PM
betts02's Avatar
betts02 betts02 is offline
 
Join Date: Jun 2009
Posts: 910
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yes sorry missed that, just read all the posts again and found it on the first page.lol

but can not ust it as the code you say to lookm for in the showthread template is not there on my theme

it does not even have :

$vbphrase[personal_sticky]</a>

so cant use
Reply With Quote
  #56  
Old 01-03-2010, 08:20 PM
J98680Bxxxxx J98680Bxxxxx is offline
 
Join Date: Jan 2008
Location: Bridge - Enterprise
Posts: 325
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by betts02 View Post
yes sorry missed that, just read all the posts again and found it on the first page.lol

but can not ust it as the code you say to lookm for in the showthread template is not there on my theme

it does not even have :

$vbphrase[personal_sticky]</a>

so cant use
It doesn't matter whether you have the "$vbphrase[personal_sticky]" or not. If you have the SHOWTHREAD template, just search for the location of the thread tools (<!-- thread tools menu -->) within the SHOWTHREAD template and insert that piece of code between any of the </tr> and the immediate following <tr> of the very first table right after "<!-- thread tools menu -->"
Reply With Quote
  #57  
Old 01-03-2010, 09:14 PM
betts02's Avatar
betts02 betts02 is offline
 
Join Date: Jun 2009
Posts: 910
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok got it done

now lets me see.lol...noob

so my understanding is each thread i create and place in this mod via admin can have an image and when the image is clicked it takes me to that thread ?

can this image be made clickable to go to another web site and not the thread ?
Reply With Quote
  #58  
Old 01-03-2010, 09:36 PM
J98680Bxxxxx J98680Bxxxxx is offline
 
Join Date: Jan 2008
Location: Bridge - Enterprise
Posts: 325
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by betts02 View Post
ok got it done

now lets me see.lol...noob

so my understanding is each thread i create and place in this mod via admin can have an image and when the image is clicked it takes me to that thread ?

can this image be made clickable to go to another web site and not the thread ?
How to use it?

1. Create a thread
2. Once the thread has been created, click on the "Thread Tools" and select "Add slide Show"
3. follow the instructions. It's just like adding a Photo Album, except that with this slide show: (1) you are not limited in the size of images; (2) you can keep your images anywhere on the Internet (file hosting sites like imageshack.com, photobuckect.com, tinypic.com, etc...), thus giving your database a break; (3) you have a flash-like output of your images. .
Reply With Quote
  #59  
Old 01-04-2010, 06:58 AM
betts02's Avatar
betts02 betts02 is offline
 
Join Date: Jun 2009
Posts: 910
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

only problem i see is it resizes the image which i dont like as some pictures are smaller than others and this make the small one's look silly when resized

it does not show the selected image chosen on my home page, just a blank screen
added all the images the same to test and just blank screen on forum home

would be great if images were just put up in the size they are in the forum, maybe resize the image to make smaller but not bigger

make the image clickable to another web site

i want to use this as an affiliates thingy and this would be great
Reply With Quote
  #60  
Old 01-04-2010, 07:21 AM
J98680Bxxxxx J98680Bxxxxx is offline
 
Join Date: Jan 2008
Location: Bridge - Enterprise
Posts: 325
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by betts02 View Post
only problem i see is it resizes the image which i dont like as some pictures are smaller than others and this make the small one's look silly when resized

it does not show the selected image chosen on my home page, just a blank screen
added all the images the same to test and just blank screen on forum home

would be great if images were just put up in the size they are in the forum, maybe resize the image to make smaller but not bigger

make the image clickable to another web site

i want to use this as an affiliates thingy and this would be great
Making an image clickable to another site is another issue as a click on a slideshow image is for moving either forward or backward in the slideshow set.

An upgrade, which will take into account those small sized images, will likely be posted by the end of this week.
Reply With Quote
  #61  
Old 01-05-2010, 06:53 AM
J98680Bxxxxx J98680Bxxxxx is offline
 
Join Date: Jan 2008
Location: Bridge - Enterprise
Posts: 325
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

As a result of an action taken by vb.org regarding the sidebar mod, I am discontinuing the support that I provided on my mods here at vb.org. I will join a different site where I will be posting further developments.

Quote:
Originally Posted by Paul M
Hello J98680B2423E,

I have deleted your thread "vBulletin 4 Sliding Like Sidebar For vB 3.7.x-3.8.x" for the following reason.

Quote:
You are not permitted to re-distribute vbulletin files.
You might also want to consider changing your username, since it appears to be your licence number.

Rgds,

Paul M
vbulletin.org Staff
vBulletin files? The source code for the sidebar is available at yahoo developper site. As for vBulletin, just start the homepage from any browser and click on view source to see how it is structured.

Any way, I will leave this site and join other site where I will be posting further mods.

With best regards,
Data
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 05:48 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.08113 seconds
  • Memory Usage 2,348KB
  • Queries Executed 26 (?)
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
  • (5)bbcode_code
  • (7)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