View Full Version : VB image Hosting
The Chief
07-24-2006, 06:49 PM
you'll need a plugin for that
where do you want to show it in ?!
In there profile, example: View more pics (21) :)
I would also like this to work ;)
I will try this today, hope it works good...
The Chief
07-24-2006, 07:51 PM
Is there a comment feature planned, would be really nice :)
btw: Installed and works great, http://forums.myetalk.com/vbimghost.php?do=viewimages&id=1
The Chief
07-24-2006, 07:58 PM
Also another suggestion, maybe for all the showing all user's images, give us more options?
Like show recent images uploaded, and top images?
You could make this a pretty awesome hack, even better then it is now, let me know if this is possible :)
Also, if we could be able to choose how many thumbnails we want per row, and is there a possibility to display let's say like 4 images per row, and take off all the other info for the thumbnails and just display those in the full image view?
Thanks!
The Chief
07-24-2006, 11:17 PM
You would also need to add a link back to that user's profile, somewhere where your viewing that's user's images.
I tried using $userinfo[userid] but nothing worked...
rantrave
07-24-2006, 11:36 PM
Any ideas on images to stop showing? I've been error free since installation months ago, even transferred to another server with zero complications. Now, they are just a red x all over the board.
The Chief
07-25-2006, 05:11 AM
Any ideas on images to stop showing? I've been error free since installation months ago, even transferred to another server with zero complications. Now, they are just a red x all over the board.
You maybe changed the folder location, just click on Properties for the image and see where it's getting the path. (or maybe CHMOD that folder to 777)
Ranma2k
07-25-2006, 10:44 AM
Hey the chief ..
Yes i'm working on all of this and i'm adding many plugins
my main problem now is Ajax. can't integrate it with the hack for editing / posting comments
but i'm still working on it
The Chief
07-25-2006, 02:28 PM
Hey the chief ..
Yes i'm working on all of this and i'm adding many plugins
my main problem now is Ajax. can't integrate it with the hack for editing / posting comments
but i'm still working on it
Thank you Ranma, we don,t need AJAX, but yeah, if you want to integrate that also, feel free too :)
tbradham
07-25-2006, 06:22 PM
Installed and working great...
Anxiously awaiting the next release. Can we get a little peak into what to expect to be in the next version?
begore
07-26-2006, 08:20 AM
you'll need a plugin for that
where do you want to show it in ?!
I'd like to be able to put something like:
"My Photos: 4"
in the users postbit, with the 4 being the number of imags a user has uploaded (and being clickable through to the gallery).
begore
07-26-2006, 08:21 AM
My users are getting logged out of the fourm (it seems randomly) while viewing the gallery - any ideas?!
begore
07-26-2006, 10:51 AM
*subscribing
DementedMindz
07-26-2006, 07:43 PM
anyway to have this on the newthread.php page? basiclly have it where if there going to post and want to include a image they could do it right there maybe under the Additional Options on newthread.php...
DementedMindz
07-26-2006, 07:47 PM
kinda like this mod would do... https://vborg.vbsupport.ru/showthread.php?t=103200 but use your system..
tbradham
07-26-2006, 08:29 PM
I was able to get a link in the user's postbit by editing the postbit template.
Under this:
<if condition="$post['userid'] AND $show['member']">
Add this:
<tr><td class="vbmenu_option"><a href="vbimghost.php?$session[sessionurl]do=viewimages&id=$post[userid]"><phrase 1="$post[username]">My Pictures</phrase></a></td></tr>
DementedMindz
07-26-2006, 08:58 PM
yeah that wouldnt be to hard to do esp since they already have a drop down there... i was just looking to do it on newthread.php page this way if for some reason they want to post a topic with a image they can just upload it and link it right away..
tbradham
07-26-2006, 09:08 PM
Sorry, I was trying to answer a previous question posed by SpriteGames.
Your request would be pretty cool. Perhaps the insert image script from the WYSIWYG editor could be modified to look at the posters vbimage account?
The Chief
07-26-2006, 09:42 PM
Would there also be a way of adding one picture as your default picture with vBulletin, replacing the normal Profile Picture that vBulletin offers, that would be pretty amazing :)
The Chief
07-27-2006, 12:29 AM
Would there also be a way of integrating this with the vbBux system by CMX? :)
begore
07-27-2006, 02:02 PM
Hi,
Yeah, I managed to get that far myself - the problem was that the link would still be there even if a user hasn't uploaded an image (which is why I was asking about how to pull the number of images a user has uploaded from the DB).
Cheers!
I was able to get a link in the user's postbit by editing the postbit template.
Under this:
<if condition="$post['userid'] AND $show['member']">
Add this:
<tr><td class="vbmenu_option"><a href="vbimghost.php?$session[sessionurl]do=viewimages&id=$post[userid]"><phrase 1="$post[username]">My Pictures</phrase></a></td></tr>
The Chief
07-27-2006, 02:53 PM
Hi,
Yeah, I managed to get that far myself - the problem was that the link would still be there even if a user hasn't uploaded an image (which is why I was asking about how to pull the number of images a user has uploaded from the DB).
Cheers!
If I remember well Ranma said he would ass this as a plugin :)
tfw2005
07-28-2006, 02:52 AM
Here is an htaccess file that will disallow hot linking to these uploaded files from anyone but the URLS you specify. Copy this to a blank file, name it .htaccess, and drop this into the imagehosting folder. Works for linux servers of course, cant support this, just trying to help anyone who wants to limit these images being seen to only their site/forums.
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?youralloweddomain1.com(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?youralloweddomain2.info(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?youralloweddomain3.info(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?youralloweddomain4.net(/)?.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://(www\.)?youralloweddomain5.info(/)?.*$ [NC]
RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://pagetoredirectto.com/index.php [R,NC]
DementedMindz
07-28-2006, 03:38 AM
how can i view members images if they set them private?
DementedMindz
07-28-2006, 04:06 AM
I have been tryin to make this work on the new thread page so far i have it pretty well set up i just have to figure out why it keeps tellin me to enter in a title/subject hopefully tomorrow when i get up and aint so tired i can get it or if someone wants to try to get it here is what i have so far... i been testing it out in the new thread template and hopefully tomorrow i can get it to work i may even try ajax or something to show the url right on that page...
<fieldset class="fieldset"><legend>Upload Your Images</legend>
<form method="post" action="vbimghost.php" enctype="multipart/form-data">
<table border="0" cellspacing="0" cellpadding="0">
<tr> <td> <b>Image to upload:</b><br />
<input class="bginput" type="file" name="upfile$count" size="30" /><br />
<input type="hidden" name="do" value="uploadfile" /><br />
<input class="bginput" type="submit" value="$vbphrase[vbimghost_hostit]" />
<input class="bginput" type="reset"value="$vbphrase[vbimghost_reset]" />
</td> </tr> </table> </form>
</fieldset>
64North
07-28-2006, 06:12 PM
It would be great if it were possible to only add the watermark to images that are show outside of the domain this add-on is installed on.
For example, when my users look at the images on any http://outdoor-photo.net page, no watermark would be shown, but if someone were to link a photo to say vBulletin.org, then the watermark would show up.
Also, it would be important that the watermark is only added to images of a certain size, so that someone who uploads a 20pxx20px image doesn't get a 120x15 watermark slapped onto it.
The Chief
07-28-2006, 10:10 PM
It would be great if it were possible to only add the watermark to images that are show outside of the domain this add-on is installed on.
For example, when my users look at the images on any http://outdoor-photo.net page, no watermark would be shown, but if someone were to link a photo to say vBulletin.org, then the watermark would show up.
Also, it would be important that the watermark is only added to images of a certain size, so that someone who uploads a 20pxx20px image doesn't get a 120x15 watermark slapped onto it.
Umm, that would make things a bit complicated, the watermark is added on image creation/upload, so it would have to recreate all images, I don't even think it's possible...
Ranma2k
07-29-2006, 04:49 AM
how can i view members images if they set them private?
from the admincp
Ranma2k
07-29-2006, 04:55 AM
Guys I'm really sorry for the late updates.
Life is being more complicated with me
so looks like I'm going to release what ever i finished for now and add the rest later.
i'm going to release it this week hopefully.
For now what is most important that you want to see in the next release ?
Thanks
Ranma2k
07-29-2006, 08:45 AM
Hi,
Yeah, I managed to get that far myself - the problem was that the link would still be there even if a user hasn't uploaded an image (which is why I was asking about how to pull the number of images a user has uploaded from the DB).
Cheers!
i have applied it in the new ver as you can see in the attachment
The Chief
07-29-2006, 09:26 PM
Guys I'm really sorry for the late updates.
Life is being more complicated with me
so looks like I'm going to release what ever i finished for now and add the rest later.
i'm going to release it this week hopefully.
For now what is most important that you want to see in the next release ?
Thanks
Can you give us what you are intending on releasing or features you are working on?
I can probably tell you which ones would be the most important :)
serhat_kk
07-30-2006, 12:58 AM
how do i store images at another server?
it's not supported in this ver
in next ver it will be
Thanks Ranma2k. It will be very useful. I'm waiting for the next version. Thanks...:)
Ranma2k
07-30-2006, 04:51 AM
Can you give us what you are intending on releasing or features you are working on?
I can probably tell you which ones would be the most important :)
ok here is what i have done so far and working fine ..
1- text watermarking
2- rearranged displaying of the images
3- Navbar for the images
4- added member info / post info plugins
5- fixed some security issues
currently working on
1- filmstrip (98% done)
2- remote image store ( will try to include it )
3- ability to upload from thread/post creation and adding the link to it.
delayed to the ver after
1- comment system
the next release is to be expected this week (hopefully)
anything else needed ?!
thomor25
07-30-2006, 02:13 PM
are the images stored in the database or on the server?
dacho
07-30-2006, 03:05 PM
Did only member can see the images from this system ?
and
if ther is a option that the link become different and work only in the forum - not in different site ?
Ranma2k
07-30-2006, 03:10 PM
are the images stored in the database or on the server?
it's stored in the server as files
Ranma2k
07-30-2006, 03:11 PM
Did only member can see the images from this system ?
and
if ther is a option that the link become different and work only in the forum - not in different site ?
depends on you
only members can have private pics that no one can access except them/admins
guests can see the list of public images that members set
The Chief
07-30-2006, 08:55 PM
ok here is what i have done so far and working fine ..
1- text watermarking
2- rearranged displaying of the images
3- Navbar for the images
4- added member info / post info plugins
5- fixed some security issues
currently working on
1- filmstrip (98% done)
2- remote image store ( will try to include it )
3- ability to upload from thread/post creation and adding the link to it.
delayed to the ver after
1- comment system
the next release is to be expected this week (hopefully)
anything else needed ?!
Seems amazing, great work :)
Well I think there was only one thing I was looking for, replacing the current profile picture that is integrated with vBulletin by being able to set an image as your default picture?
Thanks for your time! :)
64North
07-30-2006, 10:17 PM
anything else needed ?!
First off, thanks for your hard work on this mod. When you do implement the comment system (the version after the next one), please include an option to disable the comment system completely. To me one of the greatest things about vB Image Host is that it doesn't have a comment system. I want users to comment on pictures in threads on the forum, not within the gallery pages. ;)
Well I think there was only one thing I was looking for, replacing the current profile picture that is integrated with vBulletin by being able to set an image as your default picture?Eh, now that is just being lazy. You can easily copy and paste the link to your gallery pic to be your profile pic. Also, some (many? most?) admins do not allow externally linked profile or avatar pics and would require an upload of the profile pic regardless.
Integrating vB Image Host with all possible profile pic scenarios doesn't seem like a good use of time, given that the end user can update/change his profile pic without much effort, and given that there are things the vB Image Host mod could use that only the developer can add. Meaning to ask the developer to spend X amount of time to recreate functionality that is already available to the user is not as time efficient as the developer working on completely new functionality. IMHO anyway, YMMV.
The Chief
07-31-2006, 02:22 AM
First off, thanks for your hard work on this mod. When you do implement the comment system (the version after the next one), please include an option to disable the comment system completely. To me one of the greatest things about vB Image Host is that it doesn't have a comment system. I want users to comment on pictures in threads on the forum, not within the gallery pages. ;)
Eh, now that is just being lazy. You can easily copy and paste the link to your gallery pic to be your profile pic. Also, some (many? most?) admins do not allow externally linked profile or avatar pics and would require an upload of the profile pic regardless.
Integrating vB Image Host with all possible profile pic scenarios doesn't seem like a good use of time, given that the end user can update/change his profile pic without much effort, and given that there are things the vB Image Host mod could use that only the developer can add. Meaning to ask the developer to spend X amount of time to recreate functionality that is already available to the user is not as time efficient as the developer working on completely new functionality. IMHO anyway, YMMV.
Yup, I agree, I just thought of this was something that could easily be implemented then do it :)
I was also thinking of being able to put captions (names or descriptions) to images?
Ranma2k
07-31-2006, 04:51 AM
First off, thanks for your hard work on this mod. When you do implement the comment system (the version after the next one), please include an option to disable the comment system completely. To me one of the greatest things about vB Image Host is that it doesn't have a comment system. I want users to comment on pictures in threads on the forum, not within the gallery pages.
i was planning for that from the first place :)
Well I think there was only one thing I was looking for, replacing the current profile picture that is integrated with vBulletin by being able to set an image as your default picture?
I was also thinking of being able to put captions (names or descriptions) to images?
i'll try to add it :)
The Chief
07-31-2006, 02:06 PM
i was planning for that from the first place :)
i'll try to add it :)
Cool, looking forward to your release :)
Thanks!
cartooner
07-31-2006, 08:20 PM
ok here is what i have done so far and working fine ..
1- text watermarking
2- rearranged displaying of the images
3- Navbar for the images
4- added member info / post info plugins
5- fixed some security issues
currently working on
1- filmstrip (98% done)
2- remote image store ( will try to include it )
3- ability to upload from thread/post creation and adding the link to it.
delayed to the ver after
1- comment system
the next release is to be expected this week (hopefully)
anything else needed ?!
How about Folders, is that possible??
cartooner
07-31-2006, 08:23 PM
..and you are doing a wonderful job with this ...Thank You.
Ranma2k
08-01-2006, 04:51 AM
How about Folders, is that possible??
folders.. hmmm
well I'll do it after the next release ..
Blindchild02
08-02-2006, 03:16 AM
is there a way to make it so the watermark is aligned to the exact bottom right instead of the padding?? I want my watermark to go across the bottom and hit the right side too
currently it's this:
http://www.carchops.com/imagehosting/144d026a6a07f0.jpg
mac27
08-02-2006, 03:23 AM
blindchild go into
adminCP>VB Image Host>VB Image Host Options, then scroll down to where it says watermark location and change it from center to bottom_right
Hope that helps.
Blindchild02
08-02-2006, 03:24 AM
it is bottom_right
Ranma2k
08-02-2006, 06:08 AM
it is bottom_right
it takes 10 px from the margins to add the watermark
do you want me to lower it to 1 ?
Blindchild02
08-02-2006, 06:10 AM
i would like to lower it to 0 if i could
Ranma2k
08-02-2006, 06:34 AM
i would like to lower it to 0 if i could
OK I'll add an option for this
expect the new release in the coming days ( mostly Friday :) )
Blindchild02
08-02-2006, 03:10 PM
I was hopin it would be just a quick fix :(
Ranma2k
08-02-2006, 05:00 PM
I was hopin it would be just a quick fix :(
it will be out in 2 days :) can't you wait ?!
Blindchild02
08-02-2006, 05:19 PM
haha not really :(
The Chief
08-02-2006, 08:19 PM
it will be out in 2 days :) can't you wait ?!
Yup, thanks for the updates, looking forward to the next release :)
TRStealth
08-03-2006, 09:14 PM
So, with 3.6 Gold, will you be fixing the hack to work with 3.6 soon? :)
blowndeadline
08-04-2006, 02:13 AM
Where can I limit the image size (pixels) and file size?
Nevermind, needed to refvresh the acp
Ranma2k
08-04-2006, 09:04 AM
So, with 3.6 Gold, will you be fixing the hack to work with 3.6 soon? :)
yes i'm curently working on it .. will be avilable this weekend
64North
08-04-2006, 04:19 PM
Ranma2k, I know you previously said you don't really need donations, but man, your work is excellent, set up a paypal account and I am sure people will donate for your time and efforts, I know I will.
If not, is there anything else your users can do for you in order to show their appreciation?
Ranma2k
08-04-2006, 04:29 PM
Ranma2k, I know you previously said you don't really need donations, but man, your work is excellent, set up a paypal account and I am sure people will donate for your time and efforts, I know I will.
If not, is there anything else your users can do for you in order to show their appreciation?
just a thanks would be enugh :)
1 houre to release the next ver ( writing the installiation document)
Ranma2k
08-04-2006, 05:50 PM
New Ver is up ..
Let me know if everything goes well
PLEASE REMMBER TO BACKUP YOUR DATA
Blindchild02
08-04-2006, 06:58 PM
I Get this when uploading an image (shows at the top, then the watermark doesnt work)
Warning: getimagesize(/home/user/public_html/forums/imagehosting/carchops_watermark123.png): failed to open stream: No such file or directory in /includes/vbimghost_include.php on line 221
then i get this after deleting:
Warning: unlink(imagehosting/): Is a directory in /vbimghost.php on line 889
Blindchild02
08-04-2006, 07:05 PM
aahahah nevermind, im an idiot, i missed the path in the options :p
edit: still get the delete error message
Ranma2k
08-04-2006, 07:42 PM
aahahah nevermind, im an idiot, i missed the path in the options :p
edit: still get the delete error message
give me access to your forum and i'll help you
Hey i just upgade and i get this.. :(
Fatal error: Call to undefined function: array_combine() in /home/rmxs/domains/rmxs.gr/public_html/Vb/global.php on line 890
SOME ONE HELP ME PLZZZ
Blindchild02
08-04-2006, 08:18 PM
I deleted:
if (file_exists($imgthumbfile))
unlink($imgthumbfile);
and now i dont get the error
what about my error someone my site its close..
I thing that happent because i dont have php5 byt my site now its completely down
I remove and install the old version again and still the same..
The Chief
08-04-2006, 08:33 PM
When viewing all user's images, are like the recent images uploaded shown??
And also, is there a way to not show all those extra stuff when viewing a member's gallery, like can,t we just see the image and description (when it comes)? :)
Thanks so much for the update, will install when errors are confirmed to be fixed ;)
Charles
myetalk.com
Ranma2k
08-04-2006, 08:43 PM
Hey i just upgade and i get this.. :(
Fatal error: Call to undefined function: array_combine() in /home/rmxs/domains/rmxs.gr/public_html/Vb/global.php on line 890
SOME ONE HELP ME PLZZZ
i didn't change anything at the global.php file are you sure it's from the product ?!
try disabling the vbimghost and see if you still get this ..
Ranma2k
08-04-2006, 08:44 PM
I deleted:
and now i dont get the error
you removed the thumbnail deleation ..
wonder why it causes you errors ?! it shouldn't
Ranma2k
08-04-2006, 08:45 PM
When viewing all user's images, are like the recent images uploaded shown??
And also, is there a way to not show all those extra stuff when viewing a member's gallery, like can,t we just see the image and description (when it comes)? :)
Thanks so much for the update, will install when errors are confirmed to be fixed ;)
Charles
myetalk.com
you mean in the admincp ?!
you want it to be shown like the curent view in the main script ?!
finally its this https://vborg.vbsupport.ru/showthread.php?t=119491&highlight=%24newsarray+%3D+array_combine%28%24news ids%2C+%24newsinfo%29%3B
I dont know how byt after the upgade something change and make me trouble i disable this and works FINE...
byt i thing both of them cannot work :(
Now something else how can i make the text watermak bigger because its too small.. :(
Ranma2k
08-04-2006, 09:00 PM
finally its this https://vborg.vbsupport.ru/showthread.php?t=119491&highlight=%24newsarray+%3D+array_combine%28%24news ids%2C+%24newsinfo%29%3B
I dont know how byt after the upgade something change and make me trouble i disable this and works FINE...
byt i thing both of them cannot work :(
Now something else how can i make the text watermak bigger because its too small.. :(
glad it wasn't my fault :P
I fount it finally its the Unread news https://vborg.vbsupport.ru/showthread.php?t=119491&highlight=%24newsarray+%3D+array_combine%28%24news ids%2C+%24newsinfo%29%3B
after the upgade something change and doesnt work my site i dissable it and work...
I afraid cannot work together....
Ranma2k
08-04-2006, 09:01 PM
I Get this when uploading an image (shows at the top, then the watermark doesnt work)
then i get this after deleting:
OK found the problem ...
i used a wrong value ..
You can fix it by replacing the vbimghost.php in the forum directory with the one attached ..
Please everyone who download it should also replace the files with the one attached in the zip files
Another Uncached templates: vbimghost_popupload_pre (1)
and if i click [Open] on the Adding quick uplaod and gallaries box in new thread / reply
Open the box i can see how many pages there is byt i cannot see the images.. :(
Ranma2k
08-04-2006, 09:17 PM
rmxs please give me access to your forum so i can help you
Ranma2k
08-04-2006, 09:34 PM
Another Uncached templates: vbimghost_popupload_pre (1)
and if i click [Open] on the Adding quick uplaod and gallaries box in new thread / reply
Open the box i can see how many pages there is byt i cannot see the images.. :(
did you set the path to your forums in the vbimghost options ?!
and did you replace the file with the one in the zip file ?!
Blindchild02
08-04-2006, 10:16 PM
OK found the problem ...
i used a wrong value ..
You can fix it by replacing the vbimghost.php in the forum directory with the one attached ..
Please everyone who download it should also replace the files with the one attached in the zip files
perfect, thanks :)
The Chief
08-04-2006, 10:39 PM
you mean in the admincp ?!
you want it to be shown like the curent view in the main script ?!
Well you know where you click to view all the images hosted by all users..
You will see usernames (not in the admincp)
would there be a way to add a table with let's say the 10 latest images uploaded?
Thanks for the updates btw! :)
Blindchild02
08-05-2006, 03:30 AM
hm, is there a way to display the images like this:
https://vborg.vbsupport.ru/
or am I going to have to custom code it :p?
if so, which template?
EDIT: nevermind, just did a little tweaking :)
https://vborg.vbsupport.ru/
Ranma2k
08-05-2006, 05:17 AM
hm, is there a way to display the images like this:
http://www.imgjump.com/uploads/343imgss.gif
or am I going to have to custom code it :p?
if so, which template?
EDIT: nevermind, just did a little tweaking :)
http://www.imgjump.com/uploads/5695facerecog2.jpg
Well it was the old way :)
i should put it back XD
Ranma2k
08-05-2006, 05:18 AM
Well you know where you click to view all the images hosted by all users..
You will see usernames (not in the admincp)
would there be a way to add a table with let's say the 10 latest images uploaded?
Thanks for the updates btw! :)
i got what you mean ..
i'll work on it
Blindchild02
08-05-2006, 05:36 AM
i like it much better horizontally :)
did you set the path to your forums in the vbimghost options ?!
and did you replace the file with the one in the zip file ?!
You have PM..
I have uload everything...
Also about the text watermark..Its possible to make bigger the letters..Its tiny now LOL
Ranma2k
08-05-2006, 07:00 AM
a new ver will be released in 1-2 hour (1.4.1 )
it contain fix for filmstrip ( it doesn't work right :P ? )
and i have added the font size and the display option
Ranma2k
08-05-2006, 08:10 AM
Really sorry for the delay and for the errors ..
the new ver is up it's highly recommended that you update to the latest ver
BRAVO :)
You are very fast and thanks for the fixes :)
Ranma2k
08-05-2006, 08:39 AM
BRAVO :)
You are very fast and thanks for the fixes :)
your welcome :)
LOL im again here :P
I select center for Watermark Location byt it still its right down
Ranma2k
08-05-2006, 09:18 AM
LOL im again here :P
I select center for Watermark Location byt it still its right down
sorry attached the wrong file ..
replace the files with the one in the zip file
sorry again
klaush
08-05-2006, 10:20 AM
Another gread Update! Thanks!
One Question. Where can i finde the phrase: [Offen] ?
Ranma2k
08-05-2006, 10:53 AM
Another gread Update! Thanks!
One Question. Where can i finde the phrase: [Offen] ?
eh ?! offen ?!
where is it defined ?!
klaush
08-05-2006, 11:03 AM
eh ?! offen ?!
where is it defined ?!
Under the editor?
Ranma2k
08-05-2006, 11:47 AM
Under the editor?
under the editor there is only open and Quick upload
do you mean open !? it's the default one in the vbulletin ( open )
As for quick upload it's ( vbimghost_quickup )
tandy
08-06-2006, 11:25 AM
Rebuilding Thumbnails
Thumbnail Not created for gloria-ninja-avatar-clara-y.jpg
Thumbnail Not created for film2.jpg
Thumbnail Not created for gloria-ninja-avatar-clara-y.jpg
Thumbnail Not created for film2.jpg
Fatal error: Call to undefined function: imagecreatefromjpeg() in c:\easyphp1-8\www\forum\includes\vbimghost_include.php on line 53
I have this error only when thumbnails are activated and that one when i upload an image with thumbnails activated.
Fatal error: Call to undefined function: imagecreatefromjpeg() in c:\easyphp1-8\www\forum\includes\vbimghost_include.php on line 53
Ranma2k
08-06-2006, 08:15 PM
I have this error only when thumbnails are activated and that one when i upload an image with thumbnails activated.
Tandy,
the first one is not a bug .. it's normal
some of the images you can't create thumbnail to it there is alot of reasons for that such as that the image size ( dimention ) is smaller than the thumbnail it self
as for the second one it depends does it always happen when you get upload a specified image or what ?
tandy
08-06-2006, 08:59 PM
Tandy,
the first one is not a bug .. it's normal
some of the images you can't create thumbnail to it there is alot of reasons for that such as that the image size ( dimention ) is smaller than the thumbnail it self
as for the second one it depends does it always happen when you get upload a specified image or what ?
Both case happen with any image bigger than the size i put for thumbnails.
If i don't activate the thumbnails everything goes well.
On my other server i have the version 3.1 of your marvelous hack, and the only problem i had with the sames images was $imageDirectory and $thumbDirectory, i tried everything to give the path of imagehosting directory but finally i hard coded it in the software
Ranma2k
08-06-2006, 09:05 PM
Both case happen with any image bigger than the size i put for thumbnails.
If i don't activate the thumbnails everything goes well.
On my other server i have the version 3.1 of your marvelous hack, and the only problem i had with the sames images was $imageDirectory and $thumbDirectory, i tried everything to give the path of imagehosting directory but finally i hard coded it in the software
can you give me access to the forum and i'll help you with your prbolem
one thing
if you are using windows hosting
set the path as follow
c:/path/to/vb
no trailing slash
and set the name of the directory
also GD should be installed with PHP
blowndeadline
08-07-2006, 03:23 AM
The watermark feature doesn't seem to be working, either text or image. Plus getting some odd text output at the top when i add an image:
Warning: imagecreatefromjpeg(/home/user/public_html/vb/imagehosting/144d6bf447a2df.jpg): failed to open stream: No such file or directory in /includes/vbimghost_include.php on line 176
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagecreatetruecolor(): Invalid image dimensions in /includes/vbimghost_include.php on line 177
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecopy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecolorallocate(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 190
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 199
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 200
Warning: imagestring(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 202
Warning: imagejpeg(): supplied argument is not
Couldn't catch the rest, page refreshed too fast. However, the image is correctly added?!?!? Just no watermark.
Thanks,
Mike
Ranma2k
08-07-2006, 03:45 AM
The watermark feature doesn't seem to be working, either text or image. Plus getting some odd text output at the top when i add an image:
Warning: imagecreatefromjpeg(/home/user/public_html/vb/imagehosting/144d6bf447a2df.jpg): failed to open stream: No such file or directory in /includes/vbimghost_include.php on line 176
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagecreatetruecolor(): Invalid image dimensions in /includes/vbimghost_include.php on line 177
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecopy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecolorallocate(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 190
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 199
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 200
Warning: imagestring(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 202
Warning: imagejpeg(): supplied argument is not
Couldn't catch the rest, page refreshed too fast. However, the image is correctly added?!?!? Just no watermark.
Thanks,
Mike
your site url is ?!
and is that in the admincp ?
Ranma2k
08-07-2006, 04:32 AM
Please all note that the script requires GD 2.0.1 or later (2.0.28 or later is recommended).
WeArab
08-07-2006, 08:29 AM
Hello,
Great add-on, thank you!:D
When VB 3.6.0 would be supported?
Regards,
Arabian
Arab Portal Network
http://www.WeArab.Net/
Ranma2k
08-07-2006, 09:41 AM
Hello,
Great add-on, thank you!:D
When VB 3.6.0 would be supported?
Regards,
Arabian
Arab Portal Network
http://www.WeArab.Net/
it will be released this week
Eagle Creek
08-07-2006, 12:48 PM
I can't find in the screenshots where I can add/change the allowed usergroups.
Cause I only want admins/smods/mods to use this feature.
tandy
08-07-2006, 01:36 PM
can you give me access to the forum and i'll help you with your prbolem
one thing
if you are using windows hosting
set the path as follow
c:/path/to/vb
no trailing slash
and set the name of the directory
also GD should be installed with PHP
Sorry, i found the bug, GD library was disable.
Everything work fine now.
The Chief
08-07-2006, 05:57 PM
This is an error I recieved when installing the new version (got this by email)
Invalid SQL:
Select imgid,imgfile,imgname,thumbname,imgfilesize,imgwid th,imgheight,imgdate,imgprivate FROM vbimghost Where imgprivate=0 AND userid=11404 ORDER by imgdate LIMIT 0,5;
MySQL Error : Unknown column 'thumbname' in 'field list'
Error Number : 1054
Date : Monday, August 7th 2006 @ 02:39:10 PM
Script : http://forums.myetalk.com/vbimghost.php?do=viewimages&id=11404
Referrer : http://forums.myetalk.com/member.php?u=11404
What's this error??
klaush
08-07-2006, 06:11 PM
under the editor there is only open and Quick upload
do you mean open !? it's the default one in the vbulletin ( open )
As for quick upload it's ( vbimghost_quickup )
Sorry, stupid from me!
Found it! Thanks!
Ranma2k
08-07-2006, 08:11 PM
This is an error I recieved when installing the new version (got this by email)
Quote:
Invalid SQL:
Select imgid,imgfile,imgname,thumbname,imgfilesize,imgwid th,imgheight,imgdate,imgprivat e FROM vbimghost Where imgprivate=0 AND userid=11404 ORDER by imgdate LIMIT 0,5;
MySQL Error : Unknown column 'thumbname' in 'field list'
Error Number : 1054
Date : Monday, August 7th 2006 @ 02:39:10 PM
Script : http://forums.myetalk.com/vbimghost....mages&id=11404
Referrer : http://forums.myetalk.com/member.php?u=11404
What's this error??
upload the product again chief
and allow the overwrite
it will alter the table to add the field :)
or you can just run the following Quary in your database
ALTER TABLE " . TABLE_PREFIX . "vbimghost ADD thumbname VARCHAR( 250 ) NOT NULL AFTER imgname
remmber to replace TABLE_PREFIX with the on you set in the config.php
The Chief
08-07-2006, 08:54 PM
upload the product again chief
and allow the overwrite
it will alter the table to add the field :)
or you can just run the following Quary in your database
ALTER TABLE " . TABLE_PREFIX . "vbimghost ADD thumbname VARCHAR( 250 ) NOT NULL AFTER imgname
remmber to replace TABLE_PREFIX with the on you set in the config.php
Ok, I just did, hope it works out ;)
Ranma2k
08-07-2006, 09:37 PM
Ok, I just did, hope it works out ;)
let me know how it goes
The Chief
08-08-2006, 01:02 AM
All seems to work fine.
Would it be possible to display the number of views of the images, and then display the top 10 images on another page or something? :D
Let us know if this is possible!
Thanks much!! :)
Charles
myetalk.com
Eagle Creek
08-08-2006, 01:08 AM
I can't find in the screenshots where I can add/change the allowed usergroups.
Cause I only want admins/smods/mods to use this feature.
Anyone?
Ranma2k
08-08-2006, 04:48 AM
Anyone?
Ah .. sorry i didn't include it in the screenshot
here it is attached
you can control each usergroup
Ranma2k
08-08-2006, 04:51 AM
All seems to work fine.
Would it be possible to display the number of views of the images, and then display the top 10 images on another page or something? :D
Let us know if this is possible!
Thanks much!! :)
Charles
myetalk.com
yes it's posible .. and will include it in the next release
So next release will have
1- remote server hosting.
2- comment system.
3- statics ( number of views )
anyone want to add anything !?
Kmaster
08-08-2006, 05:01 AM
yes it's posible .. and will include it in the next release
So next release will have
1- remote server hosting.
2- comment system.
3- statics ( number of views )
anyone want to add anything !?
great addtion features, plz do it.
Eagle Creek
08-08-2006, 12:18 PM
Ah .. sorry i didn't include it in the screenshot
here it is attached
you can control each usergroup
Thankyou!
toolblast
08-08-2006, 01:18 PM
Wow Ranma2k. Thats all I have to say.
This is the quality of a commercial hack and is exactly what I was looking for. Photopost is way too cluttered with crap. Your gallery is perfect... gives member's their own gallery, easy to use, nice interface, solid coding.
I applaude you my friend.
Darat
08-08-2006, 01:38 PM
Been using this for a long time and my members pretty much require it - has anyone upgrade from 3.5.4 to 3.6 with this installed?
toolblast
08-08-2006, 01:44 PM
I was about to ask the same question...
I have 3.6 installed and I am about to install this hack... but I am not sure if it will work and dont want to install it if it isn't.
You meantioned that you were going to port this hack to 3.6? Does it require a port or can this current version run fine on 3.6?
The Chief
08-08-2006, 04:19 PM
yes it's posible .. and will include it in the next release
So next release will have
1- remote server hosting.
2- comment system.
3- statics ( number of views )
anyone want to add anything !?
Lookin good, like I said, also something to see the top views, maybe a picture rating? :D
Thanks much once more!!
Charles
myetalk.com
Ranma2k
08-08-2006, 05:58 PM
Been using this for a long time and my members pretty much require it - has anyone upgrade from 3.5.4 to 3.6 with this installed?
dart ver 1.0 for 3.6 will be released tomorrow
Ranma2k
08-08-2006, 06:00 PM
I was about to ask the same question...
I have 3.6 installed and I am about to install this hack... but I am not sure if it will work and dont want to install it if it isn't.
You meantioned that you were going to port this hack to 3.6? Does it require a port or can this current version run fine on 3.6?
well in order to upgrade you'll need to have 1.4.1 installed
that way you can uninstall the hack without losing the date
then you can install ver 1.0
there is no much diffrence you can actully use 1.4.1 to install it on ver 3.6.0 you'll just need to redo the thumbnails :)
toolblast
08-08-2006, 06:54 PM
well in order to upgrade you'll need to have 1.4.1 installed
that way you can uninstall the hack without losing the date
then you can install ver 1.0
there is no much diffrence you can actully use 1.4.1 to install it on ver 3.6.0 you'll just need to redo the thumbnails :)
Im confused... why would I install 1.4.1 and then install an older version, 1.0?
I haven't installed this hack yet, I am waiting for your 3.6 port of it. Once you release the port tomorrow, I will be sure to be the first one to install it on my 3.6 test forum :)!
PM me when you release the 3.6 port, thanks!
Ranma2k
08-08-2006, 07:21 PM
Im confused... why would I install 1.4.1 and then install an older version, 1.0?
I haven't installed this hack yet, I am waiting for your 2.6 port of it. Once you release the port tomorrow, I will be sure to be the first one to install it on my 2.6 test forum :)!
PM me when you release the 2.6 port, thanks!
i'm talking about the people who upgraded from 3.5.x with vbimghost intsalled and moved to 3.6.0
toolblast
08-08-2006, 07:26 PM
Alright sure :)
Ya, I just did a fresh 3.6 install... no 3.5
btw.. in my last post I meant '3.6' not '2.6' lol.
Blindchild02
08-09-2006, 04:35 AM
hm.... any idea how to have the quality be perfect after an upload? it seems to get a bit grainy, i have the quality set to 100
TomasDR
08-09-2006, 05:05 AM
Alright sure :)
Ya, I just did a fresh 3.6 install... no 3.5
btw.. in my last post I meant '3.6' not '2.6' lol.
I personally did a fresh install on 3.6 (since I uninstalled every hack before upgrading), everything seems to work except for viewing public user images which isn't a big problem for me since 99% of my user's pictures are set to private to post in threads. Though pictures are still viewable through the admincp.
I use this as an alternative to other photo hosting sites.
Also as a second note I am working on code right now to give to Ranma2k to allow the uploader to choose between two watermarks (light vs. dark) based on the picture at the request of my members.
TomasDR
08-09-2006, 05:08 AM
hm.... any idea how to have the quality be perfect after an upload? it seems to get a bit grainy, i have the quality set to 100
Turn off resizing completely and see if the picture is still grainy, depending on the reduction %, that could cause distortion.
Blindchild02
08-09-2006, 05:09 AM
resizing is off
tandy
08-09-2006, 06:31 AM
2 simples questions.
How do you switch from normal to filmstrip?
How and where do you see the last 5 ones?
Ranma2k
08-09-2006, 06:33 AM
2 simples questions.
How do you switch from normal to filmstrip?
How and where do you see the last 5 ones?
all can be done from the vbimghost options
Ranma2k
08-09-2006, 11:29 AM
port to vb 3.6.0 is out
https://vborg.vbsupport.ru/showthread.php?p=1048212
Blindchild02
08-09-2006, 12:09 PM
hm.... any idea how to have the quality be perfect after an upload? it seems to get a bit grainy, i have the quality set to 100
any help ranma?
Ranma2k
08-09-2006, 04:13 PM
any help ranma?
what the settting for thumbs / resizing / watermark that you use ?
tbradham
08-09-2006, 04:15 PM
Awesome!! Many, many thanks, this is a huge improvement and a great hack!
A couple of questions:
What is the filmstrip?
In my memberinfo the five images is wider than the screen, is there a way to show smaller thumbnails?
How can I get the last five uploads on another page, like www.usjeeps.com?
Again, thanks for all of your hard work.
Blindchild02
08-09-2006, 04:16 PM
what the settting for thumbs / resizing / watermark that you use ?
i dont use thumbnails, i dont have resize on, and my watermark is a PNG:
http://www.carchops.com/imagehosting/carchops_watermark123.png
Ranma2k
08-09-2006, 04:23 PM
Awesome!! Many, many thanks, this is a huge improvement and a great hack!
A couple of questions:
What is the filmstrip?
In my memberinfo the five images is wider than the screen, is there a way to show smaller thumbnails?
How can I get the last five uploads on another page, like www.usjeeps.com?
Again, thanks for all of your hard work.
thee images in the filmstrip uses the tumbnails
go to admincp set the with/hieght for the thumbnail in the options and redo the thumbnails for all the images so it can work good with the film strip
Ranma2k
08-09-2006, 04:24 PM
i dont use thumbnails, i dont have resize on, and my watermark is a PNG:
http://www.carchops.com/imagehosting/carchops_watermark123.png
hmm this strange ..
can you show me the original image and the one uploaded
Blindchild02
08-09-2006, 04:30 PM
Original:
https://vborg.vbsupport.ru/
Mine:
https://vborg.vbsupport.ru/
look around the back rim, you can see its grainy
Ranma2k
08-09-2006, 04:46 PM
Original:
http://www.imgjump.com/uploads/6133blackmk4_rims.jpg
Mine:
http://www.carchops.com/imagehosting/144d973ab16bcf.jpg
look around the back rim, you can see its grainy
what is your PHP/GD version ?!
Blindchild02
08-09-2006, 04:58 PM
what is your PHP/GD version ?!
not sure, how do I find out?
Ranma2k
08-09-2006, 05:02 PM
not sure, how do I find out?
in admincp => Maintenance => View PHP info
in that page you'll find php ver and the GD
Blindchild02
08-09-2006, 05:29 PM
PHP Version: 4.4.2
GD Version: bundled (2.0.28 compatible)
Eagle Creek
08-09-2006, 08:50 PM
Is it also possible to upload VIDEOfiles?
Ranma2k
08-09-2006, 09:05 PM
Is it also possible to upload VIDEOfiles?
No eagle,
if you want to upload video files may i recomend links and download manager https://vborg.vbsupport.ru/showthread.php?t=91107
Ranma2k
08-09-2006, 09:10 PM
PHP Version: 4.4.2
GD Version: bundled (2.0.28 compatible)
that's really strange
only thins posible is the watermark
i'll check it out and see why it's reducing images
Blindchild02
08-09-2006, 10:49 PM
I removed the watermark, and nothing changed :(
Ranma2k
08-09-2006, 10:57 PM
I removed the watermark, and nothing changed :(
now this is strange cuz upload will only copy the file to the curent directory without changing the file ..
Blindchild02
08-09-2006, 11:32 PM
any suggestions as to what options to change
Blindchild02
08-10-2006, 03:14 AM
how can I make the thumbnails in the filmstrip smaller?
Eagle Creek
08-10-2006, 07:26 AM
No eagle,
if you want to upload video files may i recomend links and download manager https://vborg.vbsupport.ru/showthread.php?t=91107
Thankyou :).
Darat
08-10-2006, 10:09 AM
:ermm: ...deleted...
I'm an idiot - sorry - as usual the apparent problem with Ranma2k's great mod was a user-error! :o
Darat
08-10-2006, 10:28 AM
By the way what is the "Flimstrip" option?
Ranma2k
08-10-2006, 11:20 AM
By the way what is the "Flimstrip" option?
Dart,
The filmstrip will show the pics the user have in a row way under the displayed Pic so you can brows around the user images
Blindchild02
08-10-2006, 04:52 PM
how can I make the thumbnails in the filmstrip smaller?
:confused:
Ranma2k
08-10-2006, 05:46 PM
:confused:
it depends on the thumbnail size
how big did you set the thumbnail ?
for me 120*120 is good
Blindchild02
08-10-2006, 07:59 PM
well i lowered the thumbnail size, and it didnt do anything to the currently uploaded images..
but does the thumbnail size edit just the pics that are being shown? or does it also set the size for the bb thumbnail code?
The Chief
08-11-2006, 12:03 AM
here are the errors I am getting now when I am uploading a picture.
It is still uploading but it's not inseting the watermark:
Warning: getimagesize(): open_basedir restriction in effect. File(/home/user/public_html/forums/imagehosting/myetalk_watermark.png) is not within the allowed path(s): (/tmp::/usr:/usr/lib/php:/home/myetalk.com) in /includes/vbimghost_include.php on line 222
Warning: getimagesize(/home/user/public_html/forums/imagehosting/myetalk_watermark.png): failed to open stream: Operation not permitted in /includes/vbimghost_include.php on line 222
The Chief
08-11-2006, 12:06 AM
and these are the errors I am getting when I select Text watermark:
Warning: imagecreatefromjpeg(): open_basedir restriction in effect. File(/home/user/public_html/forums/imagehosting/144dbd7bf35e57.jpg) is not within the allowed path(s): (/tmp::/usr:/usr/lib/php:/home/myetalk.com) in /includes/vbimghost_include.php on line 176
Warning: imagecreatefromjpeg(/home/user/public_html/forums/imagehosting/144dbd7bf35e57.jpg): failed to open stream: Operation not permitted in /includes/vbimghost_include.php on line 176
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagecreatetruecolor(): Invalid image dimensions in /includes/vbimghost_include.php on line 177
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecopy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecolorallocate(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 190
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 199
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 200
Warning: imagestring(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 202
Warning: imagejpeg(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 210
Warning: imagedestroy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 211
Darat
08-11-2006, 07:48 AM
Dart,
The filmstrip will show the pics the user have in a row way under the displayed Pic so you can brows around the user images
I'm probably being a complete idiot but I don't see the filmstrip anywhere?
Also I've added the "Adding quick upload and gallaries box in new thread / reply?" add-on and there is a problem when creating a new PM. When creating a new thread or post it shows the "replybox" below, but when creating a new PM the "Open" link doesn't show (see "pmbox" below).
Ranma2k
08-11-2006, 08:45 AM
and these are the errors I am getting when I select Text watermark:
what is the path that you set in the options ?
Ranma2k
08-11-2006, 08:48 AM
I'm probably being a complete idiot but I don't see the filmstrip anywhere?
Also I've added the "Adding quick upload and gallaries box in new thread / reply?" add-on and there is a problem when creating a new PM. When creating a new thread or post it shows the "replybox" below, but when creating a new PM the "Open" link doesn't show (see "pmbox" below).
darat,
the phrase that uses open is in the global phrases
add me in msn (waiel[at]waieleid.com) so i can help you with it
The Chief
08-11-2006, 03:47 PM
what is the path that you set in the options ?
Imagehosting, everything was working fine before I upgraded, the image is uploaded correctly and the watermark is in the right folder...
but it's just not putting the watermark when people upload and it's giving an error...
Ranma2k
08-11-2006, 04:03 PM
Imagehosting, everything was working fine before I upgraded, the image is uploaded correctly and the watermark is in the right folder...
but it's just not putting the watermark when people upload and it's giving an error...
there is 2 things you need to set it correctly
1 path to the forum
and the image directory
i'm on msn if you need any help
Blindchild02
08-11-2006, 05:43 PM
hm, any way you could possibly add the 5 latest uploads to the forumhome?
Ranma2k
08-12-2006, 05:38 AM
hm, any way you could possibly add the 5 latest uploads to the forumhome?
here you go
just import the attached plugin
and add the following code in your forumhome template
<table class="tborder" align="center" border="0" cellpadding="6" cellspacing="1" width="100%">
<thead>
<tr>
<td class="tcat" colspan='$vbimghost[count]' align="center">$vbphrase[vbimghost_last5img] </td>
</tr>
</thead>
<tbody>
<tr align="center">
$vbimghost[last5]
</tr>
</tbody>
</table>
<br />
klaush
08-12-2006, 08:15 AM
Hello Ranma2k, we need one more issue for this fantastic stuff.
Non registered users can see all public images that where uploaded by registered users. Is it possible to restrict any usergroup to see or not to see?
I think it´s even important to reduce the serverload.
And one more thing. In the acp is the option to view member images. This is just working fine if i look for images with a specified membername. You give the option to show all images by all member if not emter a username - (enter "all" without quotes to view all pictures) -.
That option ist not working. It says "User did not upload any images".
Fresh install on 3.5.5.
Thanks for your help.
Ranma2k
08-12-2006, 08:47 AM
Hello Ranma2k, we need one more issue for this fantastic stuff.
Non registered users can see all public images that where uploaded by registered users. Is it possible to restrict any usergroup to see or not to see?
I think it?s even important to reduce the serverload.
And one more thing. In the acp is the option to view member images. This is just working fine if i look for images with a specified membername. You give the option to show all images by all member if not emter a username - (enter "all" without quotes to view all pictures) -.
That option ist not working. It says "User did not upload any images".
Fresh install on 3.5.5.
Thanks for your help.
well since the user set the pic to public anyone can view the images
As for adding view permission to each group I'll add it in the next ver
As for the view all
Just type all and it should work with you fine
is anyone else having the same problem ?!
cartooner
08-12-2006, 09:16 PM
yes it's posible .. and will include it in the next release
So next release will have
1- remote server hosting.
2- comment system.
3- statics ( number of views )
anyone want to add anything !?
Folders or a way to rearrange images would be nice...
cartooner
08-12-2006, 10:00 PM
...I just installed Imagehost 1.4.1 and see now that Vbulletin has released it's 3.6.0 version.
Can I upgrade to Vbulletin 3.6 without affecting Vbimghost 1.4.1,
Can I leave Vbimghost 1.4.1 installed when I do the 3.6 upgrade??
Ranma2k
08-13-2006, 04:18 AM
...I just installed Imagehost 1.4.1 and see now that Vbulletin has released it's 3.6.0 version.
Can I upgrade to Vbulletin 3.6 without affecting Vbimghost 1.4.1,
Can I leave Vbimghost 1.4.1 installed when I do the 3.6 upgrade??
yes
no problem
Blindchild02
08-13-2006, 07:00 PM
here's another example of how it optimizes quality :(
Original:
http://www.imgjump.com/uploads/7936nikon_dub1.jpg
Uploaded:
http://www.carchops.com/vbimghost.php?do=displayimg&imgid=72
tandy
08-13-2006, 07:05 PM
What's about this error, when we do a copy/paste from the the window opened via editbox, and click on thumbnail in the final message, that give page not found and this "javascript:void(0)"
Ranma2k
08-13-2006, 08:17 PM
here's another example of how it optimizes quality :(
Original:
http://www.imgjump.com/uploads/7936nikon_dub1.jpg
Uploaded:
http://www.carchops.com/vbimghost.php?do=displayimg&imgid=72
can you try to upload without the watermark and show it to us ?
Ranma2k
08-13-2006, 08:18 PM
What's about this error, when we do a copy/paste from the the window opened via editbox, and click on thumbnail in the final message, that give page not found and this "javascript:void(0)"
copy paste ?!
your not suppose to copy and past
just click on the image and it will add itself in the editor
Blindchild02
08-13-2006, 08:47 PM
<a href="http://www.carchops.com/vbimghost.php?do=displayimg&imgid=81" target="_blank">http://www.carchops.com/vbimghost.ph...ayimg&imgid=81</a>
hmmmm, seems to be better, i turned off thumbnail & watermark
What does the thumbnail option do? is that for posting thumbnail images?
edit: ok, it's definately the watermark... any suggestion on how to fix?
edit2: ok, seems to lower the quality even with the text watermark...
Ranma2k
08-14-2006, 04:45 AM
http://www.carchops.com/vbimghost.php?do=displayimg&imgid=81
hmmmm, seems to be better, i turned off thumbnail & watermark
What does the thumbnail option do? is that for posting thumbnail images?
edit: ok, it's definately the watermark... any suggestion on how to fix?
edit2: ok, seems to lower the quality even with the text watermark...
Found the problem
it's only happens with Jpeg files
to fix this
Open vbimghost_include.php ( which is under the include folder )
find
imagejpeg($img,$imgdir."/".$imgname);
and replace it with
imagejpeg($img,$imgdir."/".$imgname,100);
Blindchild02
08-14-2006, 04:55 AM
beautiful :) thanks so much!!
DannyITR
08-14-2006, 03:47 PM
This looks fantastic. I'm a photopost customer and I haven't even released it to my users because I hate it so much. I'll give this a shot later today. I'm also crossing my fingers for a comment & rating upgrade because it'll turn the forum into somewhat of a social netwokring thing.
Toolblast: you need to combine your profile hack with this or something.
The Chief
08-14-2006, 05:49 PM
here you go
just import the attached plugin
and add the following code in your forumhome template
<table class="tborder" align="center" border="0" cellpadding="6" cellspacing="1" width="100%">
<thead>
<tr>
<td class="tcat" colspan='$vbimghost[count]' align="center">$vbphrase[vbimghost_last5img] </td>
</tr>
</thead>
<tbody>
<tr align="center">
$vbimghost[last5]
</tr>
</tbody>
</table>
<br />
Can this plugin be added for the main gallery page (http://forums.myetalk.com/vbimghost.php?do=userlist)?
DannyITR
08-14-2006, 08:41 PM
Not sure what the prob is but I installed it on 3.6 and I just get blank images in the galleries that I can't even delete.
Edit>>> never mind, i didn't chmod upload dir to 777
Ranma2k
08-14-2006, 08:44 PM
Not sure what the prob is but I installed it on 3.6 and I just get blank images in the galleries that I can't even delete. Whats up with that?
ahh this is fro ver 3.5.x
the one for ver 3.6.x is here https://vborg.vbsupport.ru/showthread.php?p=1048212
still you can use this but if you want me to help you with your problem
PM me your forum access
Ranma2k
08-14-2006, 08:52 PM
Can this plugin be added for the main gallery page (http://forums.myetalk.com/vbimghost.php?do=userlist)?
yes it can be added
PM me if you want it urgently
DannyITR
08-15-2006, 02:18 AM
here you go
just import the attached plugin
and add the following code in your forumhome template
<table class="tborder" align="center" border="0" cellpadding="6" cellspacing="1" width="100%">
<thead>
<tr>
<td class="tcat" colspan='$vbimghost[count]' align="center">$vbphrase[vbimghost_last5img] </td>
</tr>
</thead>
<tbody>
<tr align="center">
$vbimghost[last5]
</tr>
</tbody>
</table>
<br />
Hello,
I tried using this on my VB Advanced CMPS homepage by making a new template module with your code. Unfortunately it didn't show up. Any thoughts on what would be needed ot make it work. Works fine on my forum homepage though.
Ranma2k
08-15-2006, 05:35 AM
Hello,
I tried using this on my VB Advanced CMPS homepage by making a new template module with your code. Unfortunately it didn't show up. Any thoughts on what would be needed ot make it work. Works fine on my forum homepage though.
you'll need to make a module with the code in the plugin
and load it in VB advanced CMPS in order to work
DannyITR
08-15-2006, 11:35 AM
you'll need to make a module with the code in the plugin
and load it in VB advanced CMPS in order to work
Thanks for the reply,
I tried to put the plugin code in a template but I don't think its compatible because it gave me an error when I saved it so I tried a php file module instead of a template based module but the photos still didn't show up.
Are you able to be more specific about how the code must be included for it to work?
Ranma2k
08-15-2006, 12:10 PM
Thanks for the reply,
I tried to put the plugin code in a template but I don't think its compatible because it gave me an error when I saved it so I tried a php file module instead of a template based module but the photos still didn't show up.
Are you able to be more specific about how the code must be included for it to work?
you need to create a php file with the code of hte blugin in it
and add it under the module folder for vb advacned CMPS
DannyITR
08-15-2006, 02:11 PM
you need to create a php file with the code of hte blugin in it
and add it under the module folder for vb advacned CMPS
As I mentioned, I have done the php file module with the plugin code but all I get is the actual code being outputed on my homepage. Are you sure there is not more to this (perhaps with regard to the code that was supposed to be pasted in the forum home)? I've tried everything I can think of.
Edit: Got it!!
In order for it to work, I had to add a php opening and closing tags to the beginning and end of the plugin code. Just the code itself wont be recognized. Also you need to include a template with the code that was placed on forumhome and include that in the module as well.
offline
08-15-2006, 04:13 PM
Awesome hack! I hate to be a complete idiot but how do I get rid of the arrow pointing down next to the the "VB Image Host" in the navbar? Its the only item on the nav bar with an the arrow.
Thanks a million again for the hack!
DannyITR
08-15-2006, 04:29 PM
Sorry if I'm a pest but I have another question. I figured out how to display more than just the last 5 images by modifying the php file. What I can't figure out is how to make it so that after the first 5 images, it starts a new row. I want to have three rows of 5 images. Do you know how to do this?
Ranma2k
08-16-2006, 09:24 AM
Sorry if I'm a pest but I have another question. I figured out how to display more than just the last 5 images by modifying the php file. What I can't figure out is how to make it so that after the first 5 images, it starts a new row. I want to have three rows of 5 images. Do you know how to do this?
yes just put a counter that will add
</tr>
<tr>
after each 5
did you mange to get it to work in a module ?
DannyITR
08-16-2006, 03:04 PM
yes just put a counter that will add
</tr>
<tr>
after each 5
did you mange to get it to work in a module ?
Yep, got the module working no prob. :D
I'm a bit of a novice and don't know to add the counter.
Here is part of another similar hack for photopost images. I imagine it would be similar to what I'm looking for but I don't know wnough to adapt this to vbimagehost ;(
PPPRINT;
$counted++;
$countcol++;
}
// If we've reached our limit, quit
if ( $counted == $num_display ) break;
// If we need to end the column, do so.
if ( $countcol == $columns ) {
$featured .= <<<PPPRINT
</tr>
<tr>
PPPRINT;
$countcol = 0;
}
}
@mysql_free_result($result);
The Chief
08-16-2006, 05:17 PM
Can you tell us when the plugin for the forumhome images work for the member photos list, or when the plugin will be ready? :)
ReuMi
08-18-2006, 02:27 PM
great job, works perfectly on my board :)
Thank you so much
GoldenP51
08-18-2006, 11:13 PM
Thanks!
The Chief
08-21-2006, 09:05 PM
Can you tell us when the plugin for the forumhome images work for the member photos list, or when the plugin will be ready? :)
Any updates on this Ranma? :)
Ranma2k
08-23-2006, 04:49 PM
Any updates on this Ranma? :)
sorry the chief for the late reply
i did the modfication but curently i'm away from town ..
and most of the files are on my PC
so i'm thinking of releasesing a fix for some of the reported bugs and add some more plugins it won't be a major relase
tbradham
08-24-2006, 12:39 PM
Has anyone figured out a way to allow the members to browse all the photos in one place?
Now they have to view all members, then click on the individual account, I want them to be able to browse all the pictures, regardless of whose they are.
Like a photo album view or something.
Fewski
08-24-2006, 02:53 PM
Looks great! Only 1 problem I see, my statics section on the image upload page background is all black and the text is dark grey, you can't read it.
Any fix for this?
Thanks
Ranma2k
08-24-2006, 02:59 PM
Looks great! Only 1 problem I see, my statics section on the image upload page background is all black and the text is dark grey, you can't read it.
Any fix for this?
Thanks
yes modify the template for it ..
Ranma2k
08-24-2006, 03:00 PM
Has anyone figured out a way to allow the members to browse all the photos in one place?
Now they have to view all members, then click on the individual account, I want them to be able to browse all the pictures, regardless of whose they are.
Like a photo album view or something.
i'll add it in the next ver
tbradham
08-24-2006, 03:01 PM
That would be awesome, thanks!
Fewski
08-24-2006, 04:07 PM
yes modify the template for it ..
Where do I modify it at?
Ranma2k
08-26-2006, 12:15 PM
Where do I modify it at?
read this
https://vborg.vbsupport.ru/showpost.php?p=1059514&postcount=109
GoNz00
08-28-2006, 10:35 AM
great hack thanks :D
Viol8or
08-30-2006, 11:28 AM
Great hack, but I have a feature request.
* It would be nice if it were possible to set watermark on/off per usergroup.
* A comment line per picture would be nice as well, so members can describe the picture if they wish.
Also I had some probs with transparent png and resizing/watermarks that it didn't retain the transparancy.
Update: I'm having problems uploaden pictures bigger than a 1000 pixels ... it gives the users a white page without an error, but pic is not uploaden. Config settings allows uploaden of 1280*1280 pictures and filesizes are a lot smaller than the allowed size. Any ideas?
VietPirates
09-03-2006, 09:02 AM
How about hotlinks with thumbnails only? No hotlinks with the original images.
Each thumbnail is linked to a php page hosting its original image (like imageshack.)
klaush
09-03-2006, 11:13 AM
Hello Ranma2k,
could you help us with solving one problem when showing all member fotos?
We just went to a new server with the whole installation; so everything went fine but...
https://vborg.vbsupport.ru/external/2006/09/10.jpg
You see in the first line 7 images but no member/user?
Any idea how to fix this?
Thanks!
Kaasie
09-05-2006, 04:47 AM
I have installed this hack for 3.6.0 and i totally love it.
Just one little question: I would like to have the userlist to be members only
Could you tell me where I should add what code, where to achieve that?
It would totally rock if we could get it members only
For the people that are suffering bandwidth theft please save the following code to be sure the picture files are only valid on it's own domain (on any other it will result in a nice red-crossed failure)
change yourdomain.com with your domain and save as .htacces
upload the file to the picture's directory on your domain
SetEnvIfNoCase Referer "^http://www.yourdomain.com/" locally_linked=1
SetEnvIfNoCase Referer "^http://www.yourdomain.com$" locally_linked=1
SetEnvIfNoCase Referer "^http://yourdomain.com/" locally_linked=1
SetEnvIfNoCase Referer "^http://yourdomain.com$" locally_linked=1
SetEnvIfNoCase Referer "^$" locally_linked=1
<FilesMatch "\.(|bmp|gif|png|jpg|jpe?g)$">
Order Allow,Deny
Allow from env=locally_linked
</FilesMatch>
cheers
Ranma2k
09-05-2006, 08:47 AM
Great hack, but I have a feature request.
* It would be nice if it were possible to set watermark on/off per usergroup.
* A comment line per picture would be nice as well, so members can describe the picture if they wish.
Also I had some probs with transparent png and resizing/watermarks that it didn't retain the transparancy.
Update: I'm having problems uploaden pictures bigger than a 1000 pixels ... it gives the users a white page without an error, but pic is not uploaden. Config settings allows uploaden of 1280*1280 pictures and filesizes are a lot smaller than the allowed size. Any ideas?
i can uplod bigger than 1000 px i even tried 1280 px and it worked fine
pm me access to your board and i'll see what's the problem
Ranma2k
09-05-2006, 08:48 AM
Hello Ranma2k,
could you help us with solving one problem when showing all member fotos?
We just went to a new server with the whole installation; so everything went fine but...
https://vborg.vbsupport.ru/external/2006/09/10.jpg
You see in the first line 7 images but no member/user?
Any idea how to fix this?
Thanks!
the first 7 are for the guest users
it should display the word ( guest ) in there
is the vbphrase for guest is in your board phrase/language !?
Ranma2k
09-05-2006, 08:49 AM
I have installed this hack for 3.6.0 and i totally love it.
Just one little question: I would like to have the userlist to be members only
Could you tell me where I should add what code, where to achieve that?
It would totally rock if we could get it members only
For the people that are suffering bandwidth theft please save the following code to be sure the picture files are only valid on it's own domain (on any other it will result in a nice red-crossed failure)
change yourdomain.com with your domain and save as .htacces
upload the file to the picture's directory on your domain
SetEnvIfNoCase Referer "^http://www.yourdomain.com/" locally_linked=1
SetEnvIfNoCase Referer "^http://www.yourdomain.com$" locally_linked=1
SetEnvIfNoCase Referer "^http://yourdomain.com/" locally_linked=1
SetEnvIfNoCase Referer "^http://yourdomain.com$" locally_linked=1
SetEnvIfNoCase Referer "^$" locally_linked=1
<FilesMatch "\.(|bmp|gif|png|jpg|jpe?g)$">
Order Allow,Deny
Allow from env=locally_linked
</FilesMatch>
cheers
this will be avilable as an option in the next ver
cartooner
09-07-2006, 03:43 PM
Dumb Question...I have a member who has some pretty nasty pics in his collection. He has his set at Public. As ADMIN is there anyway I can set his to Private??
He hasn't been on the forum for a while and if I can't change it from Public to Private I'll have to email asking him to change it..
TY Ranma and you are doing a great job. My members love this hack.
MarkyD
09-09-2006, 02:51 AM
I just upgraded to VB 3.60. I followed the upgrade directions for this Mod. I can access it like normal, but there are no images there when I click "view my images" or "view all users images." The folder with the images is still on the server, and it's correctly specified in the Options for the mod.
any ideas?
Ranma2k
09-09-2006, 05:55 AM
Dumb Question...I have a member who has some pretty nasty pics in his collection. He has his set at Public. As ADMIN is there anyway I can set his to Private??
He hasn't been on the forum for a while and if I can't change it from Public to Private I'll have to email asking him to change it..
TY Ranma and you are doing a great job. My members love this hack.
no only member can set it as public / private
admin can only delete
tbradham
09-12-2006, 01:12 PM
Has anyone figured out a way to browse all pictures instead of browsing members? I would like to have an option in the menu to browse all members, and to browse all pictures.
How about a random photo block?
leeman
09-13-2006, 08:03 AM
Heya ...
I have installed this as the instructions say ... NO problems there.
But then ....
When I click the link in the navbar : Sorry no such page ...
and when i go into usergroupmanager ... No choises to allow ... :(
Help please ... I haev tried to search here but no good.
Ranma2k
09-13-2006, 09:10 AM
Heya ...
I have installed this as the instructions say ... NO problems there.
But then ....
When I click the link in the navbar : Sorry no such page ...
and when i go into usergroupmanager ... No choises to allow ... :(
Help please ... I haev tried to search here but no good.
did you upload the files?
in the correct way ?!
make sure you did upload everything ..
Ranma2k
09-13-2006, 09:11 AM
Has anyone figured out a way to browse all pictures instead of browsing members? I would like to have an option in the menu to browse all members, and to browse all pictures.
How about a random photo block?
hopefully next ver will have it all
leeman
09-13-2006, 09:26 AM
did you upload the files?
in the correct way ?!
make sure you did upload everything ..
I have reuploaded ALL file 3 times .... and SSH'd in and verified them as well ... :(
http://www.insanetrain.com/forums/vbimghost.php?do=myimages
No can do ...
And I se nuthin in admincp :(
======================================
Found an error now it works !!!!...
Gonna bug test it now ....
MadKad
09-13-2006, 03:03 PM
Hi great hack by the way i have installed this hack, all seems to work apart from to problems
first, when I upload an Image I get this error on the redirect
Warning: imagecreatefromjpeg(homepages/22/d122080877/htdocs/mkpitstop/forums/imagehosting/145082abd1be75.jpg) [function.imagecreatefromjpeg]: failed to open stream: No such file or directory in /includes/vbimghost_include.php on line 176
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagecreatetruecolor() [function.imagecreatetruecolor]: Invalid image dimensions in /includes/vbimghost_include.php on line 177
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecopy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecolorallocate(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 190
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 199
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 200
Warning: imagestring(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 202
Warning: imagejpeg(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 210
Warning: imagedestroy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 211
But the image does load, can you help on this.
Also all I am using this for is just to allow my users to host images and post these images anywhere, but I have set the watermark to text and my domain name, but this didnt show when I tested it, can you help on this matter also?
Thanks.
rolandogomez
09-13-2006, 05:31 PM
Beautiful Hack. I installed it for me to play with as admin, love it. Now, I wonder if you can add the following:
1. Instead of private, can we make the "private" fall back on registered users only, or certain user groups that can view the thumbs and images? I would like to have images that anyone can see but the option to restrict images to registered only members, or various member groups, like forum permissions.
2. Can we have it where it shows how many times an image has been viewed? My members will love this hack, but will hate it if they can't see how many times their images were viewed.
3. Can we make it were only certain members can hot link there images, in other words, only premium and not free members can use the actual image hosting on other sites. This would be a member permission radio button.
4. Can we have it where we can turn off the "file size", "Image Dimensions" and "Date Uploaded" in the Admin CP?
5. Can we have the option to "pay you" for "brand free?"
6. Can we get a slideshow mode?
I'm willing to pay you for custom work with your program. I would also like the ability to add some search features, such as zip code proximity, state and category search fields. Would need a search menu/page. Thanks, rg sends!
Sample: http://www.glamour1.com/forums/vbimghost.php?do=viewimages&id=1
Ranma2k
09-16-2006, 05:23 AM
I have reuploaded ALL file 3 times .... and SSH'd in and verified them as well ... :(
http://www.insanetrain.com/forums/vbimghost.php?do=myimages
No can do ...
And I se nuthin in admincp :(
======================================
Found an error now it works !!!!...
Gonna bug test it now ....
Pm me access to the site ftp and admincp
and i'll help you out ..
Ranma2k
09-16-2006, 05:25 AM
Hi great hack by the way i have installed this hack, all seems to work apart from to problems
first, when I upload an Image I get this error on the redirect
But the image does load, can you help on this.
Also all I am using this for is just to allow my users to host images and post these images anywhere, but I have set the watermark to text and my domain name, but this didnt show when I tested it, can you help on this matter also?
Thanks.
The image host requires GD 2 to be installed on the server to show up the images
as for the errors it's path error
if you still have problems PM me and i'll help you out
Ranma2k
09-16-2006, 05:32 AM
Beautiful Hack. I installed it for me to play with as admin, love it. Now, I wonder if you can add the following:
1. Instead of private, can we make the "private" fall back on registered users only, or certain user groups that can view the thumbs and images? I would like to have images that anyone can see but the option to restrict images to registered only members, or various member groups, like forum permissions.
2. Can we have it where it shows how many times an image has been viewed? My members will love this hack, but will hate it if they can't see how many times their images were viewed.
3. Can we make it were only certain members can hot link there images, in other words, only premium and not free members can use the actual image hosting on other sites. This would be a member permission radio button.
4. Can we have it where we can turn off the "file size", "Image Dimensions" and "Date Uploaded" in the Admin CP?
5. Can we have the option to "pay you" for "brand free?"
6. Can we get a slideshow mode?
I'm willing to pay you for custom work with your program. I would also like the ability to add some search features, such as zip code proximity, state and category search fields. Would need a search menu/page. Thanks, rg sends!
Sample: http://www.glamour1.com/forums/vbimghost.php?do=viewimages&id=1
I'll have a look and try to get most of your request done in the next release
Ski-Whiz
09-16-2006, 06:15 AM
Are there any plans to make a vbadvanced module for a random photo on the homepage?
Ranma2k
09-16-2006, 11:51 AM
Are there any plans to make a vbadvanced module for a random photo on the homepage?
yes
there will be also extra stuff to added
you'll see it in the installation file
rolandogomez
09-16-2006, 01:23 PM
Where's the "donation" button for your efforts? Thanks, Rolando.
Ranma2k
09-17-2006, 05:47 AM
Where's the "donation" button for your efforts? Thanks, Rolando.
it's free no need for donations ;)
rezapci
09-18-2006, 01:20 AM
I have an error
somebody help me! when I am uploading images
here we go:
Warning: imagecreatefromjpeg(): open_basedir restriction in effect. File(/home/user/public_html/forums/imagehosting/1450e01b88eba3.jpg) is not within the allowed path(s): (/home/alshia/:/usr/lib/php:/usr/local/lib/php:/tmp) in /includes/vbimghost_include.php on line 176
Warning: imagecreatefromjpeg(/home/user/public_html/forums/imagehosting/1450e01b88eba3.jpg): failed to open stream: Operation not permitted in /includes/vbimghost_include.php on line 176
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 177
Warning: imagecreatetruecolor(): Invalid image dimensions in /includes/vbimghost_include.php on line 177
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecopy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 178
Warning: imagecolorallocate(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 190
Warning: imagesx(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 196
Warning: imagesy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 197
Warning: imagestring(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 202
Warning: imagejpeg(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 210
Warning: imagedestroy(): supplied argument is not a valid Image resource in /includes/vbimghost_include.php on line 211
Problem solved, I had path to the forum... so I forget...
whomever having seam problem
go to > admincp>VB Image Host>Image Host Option>
The complete path to your forums directory (no trailing slash)
Unix ex. /home/user/public_html/forums
windwos ex. c:/apache/httdocs/forums
Ranma2k
09-18-2006, 07:19 AM
I have an error
somebody help me! when I am uploading images
here we go:
Problem solved, I had path to the forum... so I forget...
whomever having seam problem
go to > admincp>VB Image Host>Image Host Option>
The complete path to your forums directory (no trailing slash)
Unix ex. /home/user/public_html/forums
windwos ex. c:/apache/httdocs/forums
:) good that you figured it out :)
rolandogomez
09-19-2006, 04:30 PM
I'm just trying to get you to speed it up (grin). Thanks, great hack, can't wait for the updates, rg sends!
memomemo
09-20-2006, 01:51 PM
Hello
This random image very big.
What is shring image widht and height?
at least page in http://www.forumsitesi.info/forum/upload/index.php
here you go
just import the attached plugin
and add the following code in your forumhome template
<table class="tborder" align="center" border="0" cellpadding="6" cellspacing="1" width="100%">
<thead>
<tr>
<td class="tcat" colspan='$vbimghost[count]' align="center">$vbphrase[vbimghost_last5img] </td>
</tr>
</thead>
<tbody>
<tr align="center">
$vbimghost[last5]
</tr>
</tbody>
</table>
<br />
memomemo
09-20-2006, 02:00 PM
Ok I am find.
Plugin production vbimghost last 5 images forumhome edit
and
Find code : ['thumbsize']=0;
Change code : ['thumbsize']=50; 50 or 60 , 70 , 80
BUT This code how show on CMS portal index page?
memomemo
09-20-2006, 03:32 PM
No upload :
Error message : No file selected.
Please help
I have been tryin to make this work on the new thread page so far i have it pretty well set up i just have to figure out why it keeps tellin me to enter in a title/subject hopefully tomorrow when i get up and aint so tired i can get it or if someone wants to try to get it here is what i have so far... i been testing it out in the new thread template and hopefully tomorrow i can get it to work i may even try ajax or something to show the url right on that page...
<fieldset class="fieldset"><legend>Upload Your Images</legend>
<form method="post" action="vbimghost.php" enctype="multipart/form-data">
<table border="0" cellspacing="0" cellpadding="0">
<tr> <td> <b>Image to upload:</b><br />
<input class="bginput" type="file" name="upfile$count" size="30" /><br />
<input type="hidden" name="do" value="uploadfile" /><br />
<input class="bginput" type="submit" value="$vbphrase[vbimghost_hostit]" />
<input class="bginput" type="reset"value="$vbphrase[vbimghost_reset]" />
</td> </tr> </table> </form>
</fieldset>
memomemo
09-20-2006, 04:01 PM
Ok I am find.
upfile$count > upfile0$count
Cms portal and forumhome good working :)
demo : www.forumsitesi.info
------------------------------------
full code :
<fieldset class="fieldset"><legend>Resim Y?kleyin</legend>
<form method="post" action="upload/vbimghost.php" enctype="multipart/form-data">
<table border="0" cellspacing="0" cellpadding="0">
<tr> <td> <b>Resim Y?kle:</b><br />
<input class="bginput" type="file" name="upfile0$count" size="30" /><br />
<input type="hidden" name="do" value="uploadfile" /><br />
<input class="bginput" type="submit" value="$vbphrase[vbimghost_hostit]" />
<input class="bginput" type="reset"value="$vbphrase[vbimghost_reset]" />
</td> </tr> </table> </form>
</fieldset>
Ranma2k
09-20-2006, 05:21 PM
Ok I am find.
upfile$count > upfile0$count
Cms portal and forumhome good working :)
demo : www.forumsitesi.info
------------------------------------
full code :
<fieldset class="fieldset"><legend>Resim Y?kleyin</legend>
<form method="post" action="upload/vbimghost.php" enctype="multipart/form-data">
<table border="0" cellspacing="0" cellpadding="0">
<tr> <td> <b>Resim Y?kle:</b><br />
<input class="bginput" type="file" name="upfile0$count" size="30" /><br />
<input type="hidden" name="do" value="uploadfile" /><br />
<input class="bginput" type="submit" value="$vbphrase[vbimghost_hostit]" />
<input class="bginput" type="reset"value="$vbphrase[vbimghost_reset]" />
</td> </tr> </table> </form>
</fieldset>
ok i don't know what your tlaking about
but in order to upload the first field must first be filled with the bath to the file ( click browse and select the file )
then click upload
it should work fine if you set the configuration correctly
memomemo
09-20-2006, 07:01 PM
Yes but
{ quote : ( click browse and select the file ) then click upload }
Dont work upload.
Error message : No File selected
I am upload form code upfile$count > change > upfile0$count ok good work.
rezapci
09-20-2006, 11:56 PM
I have this error mean I or some uploading images!
Warning: getimagesize(/home/alshia/public_html/vb/imagehosting/watermark.png): failed to open stream: No such file or directory in /includes/vbimghost_include.php on line 222
how could I fix this?
Ranma2k
I've downloaded this hack and altered it a bit. I cannot distribute it without written permission? Can you officially give it to me?
Example (forum is in Russian but contain English links) (http://www.autoforum.nnov.ru/forum/index.php?langid=1)
Ranma2k
09-21-2006, 03:36 PM
Ranma2k
I've downloaded this hack and altered it a bit. I cannot distribute it without written permission? Can you officially give it to me?
Example (forum is in Russian but contain English links) (http://www.autoforum.nnov.ru/forum/index.php?langid=1)
i have sent you a PM
Ranma2k
09-21-2006, 03:37 PM
I have this error mean I or some uploading images!
Warning: getimagesize(/home/alshia/public_html/vb/imagehosting/watermark.png): failed to open stream: No such file or directory in /includes/vbimghost_include.php on line 222
how could I fix this?
That's becasue you Set the path incorrectly in the vbimghost option
Ranma2k
09-21-2006, 03:37 PM
Yes but
{ quote : ( click browse and select the file ) then click upload }
Dont work upload.
Error message : No File selected
I am upload form code upfile$count > change > upfile0$count ok good work.
sorry i don't have a clue what is your problem
Chicago_VLNU_4s
09-24-2006, 12:41 AM
i'm getting this error when trying to upload a .jpg image
Fatal error: Call to undefined function: imagecreatefromjpeg() in /home/offthaav/public_html/forums/includes/vbimghost_include.php on line 176
but i can upload .gif's, so what the hell is goin on?
Ranma2k
09-25-2006, 05:32 AM
i'm getting this error when trying to upload a .jpg image
but i can upload .gif's, so what the hell is goin on?
do you have GD library installed
memomemo
09-26-2006, 10:06 PM
sorry i don't have a clue what is your problem
No problem.
Only upfile$count > change > upfile0$count ok good work
toolblast
09-27-2006, 01:41 AM
Ive made a feature request post here on the 3.6 thread for this hack!
https://vborg.vbsupport.ru/showpost.php?p=1084175&postcount=268
tbradham
09-28-2006, 01:09 PM
Hello
This random image very big.
What is shring image widht and height?
at least page in http://www.forumsitesi.info/forum/upload/index.php
Does this work? I added this to my adv_portal template. I get the block, but it has no images.
www.usjeeps.com
Ski-Whiz
10-04-2006, 06:29 AM
I installed this on my 3.5.4..
I noticed when you viewed people's images, it showed them rather big, no thumbnails.
So the screen was really wide.
So I enabled thumbnails. Now, I set the thumb size etc. I rebuilt then rebuilt the thumbnails. The pictures however didn't shrink. They are still huge.
http://www.dabearz.com/forums/vbimghost.php?do=viewimages&id=2296
On some pictures, it even messed up some photos. It shrunk the photo, but left a black background. If I rebuilt them, it shrunk the thumbs even more, but still left the black background.
Question, how can I shrink the display so the picture previews use thumbnails, but AFTER they are uploaded. Rebuilding the thumbs seemed to mess up the pictures.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.