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.0.1
This is the port for my hack to vb 3.6.x check it for vb 3.5.x here A New installer replaced the old one so you should not face any problems with database NOTE : People who were using vbimghost in vb 3.5.x and moved to vb 3.6.0 MAKE sure that you have vbimghost 1.4.1 Since this port will only support upgrading from that ver only People who do a fresh install use this ver. 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 Update instruction : Just replace the old files with the new ones and import the product file don't forget to select overwrite. History: 1.0.0: 1.0.1: Download Tracking: 1.0.0 : 3886 Known Issues: no known issues.Screen shscreenshot.zip screenshot.zip.NOTE: before you post any error here : Set that path to your forums correctly in the vbimghost options. if you getting the error ""supplied argument is not a valid" that's because you didn't set the path correctly And for all the people asking when is the next release it will be in 2007 not this month .. due to some problems in real life .. URGENT ISSUES: you may contact me on msn id : waiel[at]waieleid.com Supporters / CoAuthors Show Your Support
|
Comments |
#432
|
|||
|
|||
yes it can be done ..
|
#433
|
||||
|
||||
Quote:
Thanks for trying to help me out. The code you've provided is already available as an extra with this Add-on and it works just fine. However it also shows the text 'My photo: (0)' when a user doesn't got any (public) photos at all! I know my user and they wil complain and they would be right since this does not add anything at all, if you don't publish the photo's. So, the issue is: I want this specific text/code only shown/executed when this variabel ($post[vbimghost]) is actually more then zero! I'm just having troubles writing a decent <if>-statement with this variable...consider me a semi-noob Thanks so far... --edit-- Nevermind: <if condition="$post[vbimghost] > 0 "> did the trick....thanks... PS: maybe this should be default in the add-on.. |
#434
|
|||
|
|||
Quote:
Same problem here. I searched through the thread and couldn't find a fix. |
#435
|
|||
|
|||
just change it from the template..
|
#436
|
|||
|
|||
Warning: getimagesize(/home/user/public_html/carpy/imagehosting/144d4e506cf85d.jpg) [function.getimagesize]: failed to open stream: No such file or directory in /admincp/vbimghost.php on line 278
Im still unable to rebuild thumbnails, Checked and double checked installation and settings. I will probably uninstall until theres better support. Id be interested in this setting. |
#437
|
||||
|
||||
Great addition .. clicked install .. works well on 3.6.4
|
#438
|
|||
|
|||
Great hack! I just installed it and it's working great so far. I really love the watermark feature.
*clicks install* |
#439
|
|||
|
|||
Just realized I posted a bug fix in the old 3.5.x thread, meant to post it here.
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. The Fix: I did a search and discovered 2 of the functions you used in the 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. 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. |
#440
|
|||
|
|||
Can someone tell me how to put the latest uploads (thumbnails) on forumhome?
PM's would be great if possible. |
#441
|
||||
|
||||
Hi
Thank you for this cool hack. I have not read the full thread so I don't know if this was reported yet. I think the add-ons should come with a permission if statement. If a user is not allowed to upload images and clicks on "quick upload" he only gets the warning text about public images. I think he should not see the whole quick upload thing at all. I have tried "<if condition="$canupload">" but it does not work Does anyone has an idea? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|