PDA

View Full Version : VbGarage 3.5


Pages : 1 [2] 3

AzianStang
06-30-2006, 08:56 PM
The link to page 2 of the garage has a corrupt URL. Can anyone help?

Incorrect URL when clicking page 2: http://synergy501.net/forums/vbgarage.php?do=$_REQUEST[do]&page=2&perpage=25

Correct URL (what it should be): http://synergy501.net/forums/vbgarage.php?&page=2&perpage=25

As a result, the gallery does not update on forum home with the latest thumbnails.

Shazz
06-30-2006, 09:21 PM
Car sites...
________
buy vaporizers (http://vaporizers.net/vaporizers)

tbradham
07-02-2006, 03:20 PM
Page two of my garage is empty?

Here is page one:

http://www.usjeeps.com/upload/vbgarage.php?do=list

Here is page two:

http://www.usjeeps.com/upload/vbgarage.php?do=$_REQUEST[do]&page=2&perpage=25

Any ideas as to why it says there is a page two?

AzianStang
07-03-2006, 02:18 AM
Page two of my garage is empty?

Here is page one:

http://www.usjeeps.com/upload/vbgarage.php?do=list

Here is page two:

http://www.usjeeps.com/upload/vbgarage.php?do=$_REQUEST[do]&page=2&perpage=25

Any ideas as to why it says there is a page two?
Also having the same problem above (previous post), can anyone help?

GrCh_Jeff
07-03-2006, 11:15 PM
This hack needs the following and I desperately need to know how to do (1) and it would be nice to know how to do (2)

(1) How to make images show up in 2 columns instead of 1
(2) How to create a module type shell around the text info and have it at the top instead of in the middle of the page.If you have more than a couple images you have to scroll a mile to see the text.
(3) How to make the thread title make model etc. not only show up as title but in a table like vb gallery image info.

Also I don't like the way your "powered by" notice is placed.I would like to see it maybe centered above the "all times are" above the footer.

bouncer18
07-03-2006, 11:43 PM
Also having the same problem above (previous post), can anyone help?


http://www.usjeeps.com/upload/vbgarage.php?do=$_REQUEST[do]&page=2&perpage=25


it is either on the .xml or the vbgarage.php... gonna have to search for it cause i dont remember where i edited it at.....?

anyways just make it look like.. vbgarage.php?&perpage=25&page=2

AzianStang
07-04-2006, 02:26 AM
So just edit the vbgarage.php to look like the above?

AzianStang
07-04-2006, 04:23 PM
Here is what the list section of my vbgarage.php looks like:


if ($_REQUEST['do'] == 'list')
{
$vbulletin->input->clean_array_gpc('r', array(
'pagenumber' => TYPE_INT,
'perpage' => TYPE_INT
));

$pagenumber = &$vbulletin->GPC['pagenumber'];
$perpage = &$vbulletin->GPC['perpage'];
$perpage = intval($perpage);
if ($perpage == 0 or $perpage > 200) { $perpage = 25; }
if (intval($pagenumber) == 0) { $pagenumber = 1; }
$limitlower = ($pagenumber - 1) * $perpage + 1;
$limitupper = ($pagenumber) * $perpage;
$counter = 0;
$garagecount = $vbulletin->db->query_first("SELECT COUNT(*) AS garages FROM " . TABLE_PREFIX . "vbgarage_users");
$numberpages = $garagecount['garages'] / $perpage;
$numberpages = ceil($numberpages);
if (!isset($pagenumber) or ($pagenumber < 1) or ($pagenumber > $numberpages))
$pagenumber = 1;
$pos = ($pagenumber - 1) * $perpage;
$result_list = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "vbgarage_users ORDER BY userid ASC LIMIT $pos,$perpage");
$counter = 0;
$count = 0;

while ($list = $vbulletin->db->fetch_Array($result_list) AND $counter++ < $perpage)
{
$count++;
$list['year'] = unhtmlspecialchars($list['year']);
$list['make'] = unhtmlspecialchars($list['make']);
$list['model'] = unhtmlspecialchars($list['model']);
$list['text'] = unhtmlspecialchars($list['text']);
$list['lastactivity'] = vbdate($vbulletin->options['dateformat'],$list['lastactivity'],true);
$user = fetch_userinfo($list[userid]);
eval('$listbits .= "' . fetch_template('vbgarage_listbits') . '";');
}

$result_latest = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "vbgarage_images ORDER BY vbgarageid DESC LIMIT 5");
while ($latest = $vbulletin->db->fetch_Array($result_latest))
{
eval('$latestbits .= "' . fetch_template('vbgarage_latestbits') . '";');
}

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

$navbits = construct_navbits(array('' => 'vBGarage'));
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('vbgarage_listgarage') . '");');
}

GrCh_Jeff
07-04-2006, 06:53 PM
Nice looking garage.

trinigamers
07-04-2006, 09:38 PM
can somone modify this for pc specs?

jadkar
07-05-2006, 02:04 AM
http://www.usjeeps.com/upload/vbgarage.php?do=$_REQUEST[do]&page=2&perpage=25


it is either on the .xml or the vbgarage.php... gonna have to search for it cause i dont remember where i edited it at.....?

anyways just make it look like.. vbgarage.php?&perpage=25&page=2


This makes no sense to me. Can you please explain where this code needs to be changed?

AzianStang
07-05-2006, 01:58 PM
This makes no sense to me. Can you please explain where this code needs to be changed?
+1... how can we remove the do=$_REQUEST[do] in the page 2 URL?

jp30
07-05-2006, 11:51 PM
Here is what the list section of my vbgarage.php looks like:


if ($_REQUEST['do'] == 'list')
{
$vbulletin->input->clean_array_gpc('r', array(
'pagenumber' => TYPE_INT,
'perpage' => TYPE_INT
));

$pagenumber = &$vbulletin->GPC['pagenumber'];
$perpage = &$vbulletin->GPC['perpage'];
$perpage = intval($perpage);
if ($perpage == 0 or $perpage > 200) { $perpage = 25; }
if (intval($pagenumber) == 0) { $pagenumber = 1; }
$limitlower = ($pagenumber - 1) * $perpage + 1;
$limitupper = ($pagenumber) * $perpage;
$counter = 0;
$garagecount = $vbulletin->db->query_first("SELECT COUNT(*) AS garages FROM " . TABLE_PREFIX . "vbgarage_users");
$numberpages = $garagecount['garages'] / $perpage;
$numberpages = ceil($numberpages);
if (!isset($pagenumber) or ($pagenumber < 1) or ($pagenumber > $numberpages))
$pagenumber = 1;
$pos = ($pagenumber - 1) * $perpage;
$result_list = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "vbgarage_users ORDER BY userid ASC LIMIT $pos,$perpage");
$counter = 0;
$count = 0;

while ($list = $vbulletin->db->fetch_Array($result_list) AND $counter++ < $perpage)
{
$count++;
$list['year'] = unhtmlspecialchars($list['year']);
$list['make'] = unhtmlspecialchars($list['make']);
$list['model'] = unhtmlspecialchars($list['model']);
$list['text'] = unhtmlspecialchars($list['text']);
$list['lastactivity'] = vbdate($vbulletin->options['dateformat'],$list['lastactivity'],true);
$user = fetch_userinfo($list[userid]);
eval('$listbits .= "' . fetch_template('vbgarage_listbits') . '";');
}

$result_latest = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "vbgarage_images ORDER BY vbgarageid DESC LIMIT 5");
while ($latest = $vbulletin->db->fetch_Array($result_latest))
{
eval('$latestbits .= "' . fetch_template('vbgarage_latestbits') . '";');
}

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

$navbits = construct_navbits(array('' => 'vBGarage'));
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('vbgarage_listgarage') . '");');
}


On line 335, in the section where it shows

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

Remove the following

do=$_REQUEST[do]

...so that it shows

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . '', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

tbradham
07-06-2006, 01:17 PM
Thank you!!! That gives me a page two.

But now it renumbers on every page. Is that as designed?

Notice on mine I have 25 garages per page, so it shows members 1 - 25, on page two I only have 15 garages, but is shows them as members 1 - 15?

page 1 http://www.usjeeps.com/upload/vbgarage.php?do=list

page 2 http://www.usjeeps.com/upload/vbgarage.php?&page=2&perpage=25

oberheimhaven
07-06-2006, 09:02 PM
thanks for the great hack mate!!!
MarkAnthony ;-)
Musiciansquarters.com

Tyegurl
07-07-2006, 01:12 AM
i would like you to know that i modified my phrases and changed the names and blah blah blah....i did leave the footer alone except to change vbgarage to my own and added phrases modified by my site....so authors are still in place

if this is a problem please let me know and i will revert back to the original phrase in the footer!

thanks for the great gallery ;)

calgdsm
07-07-2006, 01:37 AM
4. + Open your styles NAVBAR template.

- Find the following:

<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>

- Below add this:

<td class="vbmenu_control"><a href="vbgarage.php?$session[sessionurl]do=list">$vbphrase[vbgarage]</a></td>

- Save Template.

In my styles i only have a navbar not NAVBAR template when i open the navbar template and search the "find the following" its not found?? what am i doing wrong?? Everything else worked fine untill this.

Thanks for the HACK Great Job!!

calgdsm
07-07-2006, 01:39 AM
Its sort of working but i cant find the NAVBAR template

R34GTT
07-08-2006, 01:08 PM
Has been working fine for ages. But its just be reported that it shows a second page, yet it opens a blank one. Is this a know fault or something ive done?

Thanks

tbradham
07-08-2006, 06:53 PM
On line 335, in the section where it shows

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

Remove the following

do=$_REQUEST[do]

...so that it shows

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . '', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);
Solves the page two issue

R34GTT
07-09-2006, 07:00 AM
Many thanks!

calgdsm
07-10-2006, 07:12 PM
4. + Open your styles NAVBAR template.

- Find the following:

<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>

- Below add this:

<td class="vbmenu_control"><a href="vbgarage.php?$session[sessionurl]do=list">$vbphrase[vbgarage]</a></td>

- Save Template.

In my styles i only have a navbar not NAVBAR template when i open the navbar template and search the "find the following" its not found?? what am i doing wrong?? Everything else worked fine untill this.

Thanks for the HACK Great Job!!


Still cant find that template. Please help.

Tyegurl
07-10-2006, 07:46 PM
its in the styles and templates button in the admincp....go to edit templates and then scroll through the templates until you find navigation/breadcrumb click and you should you see navbar

btw NAVBAR=navbar

calgdsm
07-12-2006, 01:22 AM
Ya i think i was having like a week long brain cramp!! I just figured that out. Thank you anyway!! Still the line i was supposed to search for is still not there. I just placed the code after calendar code. check it out www.calgarydsm.com

crashys
07-14-2006, 08:35 PM
Hi!I'm having some problems with this, if anyone could help it would be much appreciated...
I'v installed everything okay, I can access it, insert images, and delete, but when I delete them I get a 404 Cannot Found page...it still deletes it but gives me always this message.
And the URL ends like, /Array[bburl]/vbgarage.php?do=list
If anyone knows how to fix it, please help out :cool:

forzablues
07-29-2006, 10:48 PM
brill hack installed on my forum:
street-stylers-southwest.co.uk

just what we were looking for thanks

Triple8
07-30-2006, 02:58 AM
followed all the install directions but nothing shows up. am i missing something??

Triple8
07-30-2006, 03:03 AM
This is all i got in the install doc:
1. Install Product File: product-_vbgarage.xml

2. Move vbgarage.php to your forums root directory where your index.php, showthread.php etc.. reside.

3. + Open your styles USERCP_SHELL template.

- Find the following:

<tr>
<td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td>
</tr>

- Below add this:

<tr>
<td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="vbgarage.php?$session[sessionurl]do=editgarage">$vbphrase[vbgarage_edit]</a></td>
</tr>

- Save Template.

4. + Open your styles NAVBAR template.

- Find the following:

<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>

- Below add this:

<td class="vbmenu_control"><a href="vbgarage.php?$session[sessionurl]do=list">$vbphrase[vbgarage]</a></td>

- Save Template.

5. Modify and settings you want to in the Admin Control Panel.

forzablues
07-31-2006, 10:13 PM
found a problem....

when you click next page for user galleries just loads a white page

Shazz
07-31-2006, 10:16 PM
found a problem....

when you click next page for user galleries just loads a white page
Errr, I don't see it? Mines fine.
________
buy vaporgenie (http://www.vaporshop.com/vaporgenie-vaporizer.html)

forzablues
07-31-2006, 10:58 PM
ah sorry just read up on it i now changed my vbgaragephp and now page2 works :D

Although now........

Is there anyway in user profile there is an option to view the users garage?

Shazz
07-31-2006, 11:05 PM
Yea just go to teamplate memberinfo
Add a hyperlink
________
green crack (http://trichomes.org/marijuana-strains/green-crack)

RoyMan
08-01-2006, 01:54 PM
I dont know if this has been asked or not yet but i couldnt really ifnd anything with searching...

but is there any way to have the images save to the filesystem on the server instead of the database??

Shazz
08-01-2006, 02:18 PM
I dont know if this has been asked or not yet but i couldnt really ifnd anything with searching...

but is there any way to have the images save to the filesystem on the server instead of the database??
You would have to edit the module itself..
________
Ferrari 125 S (http://www.ferrari-wiki.com/wiki/Ferrari_125_S)

RoyMan
08-01-2006, 02:28 PM
eek i dont know coding that well...if someone has already done it cool, if not ill just lower the image size and max submission amount.

hammondfra
08-03-2006, 12:18 AM
I looked, and maybe I missed it. How can you add a watermark to all uploaded pictures with this mod. I have seen where folks have their autos images taken from a site and used for ebay with out permission. I just was thinking this would be nice for folks to see. If they copy the image from my server by the means of right-click.

threat
08-03-2006, 02:13 AM
Hope the update allows me to put the pics side by side in colums of 2 instead of up and down, cause it throws my text box way off. All my pics show 1 column with the pics going down and not like the picture that it shows on the example here.

Protonus
08-04-2006, 04:28 PM
Has anyone used this in vB 3.6 gold yet? Can you install it without havign had installed it in vB 3.5 first if so? Ie a new install into 3.6?

Oddjob
08-05-2006, 11:40 PM
Has anyone used this in vB 3.6 gold yet? Can you install it without havign had installed it in vB 3.5 first if so? Ie a new install into 3.6?

It works in 3.6.0 just fine.

I just did a fresh install of it with no issues whatsoever.

Protonus
08-06-2006, 05:54 AM
It works in 3.6.0 just fine.

I just did a fresh install of it with no issues whatsoever.

Thanks! That's a great relief and what will probobly prompt us to start usingthis!

jw00dy
08-10-2006, 05:41 AM
I'm running it on 3.6.0 Gold as well, and no problems thus far

Tyegurl
08-10-2006, 12:31 PM
3.6.0 gold here too...no problems yet

Triggerhappy
08-18-2006, 12:31 AM
Does anyone have a instructions on how to change the vbgarage part of the menus to display something else, i dont mind theadmin CP part, it dosent suite my websiite

Thanks

Puntoboy
08-19-2006, 10:34 AM
i'm having some problems upgrading from the old version of vbgarage.

my forum is using 3.5.2 does this work with this version?

also, i'm worried about using phpmyadmin, last time i did i deleted some important info.

calgdsm
08-20-2006, 05:50 PM
I had problems as soon as i upgraded the forum to 3.6 and i had to uninstall it. I will try to do a clean install and see if its working.

The problem i was having was the page the showed the thums ect was going crazy, it would change all the time. Some times is squished and other times its showing the thumbs all over the place.

Puntoboy
08-20-2006, 06:40 PM
i'm having some problems upgrading from the old version of vbgarage.

my forum is using 3.5.2 does this work with this version?

also, i'm worried about using phpmyadmin, last time i did i deleted some important info.

yep, same happened again, logged into phpmyadmin and started to delete the vbg tables. then my forum stopped working. so i've given up.

Shazz
08-20-2006, 06:46 PM
I don't think trigun is going to update it
Last Activity: 28. May 2006 00:47
So... Its basically stuck on the 3.5
________
Mazda 737C (http://www.ford-wiki.com/wiki/Mazda_737C)

Tru2Chevy
08-25-2006, 01:50 PM
I don't think trigun is going to update it
Last Activity: 28. May 2006 00:47
So... Its basically stuck on the 3.5

He's been saying since he released this that he was only porting it over and doing major bugfixes if they came up. This is not a supported hack.

He did briefly talk about incorporating the features that noppid had in his version, however he never finished working out the bugs in it.

- Justin

jangus74
09-11-2006, 01:56 PM
Hi. I've had vbgarage installed since June and it has worked great. Now suddenly none of the images are showing up!! The thumnails and the images themselves have little red X's....

here's the link
http://thegsmc.com/thegsmc/vbgarage.php?do=list

Im thinking it may be related to the GD library. But then wouldn't the avatars quit working too? Anyone have any ideas?

EDIT BELOW
OK I found that it was related to the GD library. It was completely missing. My host has re-installed it and everything is working again...

Tyegurl
09-12-2006, 01:33 PM
okay i have a question...i searched but i didn't find a resizing for the pics...

my thumbnails are biggger than the picture lol how would i get them to resize to normal after someone clicks on them?

R.Solutions
09-13-2006, 05:11 AM
I have this installed, just has a problem.

I upload an image, but it always shows the image broken.

jangus74
09-13-2006, 11:51 AM
Make sure GD is installed on your server. You can do this by going to your admin panel and looking at "phpinfo" under "Maintenance".

You should see it listed there..
If it is there, note the version so you can set vbgarage settings to match it...
If it is NOT there, you will have to contact your hosting company to install it.

Derekclarke
09-18-2006, 11:11 AM
when i have over 25 vehicles in the Garage, Page 2 cannot be viewed.

how do i fix this?

Eddie Raps
09-19-2006, 03:42 AM
when i have over 25 vehicles in the Garage, Page 2 cannot be viewed.

how do i fix this?
Same here.. once I figure it out i'll let you know..

jw00dy
09-19-2006, 07:38 AM
If you guys will go back a couple pages on this thread you'll find the fix as someone posted it a while ago.

thunder_sti
09-19-2006, 11:31 AM
Need assistance, on vbgarage I just installed, everything works perfectly except, On the index page, where the cars are displayed, How can that vehicle be identified .Ex, you have the picture and below the pic instead of nothing there have the username/owner.


I have this right now: https://vborg.vbsupport.ru/attachment.php?attachmentid=44033&d=1141919865

and below the pics, i would like the users name..

Thanks.. Is it possible...

BlueKnight
09-25-2006, 04:02 PM
Well a little bit of reading the thread and my vbgarage is fixed. Is there a later version that 3.5? I heard was a 4.0 or 4.1?

pcxmedia
09-27-2006, 03:58 AM
anything on the market for 3.6? its the only thing holding me back.

jw00dy
09-27-2006, 11:22 PM
This works fine on 3.6.0 and 3.6.1. It does for me anyway.

blacklancer
09-29-2006, 11:05 PM
works fine for me as well.

I recently changed a username, and it didn't change it in vbgarage, but it just left it blank. now there is a garage that can not be accessed. is there any way to delete it??

kderentz
10-01-2006, 12:33 AM
Hey I just installed this as a upgrade and am wondering two things.

1) On my previous install I had it list the garages in Alphabetical order of user names yet I cant remember the hack to do this. Can any one point me in the right direction?

2) Where do I go to edit out certain user groups from being able to use the garage? I though it was under the usergroups / edit permissions/ but I dont see it anywhere.

GlitterKill
10-17-2006, 08:16 PM
Are phrases/sections able to renamed so that this could be used for a PC garage? :)

kderentz
10-17-2006, 08:17 PM
any idea of when a upgrade with permissions will be released ????

Shazz
10-17-2006, 08:28 PM
any idea of when a upgrade with permissions will be released ????
Trigun was last on at

Last Online:
Mar 2006

Basically Mmm not really :(

LeftCoastBias
10-18-2006, 03:17 AM
Here is what the list section of my vbgarage.php looks like:


if ($_REQUEST['do'] == 'list')
{
$vbulletin->input->clean_array_gpc('r', array(
'pagenumber' => TYPE_INT,
'perpage' => TYPE_INT
));

$pagenumber = &$vbulletin->GPC['pagenumber'];
$perpage = &$vbulletin->GPC['perpage'];
$perpage = intval($perpage);
if ($perpage == 0 or $perpage > 200) { $perpage = 25; }
if (intval($pagenumber) == 0) { $pagenumber = 1; }
$limitlower = ($pagenumber - 1) * $perpage + 1;
$limitupper = ($pagenumber) * $perpage;
$counter = 0;
$garagecount = $vbulletin->db->query_first("SELECT COUNT(*) AS garages FROM " . TABLE_PREFIX . "vbgarage_users");
$numberpages = $garagecount['garages'] / $perpage;
$numberpages = ceil($numberpages);
if (!isset($pagenumber) or ($pagenumber < 1) or ($pagenumber > $numberpages))
$pagenumber = 1;
$pos = ($pagenumber - 1) * $perpage;
$result_list = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "vbgarage_users ORDER BY userid ASC LIMIT $pos,$perpage");
$counter = 0;
$count = 0;

while ($list = $vbulletin->db->fetch_Array($result_list) AND $counter++ < $perpage)
{
$count++;
$list['year'] = unhtmlspecialchars($list['year']);
$list['make'] = unhtmlspecialchars($list['make']);
$list['model'] = unhtmlspecialchars($list['model']);
$list['text'] = unhtmlspecialchars($list['text']);
$list['lastactivity'] = vbdate($vbulletin->options['dateformat'],$list['lastactivity'],true);
$user = fetch_userinfo($list[userid]);
eval('$listbits .= "' . fetch_template('vbgarage_listbits') . '";');
}

$result_latest = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "vbgarage_images ORDER BY vbgarageid DESC LIMIT 5");
while ($latest = $vbulletin->db->fetch_Array($result_latest))
{
eval('$latestbits .= "' . fetch_template('vbgarage_latestbits') . '";');
}

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

$navbits = construct_navbits(array('' => 'vBGarage'));
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('vbgarage_listgarage') . '");');
}

anyone figure out how to make page 2 start at #26, instead of starting over at #1 again?

interceptor
10-19-2006, 09:02 AM
Problem..
I run that hack on 3.5.4
Then i upgrade on 3.6.0 and run ok
thaen 3.6.1 also ok
and now on 3.6.2 i get that errors

Database error in vBulletin 3.6.2:

Invalid SQL:
SELECT id FROM vb_gars_module_set_details WHERE cacheon=3;

MySQL Error : Table 'citroen_vb.vb_gars_module_set_details' doesn't exist Error Number : 1146
Date : Thursday, October 19th 2006 @ 03:06:14 AM
Script : http://www.citroenbilten.com/forum/cron.php?&rand=479011
Referrer : http://www.citroenbilten.com/forum/
IP Address : 193.77.253.186
Username : Neregistriran
Classname : vb_database

help for now is that only one eroe on my bord how repair that..

Tru2Chevy
10-30-2006, 06:05 PM
Installed and working on 3.6.2 :)

- Justin

interceptor
11-01-2006, 08:22 AM
yes i reinstal garage and repair that problems with secod page ..
and seems to work not , but i see in next few days if error stop come..

beansbaxter
11-02-2006, 03:02 AM
Is this working with 3.6.2? Is there any bugs or problems with this after installed??

Tru2Chevy
11-02-2006, 05:02 PM
Is this working with 3.6.2? Is there any bugs or problems with this after installed??

Have you read any posts in this thread at all?

Yes, it works fine on 3.6.2, and yes there are some issues, but there are fixes.

- Justin

Silver_2000_)!
11-10-2006, 01:11 PM
Thank you!!! That gives me a page two.

But now it renumbers on every page. Is that as designed?

Notice on mine I have 25 garages per page, so it shows members 1 - 25, on page two I only have 15 garages, but is shows them as members 1 - 15?

page 1 http://www.usjeeps.com/upload/vbgarage.php?do=list

page 2 http://www.usjeeps.com/upload/vbgarage.php?&page=2&perpage=25
Did you ever figure out the renumbering issue ?
Where every page shows numbers 1-25 ?

touba
11-11-2006, 08:25 PM
Hi all,

I just installed this products in vB 3.6.2 but when i edit my own garage from my User CP then click to "Submit" it doesn't work find...

I have this error message : "You leave a required field empty" (i'm french... i have in reality : "Vous avez laiss? un champ requis vide")

my question : Why ? :)

Shazz
11-11-2006, 08:45 PM
Hi all,

I just installed this products in vB 3.6.2 but when i edit my own garage from my User CP then click to "Submit" it doesn't work find...

I have this error message : "You leave a required field empty" (i'm french... i have in reality : "Vous avez laiss? un champ requis vide")

my question : Why ? :)
Many errors/Issues are on the 3.6, Not recommended

touba
11-11-2006, 09:39 PM
Ok thanks !

i delete it... :cry:

Focus2
11-14-2006, 10:57 AM
Did you ever figure out the renumbering issue ?
Where every page shows numbers 1-25 ?

Just change line 313 of vbgarage.php to read

$count = $pos;

RobFerrari
11-19-2006, 03:21 PM
any idea of when a upgrade with permissions will be released ????

Work out the php?

Anyone handle the simple php modification to limit which users can have a garage or not? Just a simple if condition in vbgarage_viewgarage I believe.

One place control who can view garages and another who can add.

RotorFrank
11-20-2006, 10:33 PM
... i got it

RotorFrank
11-28-2006, 11:04 PM
Can anyone tell me where to create a image button instead of a generated text for that option?

See I installed a new skin on my forum, and it had the default VB 3.6.2 one. It was working fine, and when I installed the new skin, the option disapeared, and I know that its still installed because all the codes to had in the install.txt is still in USERCP_SHELL and NAVBAR.

Can anyone tell me what should I do, should I create a background image with the same name as the one defaulted in the vbgarage codes, or should I try to find the CSS or the template files to specify a new attribute?

jas1159
12-09-2006, 02:17 PM
Hello, can anybody please help me finish my garage?

So far the garage seems to have gone well everything else seems to be working however when i upload images i get no error messages, just a image cannot be displayed box as you can see from the image below.

I am uploading a jpeg which is well within the image size limits.

What directory do the images upload to or wher ein the database as i have looked but im not quite sure what it all means.

http://www.swcruise.scott991.co.uk/Untitled-2.jpg

Thanks
Jason

jas1159
12-09-2006, 04:30 PM
i have read on this forum somthing about a 4.0.0 release which may help? has this been released yet? as i cant seem to find it however the script was complete back in january 06 :S

Umberto
12-12-2006, 11:51 AM
Works great!
I want to add two things, I don't know if they are discussed allready...
First thing, is that the 2nd index page doesn't work
and the 2nd is that if you go to the 2nd page (after fixing it) the id count starts with 1 again...

Here some fixes
open vbgarage.php and replace


$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

with

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=list', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);


for the ID fix:

Search for
$user = fetch_userinfo($list[userid]);


add below:
$list['number']=$pos+$counter;


then open
vbgarage_listbits in your style manager
replace:
<td class="alt2" align="center">$count</td>

with

<td class="alt2" align="center">$list[number]</td>

done....

smoknz28
12-14-2006, 01:31 AM
I don't know why my searches didn't bring me here when I was looking for vBGarage....??

At any rate...I've installed this hack: https://vborg.vbsupport.ru/showthread.php?t=118146 which included vBGarage. I can't seem to get the faded background to work though for some reason.

Umberto, thank you for posting the code for us. I've made the changes, so hopefully it will save me some heartache once this hack gets going with my users.

Also, I've read some threads indicating that there's a 4.x version of vBGarage....I gotta tell ya...I'm very confused with this hack. Seems like there's 3 different coders that have or are working on this.

Can someone point me to the latest version of vBGarage that I can download.

Thanks guys...

kderentz
12-14-2006, 05:44 PM
^ +1

Also Im wondering if anyone figured out how to set up permissions on this. I want only one user group to be able to set up their garages and everyone else to be able to view them but not have a garage.

Tru2Chevy
12-15-2006, 04:37 AM
and the 2nd is that if you go to the 2nd page (after fixing it) the id count starts with 1 again...

Easy fix for the page numbering issue:

https://vborg.vbsupport.ru/showpost.php?p=1116992&postcount=326

You change line 313 in vbgarage.php:

From This:
$count = 0;

To this:
$count = $pos;

- Justin

Tru2Chevy
12-15-2006, 04:39 AM
I don't know why my searches didn't bring me here when I was looking for vBGarage....??

At any rate...I've installed this hack: https://vborg.vbsupport.ru/showthread.php?t=118146 which included vBGarage. I can't seem to get the faded background to work though for some reason.

Umberto, thank you for posting the code for us. I've made the changes, so hopefully it will save me some heartache once this hack gets going with my users.

Also, I've read some threads indicating that there's a 4.x version of vBGarage....I gotta tell ya...I'm very confused with this hack. Seems like there's 3 different coders that have or are working on this.

Can someone point me to the latest version of vBGarage that I can download.

Thanks guys...


Gonzo,

The download found here in this thread is the latest version of this hack. The one associated with lightbox that you downloaded is the same hack, just with the lightbox files included in the download.

I'll look into your lightbox issue and reply, as I am in the process of converting my board to 3.6.4 as I type this....

- Justin

smoknz28
12-15-2006, 03:43 PM
Thanks Justin...

Tru2Chevy
12-15-2006, 09:07 PM
Thanks Justin...

NP man......

- Justin

Tru2Chevy
12-15-2006, 09:13 PM
So I just upgraded my board to 3.6.4, and I'm having an issue with vBGarage.

All of the images are still in the database, and each of my member's garages open fine, but none of the photos they have uploaded display (see attachment).

Any ideas what might be causing this?

- Justin

smoknz28
12-18-2006, 04:26 AM
In Who's Online, how can I get the user's Location to display correctly when they are in the vBGarage?

See attachment

Thank you,
Gonzo

Tru2Chevy
12-18-2006, 08:29 PM
In Who's Online, how can I get the user's Location to display correctly when they are in the vBGarage?

See attachment

Thank you,
Gonzo

I don't know of any fixes for that....mine does the same thing.

- Justin

kderentz
12-18-2006, 10:40 PM
bump for help with permissions please!

Enajizer
12-20-2006, 02:13 AM
Works great!
I want to add two things, I don't know if they are discussed allready...
First thing, is that the 2nd index page doesn't work
and the 2nd is that if you go to the 2nd page (after fixing it) the id count starts with 1 again...

Here some fixes
open vbgarage.php and replace


$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

with

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=list', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);


for the ID fix:

Search for
$user = fetch_userinfo($list[userid]);


add below:
$list['number']=$pos+$counter;


then open
vbgarage_listbits in your style manager
replace:
<td class="alt2" align="center">$count</td>

with

<td class="alt2" align="center">$list[number]</td>

done....

You don't know how long I have been wanting to fix the id count on each page. I thought it was somewhere in the php file where it was calling the garage list and have searched over and over again trying to find how to fix it. Not a major issue, but kind of annoying when viewing the different pages of the garage.

Anyway, thanks for posting the fix! ;)

Enajizer
12-20-2006, 02:24 AM
In Who's Online, how can I get the user's Location to display correctly when they are in the vBGarage?

See attachment

Thank you,
Gonzo

If you haven't already, you need to add vbgarage.php to your functions_online.php file.

Just open the includes/functions_online.php and find...

case 'threadrate':
$userinfo['action'] = $vbphrase['rating_thread'];
if ($seetitle)
{
$userinfo['where'] = '<a href="showthread.php?' . $vbulletin->session->vars['sessionurl'] . "t=$threadid\" title=\"$threadpreview\">$threadtitle</a>";
}
break;

and below it add...
case 'vbgarage':
$userinfo['action'] = $vbphrase['vbgarage'];
$userinfo['where'] = "<a href=\"vbgarage.php?$session[sessionurl]\">In the Garage</a>";
break;

Then find....
case 'archive':
$userinfo['activity'] = 'archive';
break;

and below that add
case 'vbgarage.php':
$userinfo['activity'] = 'vbgarage';
break;
This is how mine currently looks and it works fine...hope it helps.

smoknz28
12-22-2006, 12:51 AM
Enajizer, thank very much for sharing your code with me. Works great! ;)

Thank you again for your help. :up:

shepdogg
12-27-2006, 10:51 AM
hi there everyone 1st time post, love this mod installed it fine but for some reason i can only add a car or edit a car if i am logged in as admin, if i try to add a vehicle as a registered user it says i have insufficant rights? any body help me please?

Chris

shepdogg
12-27-2006, 11:01 AM
sorted :)

Silver_2000_)!
12-29-2006, 12:34 AM
How many have this working on 3.6.4 ?

smoknz28
12-29-2006, 05:07 AM
How many have this working on 3.6.4 ?

I'm one... ;)

www.f-bodyhideout.com/forums

I'm still however on the lookout for the 4.x version of vBGarage...it's been pulled off this site....so I'm still in search....argh!

Silver_2000_)!
12-29-2006, 05:22 AM
I'm one... ;)

www.f-bodyhideout.com/forums

I'm still however on the lookout for the 4.x version of vBGarage...it's been pulled off this site....so I'm still in search....argh!

there are so many different opinions and different sucesses that Im going to wait I think.. Dont need another cool mod like the timeslip database that falls into disrepair ...

smoknz28
12-29-2006, 05:29 AM
Uhhh...actually I have the Timeslip hack working on my 3.6.4 forums as well..

Shazz
12-29-2006, 05:37 AM
I wonder if trigun would ever come back to see how popular his hack is :)

Silver_2000_)!
12-29-2006, 12:49 PM
Uhhh...actually I have the Timeslip hack working on my 3.6.4 forums as well..

I have it working on one site as well -its been there for 3 or 4 years

But its been a ROYAL pain in the ___ to keep it running as VB went thru upgrades. You are one of a very FEW who appears to have the edittimeslips.php function working ( I didnt regster to test it )

The current instructions DONT work error free on a fresh install,on a new Board. Im trying to avoid teasing the members of the new site just to have it broken again in 2 months.

Doug

Tru2Chevy
12-29-2006, 01:08 PM
So I just upgraded my board to 3.6.4, and I'm having an issue with vBGarage.

All of the images are still in the database, and each of my member's garages open fine, but none of the photos they have uploaded display (see attachment).

Any ideas what might be causing this?

- Justin

Finally figured this out....when I switched servers, I didn't compile Apache with GD. I went back and did that, and everything is peachy :)

- Justin

Tru2Chevy
12-29-2006, 01:16 PM
How many have this working on 3.6.4 ?

https://vborg.vbsupport.ru/external/2006/12/2.gif

Mine works great....

- Justin

smoknz28
12-29-2006, 01:47 PM
I'm hearing you Doug....luckily I had "Hotwheels" help me out with integrating Timeslips on my 3.6.x version.

Hopefully some coders will write these hacks for 3.6.x versions as well.

Keith78
01-02-2007, 06:44 PM
I installed this today and am having 2 problems

1.. text is saving fine, but pictures do not save...
2. when i try delete a garage, it will delete it, but when it trys to load
http://localhost/sites/test/vbgarage.php?do=delgarage&id=1
i get "The page cannot be found"

are these linked? can anyone help me?

one last thing... these images are save onto the database? yea? i wonder is there a way to have the images save into a folder on the file system instead, i hate having large databases.. its a pain in the a55 for backing up and restoring

Jenkins
01-12-2007, 04:01 AM
I get an error when trying to istall the product it says, " Invalid character on line 479"

Deska
01-12-2007, 04:18 PM
Read entire posts from this thread, you'll found the answer :)

Jenkins
01-12-2007, 04:22 PM
oops.. figured out my issue for now anyway, I was trying to import the PHP not the XML haha.. :P

Jenkins
01-12-2007, 05:15 PM
well I decided to uninstall. Didn't like the fact that the pics are stored in the database instead of file system, and looks like it's too buggy anyway.

noppid
01-12-2007, 05:54 PM
This is based on like two year old code that was basically retired and rewritten. It is what it is and works for that purpose from what I hear, but it is old.

Ryloth
01-13-2007, 12:19 AM
I just installed this and ran into a problem. After I upload a picture, (GIF or JPG) its the dreaded red X.

It shows up this way in the Edit Garage page, in the actual php page, and also when you click on it to enlarge it.

I started reading this thread to see if I could find the answer and got to page 10 and gave up. Any help would be appreciated before I uninstall this.

noppid
01-13-2007, 12:24 AM
Link us to see some source code for a clue.

Ryloth
01-13-2007, 01:30 AM
Here is a link to the page...

http://www.newtiburon.com/forums/vbgarage.php

toLTcaboLT
01-22-2007, 07:09 AM
I dont user numbers, i have few users in vbgarage but noone have no number next to name.
That sux badly ... how to fix that problem?

toLTcaboLT
01-22-2007, 07:53 AM
And I upgraded forum to 3.6.4, and lost all vbgarage cars and comments? any idea how to get back all those cars? pls help :)

jangus74
01-22-2007, 04:54 PM
Hey there. I was just considering an upgrade to the new vb version but dont want to lose my vbgarage either. (like happened to you) I might could help you fix it.

Then I will know how to fix it on my site as well and could post instructions here on how to keep it running with new version of VB.

Are you getting an error message or is i just completely gone? Where is your site?

toLTcaboLT
01-24-2007, 10:39 AM
Deal .You have private message.

Confused
01-24-2007, 02:28 PM
Excellent, been wanting this on a vBulletin forum for ages.

Got it installed without a hitch on a 3.6.4 forum, and have now done some basic mods to it to provide some basic sorting of the cars listed, by username, year, make and last modified.

Really surprised no one else has done that before!

Now to find out how to store the images in the filesystem, rather than the database! May have to hunt through the Attachment code for that little gem!

Shazz
01-24-2007, 02:32 PM
Deal .You have private message.

These are support forums..

Keith78
02-02-2007, 11:45 AM
I just installed this and ran into a problem. After I upload a picture, (GIF or JPG) its the dreaded red X.

It shows up this way in the Edit Garage page, in the actual php page, and also when you click on it to enlarge it.

I started reading this thread to see if I could find the answer and got to page 10 and gave up. Any help would be appreciated before I uninstall this.


hey mate did u ever get this sorted??

i am still having the same problem as you.. text and all works fine, but just the pix are not being uploaded it seems.. if it was saved to the file system i would reckon it was a permissions problem but because its saved to the database im stumped :(

anyone??

im running it at home on my test server running..

Web Server - Apache v2.0.59
MySQL Version - 5.0.27
PHP Version - 5.2.0

it should work fine with this? all my other sites/ forums etc.. run fine on this test server

Ryloth
02-04-2007, 07:18 PM
hey mate did u ever get this sorted??

i am still having the same problem as you.. text and all works fine, but just the pix are not being uploaded it seems.. if it was saved to the file system i would reckon it was a permissions problem but because its saved to the database im stumped :(

anyone??

im running it at home on my test server running..

Web Server - Apache v2.0.59
MySQL Version - 5.0.27
PHP Version - 5.2.0

it should work fine with this? all my other sites/ forums etc.. run fine on this test server

Nope, never got it figured out.

music legend
02-06-2007, 02:58 PM
is anyone coming out with a 3.6 version?

citroenar
02-06-2007, 09:01 PM
Works great on 3.6.4

MTVSlick
02-10-2007, 06:10 AM
all I get is a block with the title in it that opens a new window but no one can do anything with it, am I missing something?

Mark,

MTVSlick
02-11-2007, 04:38 AM
can get it to work just can not view the pictures?

Mark,

yesfans
02-13-2007, 10:54 PM
I loaded this garage to my 3.6 site. When slick submit on a garage I get a 404 page. Also when I click on GARAGE from my Navbar and it shwos you the garages, if you click on any it is then throwing me to www.mysite.com/forums.vbgarage.php which is not right. I do not use FORUMS. I assume it needs to go to mysite.com/vbgarage.php

Michael Biddle
02-17-2007, 06:37 PM
<a href="http://www.mysite.com/vbgarage.php" target="_blank">www.mysite.com/vbgarage.php</a> will for you in this case

zincpony
02-21-2007, 05:28 PM
i just installed it on my test forum 3.6.4 and it seems to be working properly without errors, i can up load pics, info on my car. the page works everything seems to be just dandy, what the proplem others are having

Gojo
02-23-2007, 06:31 AM
yeah im using 3.5 and my thumbnails wont work, but when you click the image they work fine. any thoughts??

Fuzzy Orange
02-25-2007, 12:03 PM
There is a bug in this release that I havent seen a fix for

When the garage goes onto more than 1 page - the page links dont work they come up with an error about $_REQUEST[do]

There is a syntax error in vbgarage.php I had to fix

Open vbgarage.php and look for this bit of code

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

Change it to this

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do='.$_REQUEST['do'], ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

I am running the latest release of vbgarage and vbulletin by the way

Hope this helps others

TheGoaT
02-25-2007, 08:40 PM
Easy fix for the page numbering issue:

https://vborg.vbsupport.ru/showpost.php?p=1116992&postcount=326

You change line 313 in vbgarage.php:

From This:
$count = 0;

To this:
$count = $pos;

- Justin

for some reason this didnt work for me, it just got rid of the numbers all together!

zincpony
02-25-2007, 10:39 PM
here is my test forum v3.6.4 i have installed this VBgarage onto. register and try it out to see if theres a problem with it or not cause im not seeing anything wrong with it.


http://boostedmustangs.com/vbtester/vbgarage.php

Gojo
02-26-2007, 01:52 AM
yeah im using 3.5 and my thumbnails wont work, but when you click the image they work fine. any thoughts??

im still having this problem. anybody? http://www.GuelphRacing.com

Gojo
02-26-2007, 02:03 AM
do i need to have GD 2.0 on my server for this?

Z82
02-26-2007, 08:25 PM
What would be good is if someone could rewrite this based on the phpBB2 version as its real nice, I recently moved from phpBB2 to vbulletin and I miss this:

http://forums.phpbbgarage.com/garage.php

:(

SuperCObaltss
02-28-2007, 02:39 PM
Does anyone know how to let users be able to use IMG tags

dbirosel
03-30-2007, 06:50 AM
What would be good is if someone could rewrite this based on the phpBB2 version as its real nice, I recently moved from phpBB2 to vbulletin and I miss this:

http://forums.phpbbgarage.com/garage.php

:(

looks great! very organized and well structured. If only we can get something better for vB.

Z82
03-30-2007, 08:48 PM
Yes its a very nice mod

Shazz
03-30-2007, 08:50 PM
Whats the status of the bugs on 3.6 :|

dbirosel
03-30-2007, 08:52 PM
I want to see improvement myself for this vBGarage. I'm willing to pay to get this if there was a Premium Version out.

ExciterNL
04-28-2007, 02:26 PM
So, i got this working on vB 3.6.5.

Well, i did made all the needed changes, as said here before - fixed the "second page blank" problem, fixed the id numers problem.

So, as i see, it could be marked as TESTED on vB 3.6.5

Thanks to all work done on this.

Howell
05-03-2007, 09:27 PM
How do I go about renaming this hack to show as 'Garage' rather than 'vbGarage'

I really don't see the need to have the vb at the start as the link to the author is still in the footer.

Z82
05-03-2007, 10:24 PM
How do I go about renaming this hack to show as 'Garage' rather than 'vbGarage'

I really don't see the need to have the vb at the start as the link to the author is still in the footer.


Do a find and replace on all the mod files for "vbgarage" to "Garage"

Howell
05-06-2007, 11:35 AM
Do a find and replace on all the mod files for "vbgarage" to "Garage"

Thanks the only problem i have now is that the title 'garage' now appears instead of 'Garage'

How do I make title have a capital letter at the beginning?

Z82
05-06-2007, 12:00 PM
hmmm if you did a find and replace with the capitol G it should be displayed as Garage

Rider69
05-10-2007, 05:01 PM
Wonder if anyone can help. I got it loaded on my VB3.6.5 and it all seems great except that in the 'edit garage' section when clicking on the BBcode or Smilies link to see the codes/smilies, I get this page error:
The requested URL /tx-ss.com/forums/$vboptions[bburl]/misc.php was not found on this server.

Also, is there a way to turn ON [IMG] tags?

Anyone???

Thanks,
MikeG

v12kid
05-23-2007, 05:22 AM
a visual editor for users would greatly improve this product imo. My users are lost and just simply upload a pic and a short description, nothing exciting since they dont know how to use vb codes

btw it works on my 3.6.5 forum so far

Z82
05-23-2007, 06:17 PM
Yep that would be nice as thats what happens on my site too, btw works on 3.6.7 aswell

sflmkv
06-01-2007, 03:06 PM
hey guys whast up... i just got vb a few days ago etc.. and I have a question? is there a way to give some usergroup options to the garage and not allow regular registered.. I'm not to all this. Thanks

bugriders
06-09-2007, 06:43 AM
Hi, my vbgarage is working fine. But now there are more than 25 cars I can't open page 2 of the garage list.
http://www.bugriders.be/forum/vbgarage.php?do=list (try page 2).
It's a blanc page....

Thanks 4 the reply!

Z82
06-09-2007, 09:41 AM
Hi, my vbgarage is working fine. But now there are more than 25 cars I can't open page 2 of the garage list.
http://www.bugriders.be/forum/vbgarage.php?do=list (try page 2).
It's a blanc page....

Thanks 4 the reply!

There's a fix a couple of pages back

keharris53
06-24-2007, 11:43 PM
How do I change "car" to "motorcycle"? I've searched the code, but can't find what I'm looking for. I'd like to change this in the bar that identifies the username and last activity. Thanks.

Other than the above, this is working great. No problems with the install. I'm using 3.6.7

keharris53
07-03-2007, 03:58 PM
I received a response to my previous question regarding changing "car" to "motorcycle" in the vBGarage. Searching for the word "car" didn't work out. Does anyone know how to make this change? I'm not a programmer, but have some familiarity with php and style sheets. Would appreciate it if someone with knowledge on this would be kind enough to pass it on. Thanks.

bugriders
07-04-2007, 11:19 AM
There's a fix a couple of pages back

Thx Z82!:up:

I couldn't find it because I try to search this mod with keyword "page 2".
Thx for the bug fix;)

olstar
07-10-2007, 04:28 PM
Sorted...

working fine on 3.6.7

thanks guys!

i might get my mate to include a "time slip" style bit on the end of this..

to save from adding two seperate modules :)

thanks tho, works well! :)

RotorFrank
07-26-2007, 01:24 AM
Thx Z82!:up:

I couldn't find it because I try to search this mod with keyword "page 2".
Thx for the bug fix;)

What page is it on?

Bro_Joey_Gowdy
07-31-2007, 06:26 PM
Works fine on vb 3.6.8 as well:
http://www.joeygowdy.net/forum/vbgarage.php?do=list

philip_g
08-04-2007, 06:04 PM
working on my system as well.

bigraph
08-11-2007, 09:03 PM
thanks man, installing soon

erdiyilmaz
08-13-2007, 12:06 AM
it's working on v3.6.8 there is no probLem.

i wish it had a rating system... : )

Eclipsed830
08-14-2007, 03:52 PM
Is there anyway to include phrases in your member profile?

IE something like <if condition="$show['postcount']">

Jim Oaks
08-18-2007, 04:04 AM
I added this. How come I did get the options at the top of my Admin page to 'Add Setting' like in this screen shot you have:

https://vborg.vbsupport.ru/attachment.php?attachmentid=44094&d=1142072244

Also, is there any way to limit this feature to a specific usergroup? Or limit a specific user group from using it??

Keith78
08-29-2007, 10:17 AM
Also, is there any way to limit this feature to a specific usergroup? Or limit a specific user group from using it??


i would also like to know this before installing it..

cheers

Za4a Tuner
08-29-2007, 05:24 PM
i would also like to know this before installing it..

cheers
no, the hack doesn't support this feature.
i went an other way -> I hid the link to create and edit a garage by usergroup-inquiry.
only users in a special usergroup can see the link.
ok, if someone knows the correct link -> he can create an own garage, but who of the users knows this ;)

kr Chris

p.s. i run the hack on vb3.6.8 => and it works without any problems :D

Keith78
08-30-2007, 05:46 PM
no, the hack doesn't support this feature.
i went an other way -> I hid the link to create and edit a garage by usergroup-inquiry.
only users in a special usergroup can see the link.
ok, if someone knows the correct link -> he can create an own garage, but who of the users knows this ;)

kr Chris

p.s. i run the hack on vb3.6.8 => and it works without any problems :D

thats perfect.. i want all users to be able to view the garage, but only a certain 3 usergroups to be able to create a garage...

can you give me more details on how you did this??

many thanks

toLTcaboLT
09-01-2007, 03:01 PM
Anyone know how to change script to save files in directory, not Mysql database in vbgarage?

Please help me, my isp is killing me that I need to do that because they having big load of my vbgarage?

Yellow-06-GT
09-01-2007, 07:56 PM
thats perfect.. i want all users to be able to view the garage, but only a certain 3 usergroups to be able to create a garage...

can you give me more details on how you did this??

many thanks

Me too! :D

RS25com
09-01-2007, 10:34 PM
Just a note:

If you UNINSTALL this product, it DROPS your vbgarage database tables.

That's not really cool, I would have appreciated a warning, and personally I don't think any product should EVER drop your database tables. :mad:

RS25com
09-01-2007, 11:01 PM
I have tried several times to get this mod to work on 3.6.8 with an upgrade from the previous version of vbgarage, with no luck.

The best I could get was the system worked, but no one could edit their garages. Upon removal (to try and re-install it) I was stunned to find it had dropped my database tables. As I have a rather large site, it's going to take my upwards for 2 hours to restore the tables... :mad:

Following the directions, which make no sense, I deleted (carefully) anything that said vbgarage from the settings/phrases in my database. Then I installed the product. Users have no links to edit their garages.

In addition, this upgrade drops the ability to restrict who can use it by usergroup, which I personally think is crucial.

Anyway, I've removed it and hope the author will take steps to upgrade it so that there are some clear installation directions, it does not destroy data, usergroups are intergrated, and the installation works properly.

LCN2007
09-04-2007, 04:44 AM
OK i have been searching for like an Hour I got it installed and seem to all be working except that i cant upload pictures at all.
Someone please help me befor i go insane:eek:

LCN2007
09-05-2007, 05:24 AM
Anyone?

Za4a Tuner
09-06-2007, 01:03 AM
thats perfect.. i want all users to be able to view the garage, but only a certain 3 usergroups to be able to create a garage...
can you give me more details on how you did this??

Me too! :DSorry for my late answer,
but here is the code you need:

Template => USERCP_SHELL

Find:
<td class="$navclass[event_reminders]"
and set above this code the following:
<if condition="is_member_of($bbuserinfo,w, x, y, z)">
<tr>
<td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="$vboptions[bburl]/vbgarage.php?do=view&amp;id=$bbuserinfo[userid]">$vbphrase[vbgarage_show]</a></td>
<tr/>
<tr>
<td class="$navclass[options]" nowrap="nowrap"><a class="smallfont" href="vbgarage.php?$session[sessionurl]do=editgarage">$vbphrase[vbgarage_edit]</a></td>
<tr/>
</if>Replace the "w,x,y,z" by the usergroup-id's wich you will allow to create an own garage!
The link to create a garage will be shown in the usercp.

You can put the code in any template you want to appear the link, for example in the navbar.


kr chris

LCN2007
09-06-2007, 05:28 AM
Ok does anyone know where we can still get garage 4.1 since i cant get this one to work?

ivanr
09-07-2007, 06:31 PM
anyone can help me setting vbgarage to use files from server not directly from mysql

Paxion
09-13-2007, 12:47 AM
installed and working almost perfect on 3.6.8. having a problem with page 2 showing but will hopefully find the answer somewhere in these 29 pages.

Za4a Tuner
09-13-2007, 05:39 PM
installed and working almost perfect on 3.6.8. having a problem with page 2 showing but will hopefully find the answer somewhere in these 29 pages.There is an error in the vbgarage.php!

Open the vbgarage.php => search and DELETE the following code ->
$_REQUEST[do]

kr Chris

ivanr
09-19-2007, 06:00 AM
anyone can help me setting vbgarage to use files from server not directly from mysql

noone cant help me with this one?

makmak
09-20-2007, 10:23 AM
My vbulletin is 3.6.5.I install vBgarage 3.5....but...only me (with admin permissions) can see vBgarage in Navbar and at my C.P.
Registered users can't see them (not at the navbar,not in the User C.P.).Please help.
I read allmost all treads about vBgarage but i can't find any help.



Sorry for my bad english.

My site is www.bmw-fanatics.eu

Marcusl
09-30-2007, 05:35 PM
This works like a charm, but..... by default usergroup 6 (admin) is the only one who can delete comments for example. I would like one more group to be able to delete comments in garages.
Is it possible?
If so, how?

Cheers
Marcusl

Jdm Ej1 Coupe
10-30-2007, 11:05 PM
Originally Posted by Jdm Ej1 Coupe View Post
I installed this on my site when I go to the usercp to Edit vBGarage I get this

Database error in vBulletin 3.6.4:

Invalid SQL:
SELECT year,make,model,text FROM vbgarage_users WHERE userid = 2;

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 'make,model,text FROM vbgarage_users WHERE userid = 2' at line 1
Error Number : 1064
Date : Saturday, October 20th 2007 @ 02:26:05 PM
Script : http://www.jdmcoupecouncil.com/forum...?do=editgarage
Referrer : http://www.jdmcoupecouncil.com/forum/usercp.php
IP Address : 24.63.66.223
Username : EJWone Dina
Classname : vB_Database


Can anyone help me with this? What did I do wrong?

Paxion
10-31-2007, 12:27 AM
I've attachted the garage fix for 3.6.8. Just drag and drop. Your current database should remain without any issues. This fixes the problem where only the first page of a multiple page garage shows up.

My site (lincolnstreetscene.com soon to be starcityracing.com) and Mx6.com are using this file with success on 3.6.8.

enjoy.

Jdm Ej1 Coupe
10-31-2007, 01:11 AM
Don't know if that was directed toward me but I did copy the attached file and paste it in the vbgarage.php in my file manager and still I get this error. Some one please help me as I would like to have this for my members.

Database error in vBulletin 3.6.4:

Invalid SQL:
SELECT year,make,model,text FROM vbgarage_users WHERE userid = 2;

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
'make,model,text FROM vbgarage_users WHERE userid = 2' at line 1
Error Number : 1064
Date : Tuesday, October 30th 2007 @ 08:08:42 PM
Script : http://www.jdmcoupecouncil.com/forum/vbgarage.php?do=editgarage
Referrer : http://www.jdmcoupecouncil.com/forum/usercp.php
IP Address :
Username : EJWone Dina
Classname : vB_Database

Paxion
11-04-2007, 12:06 PM
There is an error in the vbgarage.php!

Open the vbgarage.php => search and DELETE the following code ->
$_REQUEST[do]

kr Chris



weird... what version did you generate the error on??

slednutz.com
11-13-2007, 12:50 AM
Anyone ever figure out a way to have more than one vehicle per member?

SVTCobraLTD
11-13-2007, 03:31 PM
So with a few edits, people are getting this to work with 3.6.8?

SVT

Za4a Tuner
11-13-2007, 05:10 PM
weird... what version did you generate the error on??I think, this "Error" is just by using vB3.6.8 ("or higher")!


So with a few edits, people are getting this to work with 3.6.8?The garage runs by me with vB3.6.8!
http://www.zafira-forum.de/vbgarage.php?do=list

SVTCobraLTD
11-13-2007, 05:30 PM
What, if anything, did you have to do to get it to work ok?

SVT

Za4a Tuner
11-13-2007, 06:17 PM
nothing!
I just updatet from 3.6.0 => and evrything was ok ... even the little bug postet by me here -> POST 428 (https://vborg.vbsupport.ru/showpost.php?p=1338473&postcount=428)

Maybe it's because of your style?
did you tried it by using the standard-style?

mdvaldosta
11-13-2007, 06:18 PM
I got it working fine on 3.8 as well. http://www.moddedmustangs.com/forums/garage/

Just installed the mod with this (https://vborg.vbsupport.ru/showpost.php?p=1372412&postcount=433) php file.

PS - also do the fix a few pages back where it fixes the garage numbering so that they don't all start back out at 1 when you change pages. Plus there's another bit of code a couple pages before that that allows you to track the garage activity in who's online. So do those two things in addition to using the file above.

SVTCobraLTD
11-14-2007, 06:26 PM
I got it working fine on 3.8 as well. http://www.moddedmustangs.com/forums/garage/

Just installed the mod with this (https://vborg.vbsupport.ru/showpost.php?p=1372412&postcount=433) php file.

Thanks... I own PennMustangs.

SVT

footose
11-15-2007, 12:25 AM
Here's my version of this..

http://forums.generationdub.com/thegarage.php

Correadde
11-17-2007, 06:46 PM
Here's my version of this..

http://forums.generationdub.com/thegarage.php

How did you do that?

And is it possible to get a notifikation by PM (Or other way) when you get an reply on the car?

Sorry for my English!

SVTCobraLTD
11-19-2007, 04:10 PM
In the text area, I want to have a template preinstalled. This way it will already say, Engine, Drivetrain, Suspension, etc and they just enter the information under each catagory. If I am directed to the place to edit that box I am sure I can figure out how to add it.

Thanks in advance.

SVT

slednutz.com
11-20-2007, 02:59 PM
No multiple vehicles per user?

SVTCobraLTD
11-26-2007, 02:25 PM
Where can I edit the text box? Can someone point me in the right direction?

SVT

VADOS
11-26-2007, 03:09 PM
I've tested it on vB 3.6.8 - works well!

But can somebody tell me - is it possible to add BB-code buttons to editor then member writes down the info about his car?

And how to make navbar more progressive, just like "Forum" -> "Garage" -> "Car name" ?

Tru2Chevy
11-28-2007, 02:06 AM
No multiple vehicles per user?

No, not since the beginning of this hack. Some people have talked about rewriting it, but I'm not sure how far along anyone has gotten.

- Justin

Tru2Chevy
11-28-2007, 02:07 AM
Where can I edit the text box? Can someone point me in the right direction?

SVT

What do you mean?

- Justin

VADOS
11-28-2007, 10:14 AM
I think he's talking about BB-code buttons in the text editor...
I've tried to add them from quickreply template, but got nothing good of course :)

It will be the most good feature in this mod! =)

P.S. - I've added some new fields like Manufacturer, Value, Wheel Drive, but it is need to work hard with both product and vbgarage.php =)

ErnieTheMilk
11-28-2007, 06:34 PM
Where do I find 'styles USERCP_SHELL template' this file??

SVTCobraLTD
11-28-2007, 09:40 PM
What do you mean?

- Justin

Where the users enter their information about their car. The MAIN part, I want to add words in there. Where would I edit this text box.

SVT

VADOS
11-29-2007, 09:57 AM
SVTCobraLTD, U mean to make another fields except "TEXT"?
Or just add some pre-words in the "TEXT" form?

SVTCobraLTD
11-29-2007, 10:13 AM
SVTCobraLTD, U mean to make another fields except "TEXT"?
Or just add some pre-words in the "TEXT" form?
Second one. I just want to add some words in the text form so when the user goes to edit it, they can just fill in under it.
See how my screen shot says "Engine" "Drivetrain" etc? That stuff I wanted already there. Then the user can add their information under each category.

SVT

VADOS
11-29-2007, 10:43 AM
Wait 2 minutes, let me see the code...
I saw that, I think...
------------------
So I've founded it.
U need a template called vbgarage_editgarage, find <textarea name="text" rows="20" cols="70"> and right after that, but before $data[text] you can edit your text.

But you can't use there html, 'cause it's a simple text.

I made like this:
<textarea name="text" rows="20" cols="70">Manufacturer:

Model:

$data[text]</textarea>

But there's 1 big trouble: after saving info and refreshing the "edit my garage" page these "pre-words" will be dublicated.

It will be much better to add some new tables in SQL, edit templates and vbgarage.php and after that your users will be editing their garage other way: they'll have to write down their info in each different field, but after saving they all will be "connected" in one field called "TEXT" - just like now you've got :)

SVTCobraLTD
11-29-2007, 11:29 AM
Worked just as I wanted it to. Thank you.

SVT

Screamin'04
12-05-2007, 07:58 PM
Has anybody figured out what exactly is causing the "no images" issue? I've checked for GD on my system (through phpinfo) as well setting the defaults (image sizes etc...) and also inspected the database. It appears as though the images are never making it into the database...

I don't have 3.6.8 up on the web yet as I'm working on my test server before my live production upgrade from vB 3.0.9.

I'm running Apache 1.3.27 with the following modules, MySQL 4.1.22 and PHP 4.3.5:

http_core.c
mod_env.c
mod_log_config.c
mod_mime.c
mod_negotiation.c
mod_status.c
mod_include.c
mod_autoindex.c
mod_dir.c
mod_cgi.c
mod_asis.c
mod_imap.c
mod_actions.c
mod_userdir.c
mod_alias.c
mod_rewrite.c
mod_access.c
mod_auth.c
mod_proxy.c
mod_setenvif.c
mod_php4.c

Ordinarily, if I do a select on a table with binary data, it drives putty nuts, not with this though...

If I do a select on vbgarage_images I get line after line of "-------------------------------+----------------------" and then three small rows:

| 3 | 2 | test-image.jpg |ÿØÿà | image/jpeg |
| 4 | 2 | profile-pic.jpg |ÿØÿà | image/jpeg |
| 2 | 50 | DSC_0184.jpg |ÿØÿà | image/jpeg |

Ed

Screamin'04
12-06-2007, 03:51 PM
Ok, so I figured it out... and got it working...

I had GD installed and configured in PHP, but did not have jpeg support enabled. A quick recompile of PHP solved the problem. Everything is working... Hope this helps those having similar issues.

jandm
12-28-2007, 08:34 PM
**installed**

Great mods thanks.

One question tho, i want to change the link in the navbar to just "garage" instead of "VB"garage Is this possible? If so where please?

Many thanks for the mod.:D

SVTCobraLTD
12-28-2007, 08:51 PM
**installed**

Great mods thanks.

One question tho, i want to change the link in the navbar to just "garage" instead of "VB"garage Is this possible? If so where please?

Many thanks for the mod.:D

I tried this before editing the garage.php file and using Crimson editor i changed everything that said vbgarage to garage and it seemed to work fine. I did not fully test it but did try a few features. Maybe someone else can give you a yes or no but from what i saw, it can work.

SVT

jandm
12-28-2007, 09:34 PM
I tried this before editing the garage.php file and using Crimson editor i changed everything that said vbgarage to garage and it seemed to work fine. I did not fully test it but did try a few features. Maybe someone else can give you a yes or no but from what i saw, it can work.

SVT


You only edited the .php file, no need to edit the .xml file ????


I just changed vbgarage to garage using crimson editor and it has made no difference

SVTCobraLTD
12-28-2007, 09:57 PM
You only edited the .php file, no need to edit the .xml file ????


I just changed vbgarage to garage using crimson editor and it has made no difference

I miss read your first post, thought you just wanted to change all the words so it didnt say vbgarage. But I do remember when I did it to mine, that didnt change for some reason. Not sure where that is to edit it.

SVT

Maestro
12-29-2007, 04:31 PM
Just installed this on 3.5.2.

What would cause it to throw up a blank page when I try to submit a new car? I can go into my control panel, hit "Update Garage", enter year, make and model then when I hit submit all I get is a blank page.

We had an older installation of vbgarage a few years back and I've tried removing the original tables and reinstalling the mod.

:confused:

Za4a Tuner
12-29-2007, 05:04 PM
One question tho, i want to change the link in the navbar to just "garage" instead of "VB"garage Is this possible? If so where please?You did the following steps of the "readme":

Open your styles NAVBAR template.
- Find the following:
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>

- Below add this:
<td class="vbmenu_control"><a href="vbgarage.php?$session[sessionurl]do=list">$vbphrase[vbgarage]</a></td>
Two ways:
N?1 -> change the text marked red in the code above
N?2 -> edit the phrase (vbgarage) from vB Garage => to Garage

jandm
12-30-2007, 08:21 PM
You did the following steps of the "readme":

Open your styles NAVBAR template.
- Find the following:
<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>

- Below add this:
<td class="vbmenu_control"><a href="vbgarage.php?$session[sessionurl]do=list">$vbphrase[vbgarage]</a></td>
Two ways:
N?1 -> change the text marked red in the code above
N?2 -> edit the phrase (vbgarage) from vB Garage => to Garage


There was no "readme" so i assume you mean "install" of which yes i read.

The garage is working flawlessly with no issues. It is just the link in the navbar that i want to change in order to drop the VB from it.

I just tried your suggestions and it made no difference. I changed

<td class="vbmenu_control"><a href="vbgarage.php?$session[sessionurl]do=list">$vbphrase[vbgarage]</a></td>

To this

<td class="vbmenu_control"><a href="vbgarage.php?$session[sessionurl]do=list">$vbphrase[garage]</a></td>


Help a confused lost soul please :confused::D

tykesplace
12-31-2007, 12:15 AM
Thanks! Installed fine but the image limit seems to be forum wide. Not just the garage.

When I went in to edit and upload the pics the system wouldn't let me. Said I was over my limit on storeable images and had to delete some to make more room. I had the garage limit at 20. I have temporarily set it to 2000.

Shouldn't this setting only effect a user's garage?

Using 3.6.8 pl2

Za4a Tuner
12-31-2007, 09:44 AM
There was no "readme" so i assume you mean "install" of which yes i read.
sorry, "install" is the correct file ;)

I just tried your suggestions and it made no difference. I changed
Try this one :
<td class="vbmenu_control"><a href="vbgarage.php?$session[sessionurl]do=list">Garage</a></td>

SVTCobraLTD
12-31-2007, 11:57 AM
But there's 1 big trouble: after saving info and refreshing the "edit my garage" page these "pre-words" will be dublicated.

For some reason I missed reading this when I first saw it and I ran into this problem while editing mine.

It will be much better to add some new tables in SQL, edit templates and vbgarage.php and after that your users will be editing their garage other way: they'll have to write down their info in each different field, but after saving they all will be "connected" in one field called "TEXT" - just like now you've got :)

Will this eliminate the dublicated pre-words? I really don't know enough about the mysql to get it to work correctly, can you possibly explain it more. I can add the tables but do know what to call them. Thank you in advance.

SVT

jandm
01-02-2008, 07:14 AM
sorry, "install" is the correct file ;)


Try this one :
<td class="vbmenu_control"><a href="vbgarage.php?$session[sessionurl]do=list">Garage</a></td>


When i do that, it removes the link completely from the navbar. :confused::confused::confused:


I am guessing it is .xml file that needs changing. So the question is, if i remove the .xml file and replace it with a modded version with the VB removed from the garage title will i lose all the exisitng entires into the garage already? i am thinking yes. If so how do i save them or replace them once i change the.xml file?

Many thanks

Purple 92 SS
01-05-2008, 08:16 AM
Ok, ive installed the garage, adn can edit without issues and add a car.. however, i am gtting no photos.. im a vbb newb, so any help is appreciated.

Ania
01-05-2008, 08:57 AM
will it work correctly with 3.6.8 SP2?

Addonic
01-06-2008, 09:50 PM
Hello, i just installed it on 3.6.8-2 and it worket great. Now for a little question. Is this possibe to do in a members profile.

When you enter a members profile, and the member got a garage. Is it possible to then display a link to his garage. And for a member without a garage there will be no link.

And i whould like it to be displayed above the "signature" in the profile.

/Addonic

Purple 92 SS
01-07-2008, 06:56 AM
i have everythign working with 3.6.8 sp2 except photos. i could really use some help with that part

edit..

nevermind, it was photo size.. i reduced them down to 400x300 and all is well with my install.

Bro_Joey_Gowdy
01-07-2008, 08:27 AM
Any updated version for 3.7.0 ??

GotVtec
01-07-2008, 05:01 PM
So what needs to be done for this add-on to work with VB 3.6.8?

Thanks!

SVTCobraLTD
01-07-2008, 10:28 PM
So what needs to be done for this add-on to work with VB 3.6.8?

Thanks!

Works fine on my site with vb3.6.8 pl2

SVTCobraLTD
01-07-2008, 10:47 PM
Hello, i just installed it on 3.6.8-2 and it worket great. Now for a little question. Is this possibe to do in a members profile.

When you enter a members profile, and the member got a garage. Is it possible to then display a link to his garage. And for a member without a garage there will be no link.

And i whould like it to be displayed above the "signature" in the profile.

/Addonic

Edit MEMBERINFO

<a href="vbgarage.php?do=view&id=$userinfo[userid]">$userinfo[username]'s Garage</a></if>

Will put the link to the members garage but I am not sure what code you need to do in order to to make it only show up when a member has a garage. Maybe someone else can chime in on the if condition code.

CSS59
01-07-2008, 11:37 PM
Last Update: 10 Mar 2006 :( This mod needs to be updated ..it crashes vbgarage_images

griffinzx10
01-08-2008, 05:01 PM
Will this work for VB 3.6.8?

SVTCobraLTD
01-08-2008, 05:12 PM
Works fine on my site with vb3.6.8 pl2

This is 3 posts up from your question.

GotVtec
01-09-2008, 02:31 AM
I installed it, however, when I attempt to upload a photo, nothing happens. No errors or anything.

SVTCobraLTD
01-09-2008, 10:42 AM
I installed it, however, when I attempt to upload a photo, nothing happens. No errors or anything.

Is the picture you are trying to upload too big?

GotVtec
01-09-2008, 01:05 PM
Is the picture you are trying to upload too big?

Yep, that was it.

It seems by default, you can only upload thumbnail sized photos.

SVTCobraLTD
01-09-2008, 04:11 PM
Yep, that was it.

It seems by default, you can only upload thumbnail sized photos.

You can edit it under vB Options > vbGarage > Maximum File Size

jandm
01-11-2008, 09:36 PM
Edit MEMBERINFO

<a href="vbgarage.php?do=view&id=$userinfo[userid]">$userinfo[username]'s Garage</a></if>

Will put the link to the members garage but I am not sure what code you need to do in order to to make it only show up when a member has a garage. Maybe someone else can chime in on the if condition code.


Exactly where does that code get inserted please?

racingsolution
01-15-2008, 04:43 AM
If anyone is interested, I am finishing up changes to the vbGarage code that uses a filesystem instead of storing images into the DB.

jw00dy
01-15-2008, 04:21 PM
I would be very interested. I was just wishing that was an option...

Killeglass
01-18-2008, 11:55 PM
If anyone is interested, I am finishing up changes to the vbGarage code that uses a filesystem instead of storing images into the DB.


I am very into anything that anyone does to get this great module going. Very needed with all the car forums out there.

Tru2Chevy
01-20-2008, 04:42 AM
If anyone is interested, I am finishing up changes to the vbGarage code that uses a filesystem instead of storing images into the DB.

I would also be VERY interested in that.....

- Justin

turbo.:R
01-21-2008, 11:07 PM
the first page of user entries works fine but when i click on the second page nothing comes up. y???
first page
http://www.phillydubs.com/verwustung/vbgarage.php?do=list
second page
http://www.phillydubs.com/verwustung/vbgarage.php?do=$_REQUEST[do]&perpage=25&page=2

SVTCobraLTD
01-21-2008, 11:14 PM
second page
http://www.phillydubs.com/verwustung/vbgarage.php?do=$_REQUEST[do]&perpage=25&page=2

Needs to link to http://www.phillydubs.com/verwustung/vbgarage.php?do=list&page=2

I would have to look around to find where you edit that but it is putting the wrong code in there.

SVT

RS2000CUSTOM
01-27-2008, 11:28 AM
I have just filled my first 100 "garage" members !

I am also unable to access page 2

Page 1

http://bbs.rallyesportescorts.co.uk/vbgarage.php?do=list

Page 2

http://bbs.rallyesportescorts.co.uk/vbgarage.php?do=$_REQUEST[do]&page=2&perpage=100

Any help much appreciated :up:

RS2000CUSTOM
01-27-2008, 12:03 PM
Update !

I modified in my browser address bar and added - vbgarage.php?do=list&page=2 as stated by STVcobra

This gave me access to the 101 onwards garage members etc

BUT

When I used the page 1 link on the lower right hand corner of page 2 it again gave me a blank white screen !

Hope this is of use to the people who know what they are doing ! - lol

GotVtec
01-27-2008, 12:44 PM
To fix the white page error:

In the vbgarage.php, goto line 333, replace this code:

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

With this code:

$pagenav = construct_page_nav(
$pagenumber, $perpage, $garagecount[garages],
'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=list', ''
. (!empty($vbulletin->GPC['perpage']) ? "&amp;perpage=$perpage" : "")
);

griffinzx10
01-28-2008, 03:54 PM
I have a question, and I am sorry if it had been mentioned in here, just 33 pages is a lot to read, so'll I risk getting flammed just to ask my question.
I downloaded this hack, and I am running VB version 3.6.8, my question is, IS there anyway to limit what MEMBERS can or cannot use this feature? It seems to be an all or nothing choice....

I would like to provide this to CERTAIN member groups...

Thanks

crucialjames
01-31-2008, 02:21 AM
Anyone here know how to add the latest uploads on forumhome. I have the old code for 3.0 but cant revise it to actually work :(

glate
01-31-2008, 01:27 PM
I have vBulletin 3.6.8 Patch level 2.

I don't find the following code explained in the Install.txt :

<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>

I read it should be in the NAVBAR's style, but there isn't.

Thanks

sml
01-31-2008, 04:33 PM
I have vBulletin 3.6.8 Patch level 2.

I don't find the following code explained in the Install.txt :

<td class="vbmenu_control"><a href="calendar.php?$session[sessionurl]">$vbphrase[calendar]</a></td>

I read it should be in the NAVBAR's style, but there isn't.

Thanks

its just telling you to put a link to vbgarage in your navbar. this could also be in your headed depending on your style. look in you navbar and header templates for words like members, faq, and calendar. copy one of the table data's, replace its info with vbgarage info and insert it

RobFerrari
01-31-2008, 07:06 PM
have there been any updates since 2006 or a better garage type tool for recent versions of vB?

sml
01-31-2008, 07:13 PM
have there been any updates since 2006 or a better garage type tool for recent versions of vB?

there are more versions around, none that i have been able to accesibly locate :mad: but someone may be working on a "tweak" here https://vborg.vbsupport.ru/showthread.php?t=144544&highlight=vbgarage