View Full Version : Add-On Releases - vBulletin Slide Show 1.10
J98680Bxxxxx
12-18-2009, 10:00 PM
About
This mod was commissioned by "The Land of Fu (http://www.fuflixbulletin.net)" 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:
Create a slide show from images/pictures kept anywhere on the internet.
No limitations in images/pictures sizes.
No uploading and storage of images/pictures in your mysql database.
Fully phrased to allow (language translation)
Displays a flash slide show to the main post of threads.
Displays a button for selection of the flash playing speed mode.
Displays a button for forward, backward display of images/pictures
Displays a button for viewing of images/pictures in flash full screen mode.
Displays a button for viewing images/pictures in tabulation mode.
Displays a link in the ?Thread Tools? for adding/editing slide shows.
Option to add a ?Slide Shows? link on the navigation menu, for displaying all slide shows created.
Option to add a quick link to the "Quick Navigation" menu, for displaying all slide shows created.
Option to disable the mod on selected forums
Option to ban selected usergroups from using the mod.
Displays user?s slide show mini-block on user?s profile.
Displays user?s slide show statistics on user?s profile.
Option to display user?s slide show statistics on postbit.
Option to display a mini slide show on forum home.
Installation instructions - Version 1.10.
One (1) manual template modification. Perform the following manual template modification (I failed to have it automated).
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&t=$threadid">$vbphrase[personal_unsticky]</a>
<else />
<a href="showthread.php?$session[sessionurl]do=personalsticky&t=$threadid">$vbphrase[personal_sticky]</a>
</if>
</td>
</tr>
Insert the following right after:
<!-- Slide Show Link -->
$slideshow_threadtool_link
<!-- / Slide Show Link -->
Uncompress the archive
Upload the content of the "upload" folder into your forum root/main directory
Import the "product_slideshow.xml" product via your ACP:
ACP -> Plugins & Products -> Manage Product -> Add/Import Product
Adjust the mod settings as you see fit.
ACP -> vBulletin Options -> vBulletin Options -> vBulletin Slide Show
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.
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:
query_write("DELETE FROM `". TABLE_PREFIX ."slideshow` WHERE `slideshow`.`slideshowid`=
has been replaced by
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.
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
saadessa
12-19-2009, 01:09 PM
demo link is need registeration i cant see >>>thank you
Demo link works not...
make my own slideshow and works fine ...
reg
macc
TheLastSuperman
12-19-2009, 03:02 PM
Live demo at: http://www.fuflixbulletin.net
It’s a members only discussion forum and registration is required.
Can we get some screenshots? Sorry not to sound rude but some will not even try it without them and some of us simply don't want to register on yet another site to be honest.
* TheLastSuperman tags for now...
Thanks regardless!
Mike
J98680Bxxxxx
12-19-2009, 03:32 PM
The product xml files and screenshots within vBulletin environment are available on the "vBulletin 3.7 Add-ons -> vBulletin Slide Show 1.0 (https://vborg.vbsupport.ru/showthread.php?t=230476)" thread .
Outside vBulletin environment, you can find a raw slide show example here (http://slide.ent.sina.com.cn/slide_4_163_1907.html), and a sample display of all slide shows here (http://slide.ent.sina.com.cn/).
icare
12-19-2009, 08:49 PM
Can u create Test Login?
Taurus1
12-20-2009, 03:37 AM
Thanks! This seems awesome. One thing though! Can you please help me on where to alter those tables. I get a database error regarding that. So I suppose I will have to make those edits.
Thanks!
J98680Bxxxxx
12-20-2009, 04:19 AM
Start your phpMyAdmin and execute those two queries respectively on the tables `thread` and `user`. You can also execute these queries from your ACP -> Maintenance -> Execute SQL Query.
Taurus1
12-20-2009, 04:56 AM
Start your phpMyAdmin and execute those two queries respectively on the tables `thread` and `user`. You can also execute these queries from your ACP -> Maintenance -> Execute SQL Query.
Thank you very much! If you would permit me to just ask this last, probably dumb, question?
So when doing the query in my ACP, do I just enter this:
ALTER TABLE `thread` ADD `slideshowid` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL;
and run it?
and then the next one?
I appreciate your help!!
J98680Bxxxxx
12-20-2009, 05:23 AM
:) Yes, just paste those instructions, one at a time.
Taurus1
12-20-2009, 05:26 AM
:) Yes, just paste those instructions, one at a time.
Thank you! Ehhhh sorry...I get this error though.
An error occurred while attempting to execute your query. The following information was returned.
error number: 1146
error desc: Table 'thebull_CreativX.thread' doesn't exist
EDIT: This is the database error I get,
Database error in vBulletin 3.8.4:
Invalid SQL:
SELECT cover, title, threadid FROM `vbslideshow` WHERE 1;
MySQL Error : Table 'thebull_CreativX.vbslideshow' doesn't exist
Error Number : 1146
Request Date : Sunday, December 20th 2009 @ 02:03:36 AM
Error Date : Sunday, December 20th 2009 @ 02:03:36 AM
Script : http://creativx.net/forums/
Referrer : http://creativx.net/forums/online.php
IP Address :
Username : TheBull
Classname : vB_Database
MySQL Version : 5.0.85-community
J98680Bxxxxx
12-20-2009, 06:22 AM
Add your table prefix: vb
The instructions for your table should be:
ALTER TABLE `vbthread` ADD `slideshowid` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL
ALTER TABLE `vbuser` ADD `slideshows` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL
Taurus1
12-20-2009, 07:14 AM
Yes, I made sure. These are the ones in the file:
product_slideshow.xml
slideshow.php
Taurus1
12-20-2009, 07:16 AM
Add your table prefix: vb
The instructions for your table should be:
ALTER TABLE `vbthread` ADD `slideshowid` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL
ALTER TABLE `vbuser` ADD `slideshows` INT( 10 ) UNSIGNED DEFAULT '0' NOT NULL
When I do that, I get this error:
An error occurred while attempting to execute your query. The following information was returned.
error number: 1060
error desc: Duplicate column name 'slideshowid'
J98680Bxxxxx
12-20-2009, 07:56 AM
Let strt with the first message. MySQL Error : Table 'thebull_CreativX.vbslideshow' doesn't exist
Error Number : 1146
Do you have the table `vbslideshow` created as it should?
If it was not automatically created by the mod, please execute the following (you can find it at the beginning of the product xml file, in the install code):
CREATE TABLE IF NOT EXISTS`vbslideshow` (
`slideshowid` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`userid` INT(10) NOT NULL,
`username` VARCHAR(50) NOT NULL,
`dateline` INT(10) NOT NULL,
`threadid` INT(10) NOT NULL,
`description` mediumtext NOT NULL,
`cover` varchar(250) NOT NULL),
`title` varchar(250) NOT NULL)
Taurus1
12-20-2009, 08:06 AM
Let strt with the first message.
Do you have the table `vbslideshow` created as it should?
If it was not automatically created by the mod, please execute the following (you can find it at the beginning of the product xml file, in the install code):
CREATE TABLE IF NOT EXISTS`vbslideshow` (
`slideshowid` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`userid` INT(10) NOT NULL,
`username` VARCHAR(50) NOT NULL,
`dateline` INT(10) NOT NULL,
`threadid` INT(10) NOT NULL,
`description` mediumtext NOT NULL,
`cover` varchar(250) NOT NULL),
`title` varchar(250) NOT NULL)
I am not sure whether it was created. It boggles my mind! I get a database error saying it doesn't exist, but when I do the query it states that it is a duplicate!!
So should I enter the above code into the XML and re-install?
Thanks for all your help!!:up:
klaush
12-20-2009, 08:26 AM
Thanks for this, but it is yet not working properly.
Two issues; first the table "slideshow" is not created by using the plugin; the second issue is, that a deinstallation of the product does not delete one plugin, that would be left in the plugin area and that causes further mysql errors. So you have to delete that plug manually.
J98680Bxxxxx
12-20-2009, 09:40 AM
I am not sure whether it was created. It boggles my mind! I get a database error saying it doesn't exist, but when I do the query it states that it is a duplicate!!
So should I enter the above code into the XML and re-install?
Thanks for all your help!!:up:
The code is already in the XML file. On first installation, when importing the product, you should set the option "Allow Overwrite" to "No". The `slideshow` table should be created automatically. If you see that the table has not been created, for whatever reasons, just create it manually using the code above. It is for your particular database as I added already your table extension.
Thanks for this, but it is yet not working properly.
Two issues; first the table "slideshow" is not created by using the plugin; the second issue is, that a deinstallation of the product does not delete one plugin, that would be left in the plugin area and that causes further mysql errors. So you have to delete that plug manually.
When deinstalling (removing/deleting), the product is designed to automatically deleted the tables that it creates. Check the "uninstallcode" specified in the XML. vBulletin also automatically remove all associated plugins defined in the "plugins" section of the XML.
Taurus1
12-20-2009, 09:48 AM
I really appreciate your help, but I am a bit unsure on how to create the table manually. Can you please help me with how to do that.
Thank you.
J98680Bxxxxx
12-20-2009, 10:15 AM
I really appreciate your help, but I am a bit unsure on how to create the table manually. Can you please help me with how to do that.
Thank you.
Do you have access to your site's CPanel? If yes, login in there and start phpMyAdmin. Select your database and check the last column of the tables `threads` and `user`. Those should be `slideshowid` and `slideshows`. Also check if there is a table called `slideshow` in the listed tables on the left-hand side.
Taurus1
12-20-2009, 10:39 AM
Do you have access to your site's CPanel? If yes, login in there and start phpMyAdmin. Select your database and check the last column of the tables `threads` and `user`. Those should be `slideshowid` and `slideshows`. Also check if there is a table called `slideshow` in the listed tables on the left-hand side.
This is what I see:
107793
and on the left this:
107794
EDIT: Sorry I browsed those vbthread and vbuser now, and I see the slideshow and slideshowid in the last colums. I just fail to see the slideshow/vbslideshow in the tables on the left.
J98680Bxxxxx
12-20-2009, 11:00 AM
Click on vbthread
This will display the structure of the thread table.
Scroll down to the bottom and check if there is slideshowid
If there is none, click on SQL tab at the top and paste the table altering code in there
ALTER TABLE `vbthread` ADD `slideshowid` INT( 10 ) UNSIGNED DEFAULT '0'
Do the same with vbuser.
Check if there is a vbslideshow on the left hand-side. If there is none, then do the following:
Click on your vbulletin database name (top, left hand-side). This will display the structure
Click on SQL tab and paste the followingtable creation code in there:
CREATE TABLE IF NOT EXISTS`vbslideshow` (
`slideshowid` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`userid` INT(10) NOT NULL,
`username` VARCHAR(50) NOT NULL,
`dateline` INT(10) NOT NULL,
`threadid` INT(10) NOT NULL,
`description` mediumtext NOT NULL,
`cover` varchar(250) NOT NULL,
`title` varchar(250) NOT NULL);
ALTER TABLE `vbslideshow` ADD INDEX ( `threadid` );
Basically, this must be done automatically at first installation of the mod. :)
Taurus1
12-20-2009, 11:14 AM
OK, fantastic! Thank you so much!! Got that sorted. Now I get this on my homepage:
107795
I suppose that is the slideshow (If I had any that would display!) But I have that ticked as "No" in the settings. Anything I can do about that??
J98680Bxxxxx
12-20-2009, 11:25 AM
You have not created any slide show yet. Don't forget to upload the content of the upload folder to your main directory.
From your ACP -> vBulletin Options -> vBulletin Slide Shows Options
"Show in Forum Home" -> Click No.
Adjust the settings as you see fit. :)
Also thank you for pointing out the table creation failure issue. I have updated the XML, as there was an extra parenthesis in the code of the installation section.
Taurus1
12-20-2009, 11:35 AM
I created one now, and it just displays 1 pic in there on the homepage. And also the setting is to "NO" in the Vbulletin Slide Shows Options.
107800
But it still shows.
Also, why do I have this in Chinese?
107799
EDIT: Man I hope you don't get annoyed with me!? I would really just like to get this working!!
I also found that if you click on the "Thread tools" drop down, the slideshow buttons overlaps the drop down like this:
107801
J98680Bxxxxx
12-20-2009, 11:54 AM
I created one now, and it just displays 1 pic in there on the homepage. And also the setting is to "NO" in the Vbulletin Slide Shows Options.
107800
But it still shows.
Also, why do I have this in Chinese?
107799
If you have 1 slideshow created, it will only display that 1 slideshow, as it is displaying the cover of that slideshow. Clicking on it will take you to the thread containing the complete slideshow pictures. If you have more slideshows, it will randomly display 5 (covers) of those slideshows.
Ignore the Chinese image, you can click on the little cross to take it away permanently. I could not create an equivlent image. It says, <- for backward and for forward ->. You can remove that image (e_m_02.png) from the file uploaded, or create an equivalent one and share it with us. :)
Edit: vBulletin thread tool layer loads first, that's why it is displayed on the background and the slideshow layer on the foreground. It does not prevent to use/select those sub-menus of the thread-tools, at least on my side. :)
Taurus1
12-20-2009, 11:57 AM
Fortunately I live in China! So I thought it had something to do with that! lol
The issue though is the fact that even with the setting to not display on the homepage, it still does. And also the overlapping issue. I put up a screenshot of that in my previous post.
Here you go! It's a bit small to get the text nicely.
107802
J98680Bxxxxx
12-20-2009, 12:24 PM
Fortunately I live in China! So I thought it had something to do with that! lol
The issue though is the fact that even with the setting to not display on the homepage, it still does. And also the overlapping issue. I put up a screenshot of that in my previous post.
Here you go! It's a bit small to get the text nicely.
107802
Correction made. The piece of code has been added in the new XML file (v.1.01). Just import it and allow overwrite.
Thank you for the feedback. :up:
Fortunately I live in China! So I thought it had something to do with that! lol
...Here you go! It's a bit small to get the text nicely.
107802
That's also a reason why I left it as is. Clicking on the small cross will keep it away permanently for the browser in use. Maybe one of the designer could create that small button for us, with english text?
Taurus1
12-20-2009, 12:34 PM
Great stuff! All working now! Thanks for all your help and patience!
And you're welcome. It will definitely come in very handy on my forum. (Looks much better with the English button! lol)
Taurus1
12-21-2009, 04:46 AM
OK, when I attempt to delete a slideshow I get this database error:
Database error in vBulletin 3.8.4:
Invalid SQL:
DELETE FROM `vbslideshow` WHERE `slideshow`.`slideshowid`='1' LIMIT 1;
MySQL Error : Unknown column 'slideshow.slideshowid' in 'where clause'
Error Number : 1054
Request Date : Monday, December 21st 2009 @ 12:42:30 AM
Error Date : Monday, December 21st 2009 @ 12:42:30 AM
Script : http://creativx.net/forums/slideshow.php?do=killslideshow&ss_id=1
Referrer : http://creativx.net/forums/slideshow.php?do=delete_slideshow&t=1529&u=621
IP Address :
Username : TheBull
Classname : vB_Database
MySQL Version : 5.0.85-community
J98680Bxxxxx
12-21-2009, 06:42 AM
OK, when I attempt to delete a slideshow I get this database error:
Database error in vBulletin 3.8.4:
Invalid SQL:
DELETE FROM `vbslideshow` WHERE `slideshow`.`slideshowid`='1' LIMIT 1;
MySQL Error : Unknown column 'slideshow.slideshowid' in 'where clause'
...
Thank you for the feedback. It has been implemented.
Update in v.1.02
The following piece of code in the XML and PHP files:
query_write("DELETE FROM `". TABLE_PREFIX ."slideshow` WHERE `slideshow`.`slideshowid`=
has been replaced by
query_write("DELETE FROM `". TABLE_PREFIX ."slideshow` WHERE `slideshowid`=
as it affects databases with prefixed tables.
Taurus1
12-21-2009, 08:45 AM
I will test it now. Thanks! I just want to ask something else here! If my members enter, well, let's say 10 wallpapers to the slideshow. If other members want to download the wallpaper, how do they do that from within the slideshow?
EDIT: Also, is there a way to change the white background?
J98680Bxxxxx
12-21-2009, 09:46 AM
I will test it now. Thanks! I just want to ask something else here! If my members enter, well, let's say 10 wallpapers to the slideshow. If other members want to download the wallpaper, how do they do that from within the slideshow?
EDIT: Also, is there a way to change the white background?
At the current state, there is no option to download from within the slideshow. I will add that option to a forecoming version. :up:
The background color is defined in the css style sheets associated with the mod. In a forecoming version, I will add an inline style option to overwrite it and allow a user defined background color. :up:
Taurus1
12-21-2009, 10:18 AM
At the current state, there is no option to download from within the slideshow. I will add that option to a forecoming version. :up:
The background color is defined in the css style sheets associated with the mod. In a forecoming version, I will add an inline style option to overwrite it and allow a user defined background color. :up:
Thank you! I can confirm that the delete slideshow is now working properly. I hope to see those added features soon! :p Those are really very important to me, and I guess others too.
Megatr0n
12-21-2009, 08:47 PM
How about an option to enable a slide show at the top of the forum index page?
That'd be awesome! :D
J98680Bxxxxx
12-21-2009, 09:15 PM
How about an option to enable a slide show at the top of the forum index page?
That'd be awesome! :D
There is already an option included for displaying, above the forums on the index page, a small slideshow window containing as pictures 5 randomly selected covers from existing slideshows.
If you mean something else, please be specific. :)
thevette
12-22-2009, 08:34 AM
Installed and working well.
How/where do I change/remove the text ".A total of 16 pictures. Current set, picture." at the top of the slide show?
Thanks!
klaush
12-22-2009, 12:15 PM
O.k., we got it working! Once again thanks for this fine mod!
klaush
12-22-2009, 12:44 PM
One question, is it possible to get this to work with the vb albums?
J98680Bxxxxx
12-22-2009, 06:07 PM
Installed and working well.
How/where do I change/remove the text ".A total of 16 pictures. Current set, picture." at the top of the slide show?
Thanks!
You can change/empty the content of the phrases variables x_eTitle and xy_eTitle :)
J98680Bxxxxx
12-22-2009, 06:34 PM
One question, is it possible to get this to work with the vb albums?
I will give it a tough and try updating the current version. :)
thevette
12-22-2009, 09:26 PM
You can change/empty the content of the phrases variables x_eTitle and xy_eTitle :)
Got it. Thank you!
I'm still seeing two periods preciding the varibles. Where would they be coming from?
J98680Bxxxxx
12-23-2009, 06:22 AM
Got it. Thank you!
I'm still seeing two periods preciding the varibles. Where would they be coming from?
It is probably caused by the "construct_phrase" function that I am using at that level. I will update/remove it in the forecoming version. :up:
J98680Bxxxxx
12-23-2009, 06:32 PM
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.
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
Megatr0n
12-24-2009, 01:07 AM
I will give it a tough and try updating the current version. :)
I'd love this.
Taurus1
12-29-2009, 06:50 AM
Thanks for the upgrade!! Great stuff.....although....lol.....when I attempt to edit a slideshow, I get this database error:
Database error in vBulletin 3.8.4:
Invalid SQL:
UPDATE vbthread SET slideshow_bgcolor = '#808080' WHERE threadid = '1614';
MySQL Error : Unknown column 'slideshow_bgcolor' in 'field list'
Error Number : 1054
Request Date : Tuesday, December 29th 2009 @ 02:40:41 AM
Error Date : Tuesday, December 29th 2009 @ 02:40:41 AM
Script : http://creativx.net/forums/slideshow.php?do=updateslideshow&ss_id=2
Referrer : http://creativx.net/forums/slideshow.php?do=edit_slideshow&t=1614&u=3
IP Address :
Username : TheBull
Classname : vB_Database
MySQL Version : 5.0.85-community
J98680Bxxxxx
12-29-2009, 09:42 AM
Thanks for the upgrade!! Great stuff.....although....lol.....when I attempt to edit a slideshow, I get this database error:
Database error in vBulletin 3.8.4:
Invalid SQL:
UPDATE vbthread SET slideshow_bgcolor = '#808080' WHERE threadid = '1614';
MySQL Error : Unknown column 'slideshow_bgcolor' in 'field list'
Error Number : 1054
Request Date : Tuesday, December 29th 2009 @ 02:40:41 AM
Error Date : Tuesday, December 29th 2009 @ 02:40:41 AM
Script : http://creativx.net/forums/slideshow.php?do=updateslideshow&ss_id=2
Referrer : http://creativx.net/forums/slideshow.php?do=edit_slideshow&t=1614&u=3
IP Address :
Username : TheBull
Classname : vB_Database
MySQL Version : 5.0.85-community
Read the text above: "If for some reasons the database new column 'slideshow_bgcolor' required by this mod on the "thread" table has not been ..."
Taurus1
12-29-2009, 02:26 PM
Jeepers mate, I don't know what that even means!! Sorry! I am a noob when it comes to these types of things. Can you help me out here please!? Thanks!!
J98680Bxxxxx
12-29-2009, 02:45 PM
Start your phpMyAdmin and execute one of the ALTER queries above on the table `slideshow`. This will create the required column.
I don't know why vbulletin is not performing it directly at upgrade of the product.
RobbieZ
01-03-2010, 06:25 AM
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 ?
J98680Bxxxxx
01-03-2010, 08:20 AM
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. :)
betts02
01-03-2010, 02:09 PM
no file to download ??????
J98680Bxxxxx
01-03-2010, 07:42 PM
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. :)
betts02
01-03-2010, 08:01 PM
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
J98680Bxxxxx
01-03-2010, 08:20 PM
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 -->" :)
betts02
01-03-2010, 09:14 PM
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 ?
J98680Bxxxxx
01-03-2010, 09:36 PM
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. . :)
betts02
01-04-2010, 06:58 AM
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
J98680Bxxxxx
01-04-2010, 07:21 AM
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. :)
J98680Bxxxxx
01-05-2010, 06:53 AM
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.
Hello J98680B2423E,
I have deleted your thread "vBulletin 4 Sliding Like Sidebar For vB 3.7.x-3.8.x" for the following reason.
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? :eek: 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
betts02
01-05-2010, 03:50 PM
be sure to let me know where you go mate as i will continue to use your mods as will many others
Markus79
01-11-2010, 03:08 PM
Hi
I have a small bug.
When ein try to edit my thread i become this error:
Fatal error: Using $this when not in object context in /var/path_to_forum/editpost.php(1167) : eval()'d code on line 9
This is the code on line 1167:
$foruminfo['forumid'],
Quickedit works fine, only the "advanced edit" doesn't work.
Did someone have the same problem and what can i do?
We hope anyone to edti this addon to made it vBSEO support
worldwidereefer
03-15-2010, 04:04 PM
any for vb4 ?
inciarco
03-16-2010, 05:53 PM
Great Mod, I Like it a Lot. :up:
One Question:
- How Can I Set a Max Width and Max Height for the Image that is Currently Being Displayed on the SlideShow? :confused:
My Best Regards.
:)
inciarco
03-17-2010, 12:05 AM
I Confirm a Bug on this Mod when Trying to Edit the First Post of the Thread that Contains the SlideShow, (on vB384) :confused::
Fatal error: Using $this when not in object context in /home/zzz/public_html/zzz/editpost.php(1167) : eval()'d code on line 8
I Hope Data Decides to Come Back and Provide a Solution for this Bug. :confused:
For Now is Not Possible to Install this on my Forums because this is a Critic Error, (Not Being Able to Edit a Post/Thread). :(
My Best Regards and Hopes for the Author to Come Back. ;)
:)
inciarco
03-17-2010, 01:31 AM
I Confirm a Bug on this Mod when Trying to Edit the First Post of the Thread that Contains the SlideShow, (on vB384) :confused::
I Hope Data Decides to Come Back and Provide a Solution for this Bug. :confused:
For Now is Not Possible to Install this on my Forums because this is a Critic Error, (Not Being Able to Edit a Post/Thread). :(
My Best Regards and Hopes for the Author to Come Back. ;)
:)
The Problem is on the Plugin "Slide Show - Reload Page After Quick Edit".
You should remove the "this->" on the "this->$post['postid']" and the Plugin Code should be like this:
if (!empty($threadinfo['slideshowid']) AND ($post['postid'] == $threadinfo['firstpostid'])){
eval('$headinclude .= "' . fetch_template('slideshow_reloadpage') . '";');
}
And for the Image Sizes (width and height), they can be set on the "epidiascope.js" file on "clientscript -> slideshow".
the options are "maxWidth" and "maxHeight", (there is another "minWidth" that I don't yet know what it is for).
My Best Regards.
:)
devrimow
04-03-2010, 08:53 AM
hi
How can we do for vBadvanced CMPS v3.2.2 modul ??
thanks
Kolektor
07-09-2010, 11:30 AM
I am very much impressed about this mod but I hope future updates will includes control to width and height or perhaps auto resize.
hubie
08-21-2010, 08:57 PM
Hi, I have this mod installed but only a problem: slideshows don't displays in threads where Article Forums Mod is using. Any solution?
I was interested in looking at this later on but the instructions are not in a file for me to download. You should have a file for download and not just have the instructions in the post.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.