vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - VB Pro Garage Timeslips (https://vborg.vbsupport.ru/showthread.php?t=236888)

BlackJacket 09-07-2010 04:08 AM

Didnt work. :( Still getting the error.

Code:

Database error in vBulletin 4.0.6:

Invalid SQL:

                                        SELECT languageid,
                        phrasegroup_global AS phrasegroup_global,
                        phrasegroup_garage AS phrasegroup_garage,
                        options AS lang_options,
                        languagecode AS lang_code,
                        charset AS lang_charset,
                        locale AS lang_locale,
                        imagesoverride AS lang_imagesoverride,
                        dateoverride AS lang_dateoverride,
                        timeoverride AS lang_timeoverride,
                        registereddateoverride AS lang_registereddateoverride,
                        calformat1override AS lang_calformat1override,
                        calformat2override AS lang_calformat2override,
                        logdateoverride AS lang_logdateoverride,
                        decimalsep AS lang_decimalsep,
                        thousandsep AS lang_thousandsep
                                        FROM language
                                        WHERE languageid = 1;

MySQL Error  : Unknown column 'phrasegroup_garage' in 'field list'
Error Number  : 1054
Request Date  : Monday, September 6th 2010 @ 10:56:55 PM
Error Date    : Monday, September 6th 2010 @ 10:56:55 PM
Script        : http://www.mywebsite.com/community/garage_vehicle.php?do=view_vehicle&id=112
Referrer      :
IP Address    : xx.xxx.xxx.133
Username      :
Classname    : vB_Database
MySQL Version :


Dylanblitz 09-07-2010 07:25 PM

Quote:

Originally Posted by BlackJacket (Post 2094881)
Didnt work. :( Still getting the error.

hmm, that should of done it. Are you running the query through the ACP sql query or phpmyadmin?
If you are doing it through phpmyadmin can you run this and see what you get back?


Code:

SELECT * FROM phrasetype WHERE fieldname = 'garage';
If you get no rows back then I'll have to figure out where else it's still calling the garage phrases. If you get something back then the delete didn't *take*
btw, are you trying to uninstall the garage for good or was it just a server move? I'd think reinstalling the garage would fix the problem.

BlackJacket 09-07-2010 11:26 PM

Quote:

Originally Posted by Dylanblitz (Post 2095189)
hmm, that should of done it. Are you running the query through the ACP sql query or phpmyadmin?
If you are doing it through phpmyadmin can you run this and see what you get back?


Code:

SELECT * FROM phrasetype WHERE fieldname = 'garage';
If you get no rows back then I'll have to figure out where else it's still calling the garage phrases. If you get something back then the delete didn't *take*
btw, are you trying to uninstall the garage for good or was it just a server move? I'd think reinstalling the garage would fix the problem.

Dont want to uninstall it for good. I am using phpmyadmin.

This was the return result from running the phrase above -

Code:

MySQL returned an empty result set (i.e. zero rows). (Query took 0.0281 sec)

G37Sam 09-08-2010 04:36 AM

I don't know if this has been asked before, but everytime I access the garage from the navbar, my entire forum switches from the default center orientation to left orientation.

Another thing, everytime I upload a pic for a vehicle, as soon as the uploading is complete I get the following error: Error: Image could not be moved.

I'd appreciate any sort of help I could get, apart from that, this thing is awesome :)

Dylanblitz 09-09-2010 03:12 AM

Quote:

Originally Posted by BlackJacket (Post 2095242)
Dont want to uninstall it for good. I am using phpmyadmin.

This was the return result from running the phrase above -

Code:

MySQL returned an empty result set (i.e. zero rows). (Query took 0.0281 sec)

Did you reinstall the language file? I thought you were removing it. That's usually when you get that error, if you uninstall and there is some error that leaves a bit of it there still heh.

Try reinstalling the product and language file. It should readd the phrase group, but all your settings and customized templates should stay the same.

Dylanblitz 09-09-2010 03:22 AM

Quote:

Originally Posted by G37Sam (Post 2095305)
I don't know if this has been asked before, but everytime I access the garage from the navbar, my entire forum switches from the default center orientation to left orientation.

Another thing, everytime I upload a pic for a vehicle, as soon as the uploading is complete I get the following error: Error: Image could not be moved.

I'd appreciate any sort of help I could get, apart from that, this thing is awesome :)

The image can't be moved error is usually permissions. Change the permissions to 777 on the images/garage/attach folder and any subfolders.

The left orientation happens with some styles. You can fix it by editing the garage_css template
ACP->Styles & Templates->Style Manager
Edit the templates on the style you use and find the VB Pro Garage->garage_css template

Find
Code:

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,blockquote{margin:0;padding:0;}
li{list-style:none;}

Replace with
Code:

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,blockquote{margin:50;padding:0;}
li{list-style:none;}

Find
Code:

body {
        width:{vb:stylevar doc_width};
        min-width:{vb:stylevar doc_minWidth};
        max-width:{vb:stylevar doc_maxWidth};
        margin: {vb:stylevar doc_margin};
        font-size:{vb:stylevar font.fontSize}px;
        color:{vb:stylevar body_color};
        line-height:{vb:stylevar line_height};
}

Replace with
Code:

body {
        width:{vb:stylevar doc_width};
        min-width:{vb:stylevar doc_minWidth};
        max-width:{vb:stylevar doc_maxWidth};
        font-size:{vb:stylevar font.fontSize}px;
        color:{vb:stylevar body_color};
        line-height:{vb:stylevar line_height};
}


G37Sam 09-09-2010 04:00 AM

Appreciate your reply Dylan :)

Quote:

Originally Posted by Dylanblitz (Post 2095683)
The image can't be moved error is usually permissions. Change the permissions to 777 on the images/garage/attach folder and any subfolders.

I did that using an FTP Client, I already have a car added, but still can't add any pix to it, still get the same error, what do you think is the problem?

Quote:

The left orientation happens with some styles. You can fix it by editing the garage_css template
Thank you very much, it is now centered just the way I like it :)

Dylanblitz 09-09-2010 04:50 PM

Quote:

Originally Posted by G37Sam (Post 2095693)
Appreciate your reply Dylan :)

I did that using an FTP Client, I already have a car added, but still can't add any pix to it, still get the same error, what do you think is the problem?

Are you sure all the sub directories were changed as well? This is how I'd set mine if I had the problem

http://www.vbprogarage.com/forums/im...older_perm.png

I don't mean to harp on it, but that's always ended up being the problem when someone would get that error. You have to make sure all sub directories are set to 777.

G37Sam 09-09-2010 10:20 PM

Yup I set it exactly that way, guess I"m going to have to live with no pix in the garage lol

deschutes 09-10-2010 03:15 AM

Installed on 4.0.6. Installation went perfect and it works awesome. Probably my favorite mod at this point.


All times are GMT. The time now is 09:04 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.02018 seconds
  • Memory Usage 1,760KB
  • 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
  • (9)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
  • (3)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