vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - VB image Hosting (https://vborg.vbsupport.ru/showthread.php?t=123481)

jfreels 09-07-2006 01:48 AM

dude, awesome work!

I was just about to shell out for the photopost or whatever thing. Good job!

e7lew 09-07-2006 03:30 AM

cant display the pic
path dir is correct and 777
any idea?

jfreels 09-07-2006 12:47 PM

Any chance a "random" function exists? I'm making a box for my homepage that will show some random pics from the hosting.

If it already exists, please save me the time! Or if you can offer any help! Thanks!

phpdevrus 09-07-2006 10:03 PM

nice works well.

i use it on 2 sites. 1 site i lost the previous hosting data in the db and forgot to backup. the 2nd site upgraded fine.

dsotmoon 09-07-2006 10:25 PM

can the watermark be set per usergroup?

jailer 09-08-2006 12:12 PM

Installed, running great - thanks.
Can someone tell me what the query to run would be to remove the watermarks?
Images that have been added to the gallery after the watermark was switched off are fine, but images added before still bear the watermark.
Thanks.

zahrani 09-08-2006 03:35 PM

Quote:

Originally Posted by Ranma2k
there is a thumbnail / watermark in it

Thanks alot. It's working smoothly.

Is there a way to limit the host size for each usergroup?

Hornstar 09-09-2006 09:18 AM

I upgraded to the latest version of GD but am still get errors when i have watermark enabled.

Any ideas why?

Ranma2k 09-09-2006 02:24 PM

Quote:

Originally Posted by hornstar1337
I upgraded to the latest version of GD but am still get errors when i have watermark enabled.

Any ideas why?

can you post the errors
or pm me access to your forum and i'll help you

libertylounge 09-09-2006 04:04 PM

Any idea when the next version will be released? I'm eagerly awaiting it!

jailer 09-09-2006 06:31 PM

Quote:

Originally Posted by jailer
Installed, running great - thanks.
Can someone tell me what the query to run would be to remove the watermarks?
Images that have been added to the gallery after the watermark was switched off are fine, but images added before still bear the watermark.
Thanks.


Any idea on this problem mate?

Cheers.

Ranma2k 09-09-2006 06:42 PM

Quote:

Originally Posted by jailer
Any idea on this problem mate?

Cheers.

old images that have water mark ..

you can't remove the water mark from it .. unless you re upload the images again.

Ranma2k 09-09-2006 06:42 PM

Quote:

Originally Posted by libertylounge
Any idea when the next version will be released? I'm eagerly awaiting it!

can't set a date but hopefully within 2 weeks

jailer 09-09-2006 06:43 PM

OK, thanks.

Hornstar 09-10-2006 09:44 AM

That is the error I got here https://vborg.vbsupport.ru/showpost....&postcount=158

If you need any specific detail let me know.

Thanks.

Ranma2k 09-10-2006 11:28 AM

Quote:

Originally Posted by hornstar1337
That is the error I got here https://vborg.vbsupport.ru/showpost....&postcount=158

If you need any specific detail let me know.

Thanks.

are you sure this is your forum path ?
Code:

/home/user/public_html/forums
if your not sure .. use the attached file

put it in the forum direcoty and call it usin the browser you have

it will display the correct path that you should put in the vbimghost setting .

tweakmonkey 09-10-2006 11:57 AM

Great plugin!
We installed it on our test forums and after making some minor tweaks we're going to put it live.

Here are a few suggestions, and I saw from your replies you're planning on some of them already:
1) Allow images to be uploaded to a different server or subdomain
2) Show how many times an image was viewed
3) Allow users to comment on images

I may have more suggestions but just started playing with it. Thanks again for this excellent mod.

Goodspeed 09-10-2006 05:45 PM

I have a question. Is it possible to make a link for full sized image to actual image location, not into vbimage hosting script?

For example when I'm entering images into a thread I get this url by clicking on thumbail image:
Code:

http://www.someforum.com/forum/vbimghost.php?do=displayimg&imgid=3
But I need to open image from actual location, for example:
Code:

http://www.someforum.com/forum/imagehosting/14503f43b8b4c3.jpg
Thank you!

Ranma2k 09-10-2006 07:41 PM

Quote:

Originally Posted by tweakmonkey
Great plugin!
We installed it on our test forums and after making some minor tweaks we're going to put it live.

Here are a few suggestions, and I saw from your replies you're planning on some of them already:
1) Allow images to be uploaded to a different server or subdomain
2) Show how many times an image was viewed
3) Allow users to comment on images

I may have more suggestions but just started playing with it. Thanks again for this excellent mod.

glad you liked it,
yes I'm currently working on the new ver with what everyone suggested
if you have any more suggestions please let me know

Ranma2k 09-10-2006 07:48 PM

Quote:

Originally Posted by Goodspeed
I have a question. Is it possible to make a link for full sized image to actual image location, not into vbimage hosting script?

For example when I'm entering images into a thread I get this url by clicking on thumbail image:
Code:

http://www.someforum.com/forum/vbimghost.php?do=displayimg&imgid=3
But I need to open image from actual location, for example:
Code:

http://www.someforum.com/forum/imagehosting/14503f43b8b4c3.jpg
Thank you!

yes you can do that

in the template vbimghost_imgbits_poprow

replace the template with this code
Code:


<if condition="$counter==$vbimghost['imgperrow']">
  </tr>
  <tr>
</if>
    <td width="25%" align="center" valign="middle" class="alt1">
        <if condition="$thump">
          <a href="javascript:void(0)" onclick="sendLink('$vbimghost[thumbpath]','$vbimghost[path]', '$vbimghost[imgwidth]')">
                  <img <if condition="$vbimghost[thumbsize]"> width="$vbimghost[thumbsize]"</if> src="$vbimghost[thumbpath]" border="0"></a>
        <else />
            &nbsp;
        </if>
    </td>

and it should work with you :)

Goodspeed 09-11-2006 06:10 AM

Ranma2k
Thank you! It works just G-R-E-A-T!

Ranma2k 09-11-2006 11:05 AM

Quote:

Originally Posted by Goodspeed
Ranma2k
Thank you! It works just G-R-E-A-T!

glad it worked with you :)

tweakmonkey 09-12-2006 06:58 AM

I had a couple more questions. They may have been answered in the last few pages but I didn't see them.

1) Users can either delete everyone's images, or nobody's images, correct? It seems if I enable the Administration option, they can delete anyone's instead of just their own.

2) The filmstrip seems to do sort of wacky stuff for me. Maybe it's because the user has only 3 or 4 images, but it shows 2 of 3 as thumbnails, then when one's clicked it seems to show a random number of thumbnails the next time. I might just not understand how it's supposed to work, maybe someone could explain it to me.

Ranma2k 09-12-2006 06:01 PM

Quote:

Originally Posted by tweakmonkey
I had a couple more questions. They may have been answered in the last few pages but I didn't see them.

1) Users can either delete everyone's images, or nobody's images, correct? It seems if I enable the Administration option, they can delete anyone's instead of just their own.

2) The filmstrip seems to do sort of wacky stuff for me. Maybe it's because the user has only 3 or 4 images, but it shows 2 of 3 as thumbnails, then when one's clicked it seems to show a random number of thumbnails the next time. I might just not understand how it's supposed to work, maybe someone could explain it to me.

admin is for Administrators ( if you enable a group to admin then that group would modify all the image)
any member can delete his image by default.

the filmstrip should show only the images before / after the curent image (based on the number of fields you set in the option) it's recomended to make that number an odd number so it can display correctly

Gerakus 09-14-2006 12:39 PM

I have the problem when a user tries to download an avi, IE 6 tries to open the file without asking the user if he wish to download, save or open the file.

Anyone know how to fix this?

Kmurray 09-14-2006 12:57 PM

The mod works great so thanks for making it!

i got one weird problem that occures when people use the quick upload tool within a topic. After uploading an image it places the image on top of the board header instead of in the topic, it doesnt stay after you hit the post new topic button but it doesn't appear in the topic content either.

Sometimes it works though so i dont know what it is. It always works when i go back to edit the topic and try again.

woody200456 09-14-2006 02:17 PM

for some reason i get this error:

Fatal error: Call to undefined function: imagecreatefrompng() in /home/gxdesig/public_html/forum/includes/vbimghost_include.php on line 170

RichieBoy67 09-14-2006 04:07 PM

sorry---posted on the wrong forum...

Greek76 09-14-2006 11:06 PM

Hey Ranma I ran into a problem. One when ever I click on any link having to do with Vbimage the screen reloads and all of my forum icons are gone... Any ideas?

ComputerVitals 09-15-2006 03:14 AM

Is there a way users can make "folders" or albums to seperate the photos?

dholt 09-15-2006 06:11 PM

MY VBCP keep telling me this mod is out of date is there a VB image hosting 1.2.3

Ranma2k 09-16-2006 05:34 AM

Quote:

Originally Posted by Gerakus
I have the problem when a user tries to download an avi, IE 6 tries to open the file without asking the user if he wish to download, save or open the file.

Anyone know how to fix this?

the mod is for images i didn't set it for avi files ..

Ranma2k 09-16-2006 05:38 AM

Quote:

Originally Posted by Kmurray
The mod works great so thanks for making it!

i got one weird problem that occures when people use the quick upload tool within a topic. After uploading an image it places the image on top of the board header instead of in the topic, it doesnt stay after you hit the post new topic button but it doesn't appear in the topic content either.

Sometimes it works though so i dont know what it is. It always works when i go back to edit the topic and try again.

That's weird
Are you sure that the Curser in the edit box ?!

can you give me access to see what's the problem

Ranma2k 09-16-2006 05:39 AM

Quote:

Originally Posted by woody200456
for some reason i get this error:

Fatal error: Call to undefined function: imagecreatefrompng() in /home/gxdesig/public_html/forum/includes/vbimghost_include.php on line 170

Is the GD library installed ..
cuz it's one of the requirements

Ranma2k 09-16-2006 05:40 AM

Quote:

Originally Posted by Greek76
Hey Ranma I ran into a problem. One when ever I click on any link having to do with Vbimage the screen reloads and all of my forum icons are gone... Any ideas?

i didn't get what you mean..
can you post some images to the problem your having ..

Ranma2k 09-16-2006 05:42 AM

Quote:

Originally Posted by dholt
MY VBCP keep telling me this mod is out of date is there a VB image hosting 1.2.3

sorry my bad i changed the file ver by mistake it's fixed now

Greek76 09-16-2006 02:41 PM

Quote:

Originally Posted by Ranma2k
i didn't get what you mean..
can you post some images to the problem your having ..

I uninstalled id does not seem to work with my forum. When ever I would click to upload an image the screen would refresh and all my forum icons and buttons are not their. After I removed the gallery everything works fine. I believe I followed the proper instructions as well.

Neo_Angelo 09-16-2006 06:03 PM

i get the following error when trying to delete an image i've uploaded:

Quote:

Warning: unlink(): open_basedir restriction in effect. File(/imagehosting/1450c473cbd836.gif) is not within the allowed path(s): (/tmp:/usr/share/pear:/home/fhlinux185/r/*******.net/user) in /vbimghost.php on line 896
any idea how to fix this...it will not let me delete an image

also when a user click a username in "view all images" they get taken to their images not the user they clicked ons images....strange.

Ranma2k 09-17-2006 05:48 AM

Quote:

Originally Posted by Neo_Angelo
i get the following error when trying to delete an image i've uploaded:



any idea how to fix this...it will not let me delete an image

also when a user click a username in "view all images" they get taken to their images not the user they clicked ons images....strange.

Neo,
Please Pm me your forum url

dougk 09-17-2006 08:33 AM

hi, i am stuck with a problem.

When i install and use the programs it keeps looking for the files under (my url)/upload/(whatever file). i need to change this so it is just (my URL)/(whatever file)

can anyone explain how?


All times are GMT. The time now is 11:08 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02194 seconds
  • Memory Usage 1,834KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete