vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   VbGarage 3.5 (https://vborg.vbsupport.ru/showthread.php?t=109924)

Silver_2000_)! 11-10-2006 01:11 PM

Quote:

Originally Posted by tbradham
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/vbgara...e=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

Quote:

Originally Posted by touba
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

Quote:

Originally Posted by Silver_2000_)! (Post 1114213)
Did you ever figure out the renumbering issue ?
Where every page shows numbers 1-25 ?

Just change line 313 of vbgarage.php to read

Code:

        $count = $pos;

RobFerrari 11-19-2006 03:21 PM

Quote:

Originally Posted by kderentz (Post 1099099)
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


PHP Code:

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

with

PHP Code:

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

for the ID fix:

Search for
PHP Code:

$user fetch_userinfo($list[userid]); 

add below:
PHP Code:

$list['number']=$pos+$counter

then open
vbgarage_listbits in your style manager
replace:
PHP Code:

<td class="alt2" align="center">$count</td

with

PHP Code:

<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

Quote:

Originally Posted by Umberto (Post 1137008)
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....&postcount=326

You change line 313 in vbgarage.php:

From This:
Code:

$count = 0;
To this:
Code:

$count = $pos;
- Justin

Tru2Chevy 12-15-2006 04:39 AM

Quote:

Originally Posted by smoknz28 (Post 1138195)
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

Quote:

Originally Posted by smoknz28 (Post 1139198)
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

Quote:

Originally Posted by smoknz28 (Post 1140801)
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

Quote:

Originally Posted by Umberto (Post 1137008)
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


PHP 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

PHP Code:

$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
PHP Code:

$user fetch_userinfo($list[userid]); 

add below:
PHP Code:

$list['number']=$pos+$counter

then open
vbgarage_listbits in your style manager
replace:
PHP Code:

<td class="alt2" align="center">$count</td

with

PHP Code:

<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

Quote:

Originally Posted by smoknz28 (Post 1140801)
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...

Code:

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...
Code:

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

Then find....
Code:

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

and below that add
Code:

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

Quote:

Originally Posted by Silver_2000_)! (Post 1146676)
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

Quote:

Originally Posted by smoknz28 (Post 1146764)
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

Quote:

Originally Posted by smoknz28 (Post 1146771)
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

Quote:

Originally Posted by Tru2Chevy (Post 1139407)
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

Quote:

Originally Posted by Silver_2000_)! (Post 1146676)
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...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.


All times are GMT. The time now is 11:40 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.02032 seconds
  • Memory Usage 1,874KB
  • 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
  • (7)bbcode_code_printable
  • (12)bbcode_php_printable
  • (15)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