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)

Ranma2k 03-26-2007 03:50 PM

Quote:

Originally Posted by Tulsa (Post 1212412)
My question is using the editor add-on, it's using the bbcode and url and I would prefer it to use just the bbcode. Also it's using the thumb nail pics and not the full size pics when posted from the add-on in the editor.

it's using the thumbnails
and when ever someone click on the thumbnail it will take it to the preview page

Ranma2k 03-26-2007 03:51 PM

Quote:

Originally Posted by blue6995 (Post 1211874)
Iv'e made the changes to the in editor_smiliebox to use the Addon
"Adding quick upload and gallaries box in new thread / reply?." However, when I try and open an image, it appears on top of the Quick reply dialogue box and isn't integrated into the post

Any ideas on how I can fix this? Thanks

well you have to make sure the id for the editor is in the java code ..

Ranma2k 03-26-2007 03:53 PM

Quote:

Originally Posted by imported_killer (Post 1211390)
Hello Guys .. sorry for another question on that .. but reealy i want this mod :
I spend 5 days trying with this mod to work with no luck .
I read (43 page) in this thread .. but until now with no luck too .. so plz any one help .

all the images appear black after uploading and when try to delete any image i got this message :

Warning: unlink(imagehosting/14605b5119738b.jpg) [function.unlink]: No such file or directory in /vbimghost.php on line 896

btw : about that path : /home/user/public_html
any user i must put (my database user or vb user or ..)

thanks in advanced . and sorry for my english

No the directory path to your forum ..
the reason it won't work with you since it will look for the directory /home/user/public_html/forum which doesn't exists it will add the value in the DB but no file and it will appear as black ( yes it's a bug it shouldn't add it in the DB )

You must set the path correctly if you need help let me know via PM

Tulsa 03-26-2007 04:28 PM

Quote:

Originally Posted by Ranma2k (Post 1212796)
it's using the thumbnails
and when ever someone click on the thumbnail it will take it to the preview page

Yes I understand it's using the thumbnails. I'd like to change that to where it just shows the pic without going to the preview page. I understand I can just delete the url to link to the preview page and the thum_ reference in the bbcode and achieve this but I would prefer to post it directly without having to manipulate it. Is it possible to change this and if so, where should I change it?

Ranma2k 03-26-2007 10:27 PM

Quote:

Originally Posted by Tulsa (Post 1212822)
Yes I understand it's using the thumbnails. I'd like to change that to where it just shows the pic without going to the preview page. I understand I can just delete the url to link to the preview page and the thum_ reference in the bbcode and achieve this but I would prefer to post it directly without having to manipulate it. Is it possible to change this and if so, where should I change it?

if you want to do that
go to the template vbimghost_popupload_pre
find
Code:

                        //just thumb
                        result = 'https://vborg.vbsupport.ru/';
                        <if condition="!$vbimghost[thumbsize]">
                                        result_html = "<a href='" + dispath+ "' target='_blank'><img src='" + thumbp + "' border='0'></a>";
                        <else />
                                        result_html = "<a href='" + dispath+ "' target='_blank'><img src='" + thumbp + "'  width ='" + thumbsize + "' border='0'></a>";
                        </if>

and replace it with

Code:


                        //just thumb
                        result = 'https://vborg.vbsupport.ru/';
                        result_html = "<img src='" + thumbp + "' border='0'>";


also find

Code:

<body onload="sendLink('$vbimghost[thumbpath]','$vbimghost[dispath]','$vbimghost[thumbsize]');">
and replace it with

Code:

        <body onload="sendLink('$vbimghost[path]','$vbimghost[dispath]','$vbimghost[thumbsize]');">

that should do it for you

Tulsa 03-26-2007 11:58 PM

haha, well that almost got it.. :)

It worked for the "quick upload" pics but the "open" pics didn't display anything when clicked in the editor, it didn't act like it was doing anything at all. So I save the test post and I had ten of the same pics.. The click was working, just nothing to tell you it had worked. Also the "open" pics were still thumbnails.

Ranma2k 03-27-2007 06:32 AM

Quote:

Originally Posted by Tulsa (Post 1213233)
haha, well that almost got it.. :)

It worked for the "quick upload" pics but the "open" pics didn't display anything when clicked in the editor, it didn't act like it was doing anything at all. So I save the test post and I had ten of the same pics.. The click was working, just nothing to tell you it had worked. Also the "open" pics were still thumbnails.

ok if you want that also

replace the content of the vbimghost_imgbits_poprow template with this

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[path]','$vbimghost[dispath]', '$vbimghost[imgwidth]')">
                  <img <if condition="$vbimghost[thumbsize]"> width="$vbimghost[thumbsize]"</if> src="$vbimghost[thumbpath]" border="0"></a>
        <else />
            &nbsp;
        </if>
    </td>


whaase 03-27-2007 08:10 PM

I just read all 43 pages.. Can't find the answer to my problem.. I installed it and things seemed ok, but, I don't have any option in the user groups for editing permissions for VB Image Hosting? I've looked everywhere. I also notice that in my AdminCP I dont have the:

Admincp -> VB Img Host

Mine is in the:

admincp -> vbulletin Option -> VB Image Hosting

I'm running VB 3.64

Thanks

Ranma2k 03-27-2007 08:54 PM

Quote:

Originally Posted by whaase (Post 1213903)
I just read all 43 pages.. Can't find the answer to my problem.. I installed it and things seemed ok, but, I don't have any option in the user groups for editing permissions for VB Image Hosting? I've looked everywhere. I also notice that in my AdminCP I dont have the:

Admincp -> VB Img Host

Mine is in the:

admincp -> vbulletin Option -> VB Image Hosting

I'm running VB 3.64

Thanks

Did you upload all the files ?

seems you didn't upload the xmls in the include/xml directory

whaase 03-27-2007 09:00 PM

Don't I feel like a idiot :) Thank you!


All times are GMT. The time now is 11:35 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.02607 seconds
  • Memory Usage 1,756KB
  • 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
  • (5)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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