Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons

Reply
 
Thread Tools
VbGarage 3.5 Details »»
VbGarage 3.5
Version: 1.4, by Trigunflame Trigunflame is offline
Developer Last Online: Nov 2019 Show Printable Version Email this Page

Version: 3.5.4 Rating:
Released: 03-08-2006 Last Update: 03-09-2006 Installs: 370
DB Changes Template Edits
Additional Files  
No support by the author.

VbGarage 3.5
Let Your Members Show Off Their Rides !!!


Summary:

This is a semi-direct port of the hack located at:
https://vborg.vbsupport.ru/showthread.php?t=63681

The author has given me permission to re-release this hack under his 3.1.1 codebase, and as such I have converted it Vbulletin 3.5 support which involved a good many changes.

Also I changed a couple templates, and some html fixes so it will look a little better than it used to, feel free to suggest any other bugs that need to be fixed.

One last thing, although I will "Try" to get around to fixing any bugs that come in, this is NOT my hack, and therefore I will not associate myself with supporting this hack; I merely have done a service for the people that requested the port.

Credit goes to the original authors: magnus, noppid, action-n

Again: THIS IS NOT MY CODE. AND IT IS NOT SUPPORTED.


Information:

1. Make sure you have a writable tmp directory.
2. This script only supports jpg, png, gif files.
3. I dont plan on re-writing this entire script to make it bug free, so please dont ask me to do so.

Upgrade From Vbulletin 3.x.x :

1. There is no upgrader; you just need 2 do a couple things.
2. More than likely you can leave your old vbg tables (havnt tested).
3. You _Do_ need to delete any previous settings/phrases/templates though.
4. Use phpmyadmin or w/e you use, and search your database for vbg with a wildcard it should locate anything that has that name in it; and delete them. Then follow the INSTALL.txt

Installation:

1. Download Zip File
2. Read INSTALL.txt
3. Click install if you like


Changes:

3/10/2006 8:43am - Fixed Comments; they now post to correct Garage.
3/9/2006 10:37pm - Image Types are determined manually.
1. Did some actiontemplate optimizations, so only the necessary templates are loaded on the pages needed.
2. Removed the text field limit for describing your ride.
3/9/2006 10:37pm - Image Types are determined manually.
3/9/2006 12:54pm - A change to image output.
3/9/2006 12:06pm - Attempt to fix image corruption.


To Upgrade:

Simply overwrite the vbgarage.php file.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #172  
Old 04-09-2006, 04:36 PM
Tru2Chevy Tru2Chevy is offline
 
Join Date: Sep 2005
Location: New Jersey
Posts: 95
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Oddjob
So this one is a fake?

Eh, i dont run a car forum, no need for all the little xtras.
No vBGarage was developed before vBPicGallery. I've seen several sites using each, and I prefer the garage. As soon as the updated version of garage is released here I'll have it installed on my site.

- Justin
Reply With Quote
  #173  
Old 04-10-2006, 07:22 PM
Puntoboy Puntoboy is offline
 
Join Date: Sep 2005
Location: Northampton UK
Posts: 196
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

brilliant, been waiting for this.

i'm just a little worried.

i had this hack on my forum when i was running 3.0.7... and it hasn't worked since the upgrade to 3.5.2 obviously. i'm using a new stles and don't think i have any of the old templates created.

should the data still be in the database? if so, what do i need to do to upgrade?

cheers guys.
Reply With Quote
  #174  
Old 04-11-2006, 08:24 PM
Gizmo999 Gizmo999 is offline
 
Join Date: Dec 2005
Location: In my own virtual world
Posts: 126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've got a problem with the link to the next page once I get beyond 25 members in my garage.

the link tries to take you to here

Code:
/forum/vbgarage.php?do=$_REQUEST[do]&page=2&perpage=25
and i think the correct link should be

Code:
/forum/vbgarage.php?do=&page=2&perpage=25
what needs altering to correct this please??
Reply With Quote
  #175  
Old 04-12-2006, 12:41 AM
PBX1 PBX1 is offline
 
Join Date: Mar 2006
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gizmo999
I've got a problem with the link to the next page once I get beyond 25 members in my garage.

the link tries to take you to here

Code:
/forum/vbgarage.php?do=$_REQUEST[do]&page=2&perpage=25
and i think the correct link should be

Code:
/forum/vbgarage.php?do=&page=2&perpage=25
what needs altering to correct this please??
I've got the same problem. Hopefully there is an easy fix.

I found a quickie fix, look for this line
if ($perpage == 0 or $perpage > 200) { $perpage = 25; }
and change 25 to a higher number. I have 31 garages so I've changed it to 40 until a proper fix
shows up. Opps sorry look for this in vBGarage.php
Reply With Quote
  #176  
Old 04-12-2006, 10:01 PM
Gizmo999 Gizmo999 is offline
 
Join Date: Dec 2005
Location: In my own virtual world
Posts: 126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think i fixed it, you need to find lines in vbgarage.php

Code:
$pagenav = construct_page_nav(
		$pagenumber, $perpage, $garagecount[garages], 
		'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
And replace with

HTML Code:
$pagenav = construct_page_nav(
		$pagenumber, $perpage, $garagecount[garages], 
		'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=', ''
it worked for me
Reply With Quote
  #177  
Old 04-13-2006, 12:49 AM
PBX1 PBX1 is offline
 
Join Date: Mar 2006
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good stuff Gizmo, works for me too!:banana:
Reply With Quote
  #178  
Old 04-13-2006, 02:13 AM
djjeffa's Avatar
djjeffa djjeffa is offline
 
Join Date: Aug 2004
Posts: 521
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gizmo999
I think i fixed it, you need to find lines in vbgarage.php

Code:
$pagenav = construct_page_nav(
		$pagenumber, $perpage, $garagecount[garages], 
		'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=$_REQUEST[do]', ''
And replace with

HTML Code:
$pagenav = construct_page_nav(
		$pagenumber, $perpage, $garagecount[garages], 
		'vbgarage.php?' . $vbulletin->session->vars['sessionurl'] . 'do=', ''
it worked for me
thanks giz it worked now i have to find a way to fix the multable cars

if not is there away for admin to delet some cars?
Reply With Quote
  #179  
Old 04-13-2006, 10:10 AM
cablemirc cablemirc is offline
 
Join Date: Sep 2003
Location: El Cajon, Ca
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

any newly uploaded pics show up fine, but the old imaged uploaded do not show. however, the image filenames show with teh red x's///

check it out.
http://www.clubprotege.com/forum/vbgarage.php?do=list

the first car you see (the white one) was uploaded after the upgrade, the rest are from before. how do i correct this?
Reply With Quote
  #180  
Old 04-13-2006, 10:26 AM
xdsl xdsl is offline
 
Join Date: Apr 2006
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

looks nice...
i want to try it now.. :banana: :banana: :banana:
Reply With Quote
  #181  
Old 04-13-2006, 10:50 AM
cablemirc cablemirc is offline
 
Join Date: Sep 2003
Location: El Cajon, Ca
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this apprears to be a variation of the pjpeg issue in SQL mentioned earlier.. some of my uploaded images actually show as type JPG in teh database, but some show as pjpeg, although all files are jpgs. how does one edit the existing type fields in SQL to show all files as type jpg? (and if i'm way off track, ignore this post and please try to help me fix this)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:17 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05113 seconds
  • Memory Usage 2,313KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_code
  • (2)bbcode_html
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete