vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Major Additions - DTO Garage - free garage features for all your members (vB 3.8.X) (https://vborg.vbsupport.ru/showthread.php?t=216529)

mferguson 09-09-2009 03:24 AM

Quote:

Originally Posted by DaSpyda (Post 1881879)
That did it for my issue - all users can now access The Garage.

From the looks of things, it was an issue with a vBadvanced configuration with the Greeting Module in CMPS. A Recent Thread block started showing up, too, and a fix was applied.

Thanks, Mark, for hanging in there.

You're welcome. It only took about 5 minutes to find and resolve the vBa configuration. Let me know if you need any other assistance!

Mark

Gamelobby 09-12-2009 02:40 AM

Quote:

Originally Posted by Gamelobby (Post 1881704)
Suggestion..
To be able to add a video or two into the garage. :)
Maybe above the History area.

YouTube, Photobucket, etc.

Quote:

Originally Posted by mferguson (Post 1881721)
If you have BBCode to support YouTube, etc. and you have it enabled for use outside of posts you can use them in the text areas of a Garage now. AME is not currently supported in text areas though since it uses something other than BBCode to render media inline.

If you view our help there should be some information on using BBCode in text areas.

Hope this helps!

Mark

I guess what i need is BBCode to support Photobucket..?
I'll look into that. :)

gnatster 09-12-2009 02:59 AM

Quote:

Originally Posted by Gamelobby (Post 1883476)
I guess what i need is BBCode to support Photobucket..?
I'll look into that. :)

Should not need anything special for photobucket. Standard img codes will work.

Example code is from some random image on photobucket

PHP Code:

[img]https://vborg.vbsupport.ru/external/2009/09/29.jpg[/img] 


Gamelobby 09-12-2009 03:16 PM

For Video..!!??

gnatster 09-12-2009 03:39 PM

Quote:

Originally Posted by Gamelobby (Post 1883705)
For Video..!!??

Umm, no...not that I can find. It looks like one would have to allow html when using the codes photbucket provides. We'll need to look into this more and see if we can come up with a solution.

mferguson 09-12-2009 03:51 PM

Give this mod a try

https://vborg.vbsupport.ru/showthread.php?t=136625

It was written for vB 3.6 but may still work and provides bbCode support for Photobucket video :up:

Mark

Kolbi 09-13-2009 05:41 PM

I found some more uncached templates:
Uncached templates: dto_garage_popup_menu (1)
Uncached templates: dto_garage_popup_menubit (1)
Uncached templates: dto_garage_postbit_userinfo (1)

mferguson 09-13-2009 05:52 PM

Thanks for your email earlier on this. If you can tell me where you were in the user interface when you noticed these I'll get them addressed in our next release.

Mark

Kolbi 09-13-2009 06:05 PM

It is caused in the PM system, if you view a PM of a member with a added garage.

mferguson 09-13-2009 06:11 PM

Thanks. I'll make sure this is addressed in a future release :up:

Mark

Gamelobby 09-13-2009 07:57 PM

Quote:

Originally Posted by mferguson (Post 1883712)
Give this mod a try

https://vborg.vbsupport.ru/showthread.php?t=136625

It was written for vB 3.6 but may still work and provides bbCode support for Photobucket video :up:

Mark

Yes i tried that, but it doesn't seem to work at all, not sure what the problem is. Im thinking it has to do with the file type.
in their example they have a .SWF file, but my videos from photobucket are .PBW

MikesSite 09-15-2009 05:57 PM

Getting this error when uploading pics: [path]/includes/functions_dto.php on line 49

Any ideas?

mferguson 09-15-2009 06:23 PM

Can you PM me with information on the image that is trying to be uploaded? Ideally if you can provide me a URL to the image or email it to me I can test it here.

Thanks!

Mark

Kolbi 09-18-2009 02:18 PM

1 Attachment(s)
If think there is a little bug in the navbar.

The first thing is that the dropdown menu is not below the garage link and second the class of the links seems not to be right.

Attachment 104522
Attachment 104523

mferguson 09-18-2009 02:34 PM

This typically happens if you have a custom style that has the pop-up menu html contained in the template named "navbar" To fix this I usually have to open the DTO Garage navbar template and cut out some code and paste that code into the vBulletin navbar template for that style. Below is an example of what that might look like:

Original DTO Garage Navbar template

PHP Code:

<td class="vbmenu_control"><a id="navbar_garage" href="dto_garage_help.php$session[sessionurl_q]rel="nofollow">Garage</a> <script type="text/javascript"vbmenu_register("navbar_garage"); </script>
            
            
    <
div class="vbmenu_popup" id="navbar_garage_menu" style="display:none">
        <
table cellpadding="4" cellspacing="1" border="0">
        <
tr>
            <
td class="thead" align="left">Garage</td>
        </
tr>
                <
tr><td class="vbmenu_option" align="left"><a href="$vboptions[bburl]/dto_garage.php$session[sessionurl_q]?do=index">Garages</a></td></tr>
$dto_garage_plus_search
                
<tr><td class="vbmenu_option" align="left"><a target="_help" href="$vboptions[bburl]/dto_garage_help.php$session[sessionurl_q]">Help</a></td></tr>
        </
table>
    </
div>
    
</
td


New DTO Garage Navbar template
PHP Code:

<td class="vbmenu_control"><a id="navbar_garage" href="dto_garage_help.php$session[sessionurl_q]rel="nofollow">Garage</a> <script type="text/javascript"vbmenu_register("navbar_garage"); </script>
</
td

New addition to vBulletin Navbar template


PHP Code:

<if condition="$show['popups']">
    <
div class="vbmenu_popup" id="navbar_garage_menu" style="display:none">
        <
table cellpadding="4" cellspacing="1" border="0">
        <
tr>
            <
td class="thead" align="left">Garage</td>
        </
tr>
                <
tr><td class="vbmenu_option" align="left"><a href="$vboptions[bburl]/dto_garage.php$session[sessionurl_q]?do=index">Garages</a></td></tr>
$dto_garage_plus_search
                
<tr><td class="vbmenu_option" align="left"><a target="_help" href="$vboptions[bburl]/dto_garage_help.php$session[sessionurl_q]">Help</a></td></tr>
        </
table>
    </
div>
.
.


Again your mileage may vary as all skins are done a little differently. For example in one site we integrated Garage Plus into we had to change the DTO Garage Navbar template from being enclosed in <td> tags to <li> tags while also moving the pop-up menu code to the vBulletin navbar.

Hope this helps!

Mark

kjsmith84 09-18-2009 11:13 PM

nevermind - thank u mark!!! awesome support!

mferguson 09-19-2009 02:15 AM

Glad to help. Let me know if you need any additional assistance!

Best regards,

Mark

Kolbi 09-21-2009 07:53 PM

Found another uncached template:
Uncached templates: dto_garage_postbit_userinfo (1)
/private.php?do=showpm&pmid=XXX

Is this right?
Code:

    else if(THIS_SCRIPT == 'usercp' OR THIS_SCRIPT == 'dto_garage' OR
THIS_SCRIPT == 'private')
    {
        $globaltemplates = array_merge($globaltemplates, array(
            'dto_garage_usercp',
            'dto_garage_postbit_userinfo',
        ));


mferguson 09-21-2009 08:05 PM

Quote:

Originally Posted by Kolbi (Post 1888610)
Found another uncached template:
Uncached templates: dto_garage_postbit_userinfo (1)
/private.php?do=showpm&pmid=XXX

Is this right?
Code:

    else if(THIS_SCRIPT == 'usercp' OR THIS_SCRIPT == 'dto_garage' OR
THIS_SCRIPT == 'private')
    {
        $globaltemplates = array_merge($globaltemplates, array(
            'dto_garage_usercp',
            'dto_garage_postbit_userinfo',
        ));



If the uncached template was being found when in private messaging then yes this is the correct place to add it.

Thanks!

Mark

Hostboard 09-23-2009 12:17 PM

Hi Mark got this error this morning...

Code:

Database error in vBulletin 3.8.4:

Invalid SQL:

        SELECT user.avatarid, user.avatarrevision, avatarpath, NOT ISNULL(customavatar.userid) AS hascustom, customavatar.dateline,
            customavatar.width, customavatar.height, customavatar.width_thumb, customavatar.height_thumb
        FROM mmuser AS user
        LEFT JOIN mmavatar AS avatar ON avatar.avatarid = user.avatarid
        LEFT JOIN mmcustomavatar AS customavatar ON customavatar.userid = user.userid
        WHERE user.userid =;

MySQL Error  : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 6
Error Number  : 1064
Request Date  : Wednesday, September 23rd 2009 @ 05:23:47 AM
Error Date    : Wednesday, September 23rd 2009 @ 05:23:47 AM
Script        : http://www.monstermayhem.org/forums/...ehicle_id=1025
Referrer      :
IP Address    : 66.249.71.68
Username      : Unregistered
Classname    : vB_Database_MySQLi
MySQL Version :


mferguson 09-23-2009 01:31 PM

I looked at our code and the only time that this might occur is if , somehow, the userid for the garage owner is lost. I'm not sure if this would be lost in the database record for the garage or something else. I tried to visit the URL of the garage referenced in the error but receive a "The service is unavailable." message. If you would like to contact me via PM with information on how to access the garage I can try to reproduce the problem.

Thanks!

Mark

Hostboard 09-23-2009 01:54 PM

The server is up and domain is working. I only get "The Service is Unavailable" message when visiting that specific URL.

Here is a link to my personal garage:
http://www.monstermayhem.org/forums/...ehicle_id=1000

mferguson 09-23-2009 02:04 PM

I just noticed that the URL provided was bad. I changed this to:

PHP Code:

http://www.monstermayhem.org/forums/dto_garage.php?do=viewvehicle&vehicle_id=1000 

and was able to view the garage with no issue.

With the above in mind where did you copy the original URL from? Perhaps the issue with the original error was because of a bad URL format emitted by our code.

Thanks!

Mark

Hostboard 09-23-2009 02:28 PM

The text was copied and pasted directly from the email I got when the erorr was generated.

mferguson 09-23-2009 02:38 PM

Very strange. Have you seen any other errors similar to this before? It looks like you have a good number of garages already in place.

At the minimum there doesn't appear to be any data integrity issues with the garage itself. For some reason a query was executed trying to determine what to put in the header relative to the garage owner's avatar and it couldn't retrieve that information for some reason.

If you are open to the idea of monitoring to see if this happens again perhaps we can find the pattern and identify what may be causing the retrieval of the avatar to fail. Hopefully we'll see a similar error occur but on a different garage.

Best regards,

Mark

Hostboard 09-23-2009 02:57 PM

The site was recently moved and we lost avatars somewhere along with some other minor annoyances so members have been re-uploading sporadically. I am wondering now that you said that if that could have casued the issue?

If it happens again I wil be happy to let you know.

mferguson 09-23-2009 03:04 PM

The issues could be related. Keep me informed and feel free to PM me directly if you see other issues. Thanks!

Mark

tidefans 09-24-2009 06:48 PM

Quote:

Originally Posted by mferguson (Post 1839539)
We chose to not develop commenting and reviews since we wanted to gather site owner requirements for these features. As you can imagine these features could easily be abused by members/visitors by way of artificially driving up/down a garage rating, inappropriate comments relative to your site guidelines, etc. Given this I wanted to gather input on how owners would like to see these features managed and calculated (ratings) so that they minimize admin monitoring and provide something useful to the members.

As for the SQL error are you still receiving these? It looks like the above might have been displayed in rendering a Garage pop-up menu.

Thanks!

Mark


I would LOVE to see both commenting and ratings available. Obviously, these could be option-enabled in the admincp for sites like mine where comments on the cars would most likely be positive and appreciated.

thanks for a great product. My members love it!

mferguson 09-24-2009 06:57 PM

Thanks for the feedback. This is something that we're looking at including in a future release of Garage Plus. I'm not sure it will make it into our October release but we'll see what's required and will try to get it in it if we can. Thanks!

Mark

pelicanparts 09-27-2009 10:45 PM

Hey Mark. We just completed the conversion process from our old photo gallery to your new software plugin. We now have 3600+ entries. Unfortunately, not all have photos, but about 1/2 do at this time. If anyone wants to check it out, here's a link to a random page in the garage listings:

http://forums.pelicanparts.com/dto_g...added&page=103

-Wayne

mferguson 09-27-2009 11:55 PM

Wayne,
That's great news! I think this is the largest number of garages I've seen for Garage Plus so far. Great work on migrating the data from your site!

Mark

R.Solutions 09-28-2009 06:22 PM

Does this also have a display on the FORUMHOME of the members galleries?

Kolbi 09-28-2009 06:48 PM

I found another 2 uncached templates:
Code:

Uncached templates: dto_garage_popup_menu (1)
Uncached templates: dto_garage_popup_menubit (1)

While viewing a PM.

mferguson 09-28-2009 07:58 PM

Quote:

Originally Posted by Kolbi (Post 1891928)
I found another 2 uncached templates:
Code:

Uncached templates: dto_garage_popup_menu (1)
Uncached templates: dto_garage_popup_menubit (1)

While viewing a PM.

If I'm not mistaken these are the same templates you reported a couple of weeks ago correct? If so, the change to the global_start plugin you mentioned will resolve this or, alternatively, you can edit our cache_templates plugin. To do this:

Look for

PHP Code:

    else if(THIS_SCRIPT == 'usercp' OR THIS_SCRIPT == 'dto_garage' OR 
THIS_SCRIPT == 'private')
    {
        
$globaltemplates array_merge($globaltemplates, array(
            
'dto_garage_usercp',
        ));
    } 

and change to

PHP Code:

    else if(THIS_SCRIPT == 'usercp' OR THIS_SCRIPT == 'dto_garage' OR 
THIS_SCRIPT == 'private')
    {
        
$globaltemplates array_merge($globaltemplates, array(
            
'dto_garage_usercp','dto_garage_popup_menu','dto_garage_popup_menubit'
        
));
    } 

Mark

mferguson 09-28-2009 08:11 PM

Quote:

Originally Posted by R.Solutions (Post 1891918)
Does this also have a display on the FORUMHOME of the members galleries?

Currently we have published a set of vBadvanced modules, one of which provides a random garage display on any page you wish. If you are using vBadvanced this could easily be included in the FORUMHOME display. If you don't use vBadvanced the FORUMHOME template could be modified to include a template hook that would, with a corresponding plugin, support garages being displayed in this view. Unfortunately in looking through the standard template there are only template hooks after the display of forums and around the What's Going On area.

Feel free to contact me via PM and let me know what kind of display you are looking for and perhaps I can assist.

Thanks

Mark

AdamFL 09-28-2009 09:50 PM

Great work. I wish I could have more than one garage space for the members, I guess the only way is to upgrade to the plus version. I will when I could afford it :)

mferguson 09-28-2009 10:05 PM

If you get the Plus version you also get a lot of other stuff like search, browse, and vBSEO add-ons. Here is a comparison of the two versions if you haven't seen it before. When you're ready contact us and we'll help you get installed and running quickly.

Thanks!

Mark

AdamFL 09-28-2009 10:14 PM

Yes, I'm getting it now! well in few minutes. Thank you!

mferguson 09-28-2009 10:22 PM

Glad to help. We'll look forward to working with you!

Best regards,

Mark

AdamFL 09-28-2009 10:33 PM

Arghh I thought it was $50, I was looking at the wrong product :( Now i need to wait few days before I get it.
Thanks anyway.


All times are GMT. The time now is 10:51 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.01668 seconds
  • Memory Usage 1,879KB
  • 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_php_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (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