The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
VB image Hosting Details »» | |||||||||||||||||||||||||
VB Image Hosting Version 1.4.2
Please note that next ver will not support older ver update. Frensh ver is avilable to download Thanks to tandy Port to Vbulletin 3.6.0 can be found here Requirements:
Introduction: What does it do ? VB Image Hosting is a similar feature to imageshak and photopoket and online free image hosting, but this is for your members. it will allow them to upload and host their images on your servers, you can still manage the permissions and set the number of files for each group. Main Features:
Time required to install :Updates: 1.0.1:Fixed an error when listing the users also removed a line that causes the script to generate a java script error, fixed viewing members files redirect error to profile 1.2.0: 1.2.1:Download track: ver 1 - 1.4.0 : no tracks ver 1.4.1: 673 downloads Known Issues: no known issuesSpecial thanks to :
Check screenshot.zip file / New screen shot in screenshot2.zip Supporters / CoAuthors Show Your Support
|
Comments |
#772
|
|||
|
|||
leenster, please refer to ranma2k's above quote. It was this clue, which led me to fix it up.
|
#773
|
|||
|
|||
ok, after much trial and error, i found out the following not working :
-private message postbit legacy do not have link to My Photos and just below the smilies , do not have the link to open photos. any kind sould able to advice? TIA |
#774
|
|||
|
|||
thanx brother..... its fixed.....
|
#775
|
|||
|
|||
smilies in the postbit? do u have a screen shot?
|
#776
|
||||
|
||||
Any updates on my original requests? Post #726. Thanks, rg.
|
#777
|
|||
|
|||
Quote:
I had this problem - I edited the editor_smiliebox template: Code:
<fieldset id="vbimghostbox" title="$vbphrase[vbimghost_title]"> <legend>$vbphrase[vbimghost_myphotos]</legend> <table cellpadding="4" cellspacing="0" border="0" align="center"> <tr> <td class="smallfont" colspan="$vboptions[smcolumns]"> [<a href="#" onclick="window.open('vbimghost.php?do=popup&ed=$editorid','vbimghost1','scrollbars=yes,resizable=yes,width=550,height=500'); return false" title="Pick">Pick</a>] [<a href="#" onclick="window.open('vbimghost.php?do=popupload&ed=$editorid','vbimghost2','scrollbars=yes,resizable=yes,width=562,height=97'); return false" title="Upload">$vbphrase[vbimghost_quickup]</a>]</td> </tr> </table> </fieldset> |
#778
|
|||
|
|||
Seems to be a bug with this addon and particular .gif files when you have the 'thumbnail' option set to yes.
One of my users have been trying to upload their signature file but it keeps timing out in PHP. I am using the latest build in GD version 2.0.28. Latest version of VB. The problem code seems to be: Code:
switch ($imageExt){ case (".gif"): $srcImg = imagecreatefromgif("$imageDirectory/$imageName"); $colortrans = imagecolortransparent($srcImg); $thumbImg = imagecreate($width, $height); imagepalettecopy($thumbImg,$srcImg); imagefill($thumbImg,0,0,$colortrans); imagecolortransparent($thumbImg,$colortrans); imagecopyresized($thumbImg,$srcImg,0,0,0,0,$width,$height,$imageWidth,$imageHeight); imagegif($thumbImg,"$thumbDirectory/$thumbName"); I've been able to upload smaller and larger gifs though. |
#779
|
|||
|
|||
I believe I fixed the problem myself. I'm by no means a pro coder, but I did a search and discovered 2 of the functions you used in your code were older ones meant for the original GD library.
I changed 2 lines to refer to the GD2 libraries and now the .gif thumbnailing is working correctly for this particular image. Here's the updated code: Code:
switch ($imageExt){ case (".gif"): $srcImg = imagecreatefromgif("$imageDirectory/$imageName"); $colortrans = imagecolortransparent($srcImg); $thumbImg = imagecreatetruecolor($width, $height); imagepalettecopy($thumbImg,$srcImg); imagefill($thumbImg,0,0,$colortrans); imagecolortransparent($thumbImg,$colortrans); imagecopyresampled($thumbImg,$srcImg,0,0,0,0,$width,$height,$imageWidth,$imageHeight); imagegif($thumbImg,"$thumbDirectory/$thumbName"); break; Hope this helps anyone else with this issue. |
#780
|
|||
|
|||
Hmm
Is there no way for ppl to add comments to posts? I get this request daily. |
#781
|
|||
|
|||
install very good
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|