Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vBGarage v3.1.1 (now with GD-Lib support!) Details »»
vBGarage v3.1.1 (now with GD-Lib support!)
Version: 1.00, by magnus magnus is offline
Developer Last Online: Feb 2012 Show Printable Version Email this Page

Version: 3.0.0 Rating:
Released: 04-08-2004 Last Update: 04-13-2004 Installs: 371
DB Changes
 
No support by the author.

[high]***[/high]CLICK HERE FOR vB3.0.5 INSTALLER/UPDATE[high]***[/high]


vBGarage v3.1.1 (now with GD-Lib support!)

Description
This hack will allow your users to create a virtual garage where they can store photos, details, etc.. about their vehicle (this can be modified to suit forums of other interests).

Latest Uploads will be displayed on Garage List.

Forum users can now leave comments in member garages.

Admin functions are available in the AdminCP.

This version contains the ability to limit access by usergroup(s). All templates are 100% XHTML Verified!

Information
Tested and developed on vB 3.0.0 Gold.

Requires
GD 2.0+ Library

Demo
http://www.sffba.net/forum/vbgarage.php?do=list (Temporary)

This hack, as like the rest of my hacks, are FREE. However, if you enjoy this hack and feel the need to donate something for my time you can do so by clicking the icon below:


*NOTE: Those who donate are explicitly granted permission to remove the "Powered by" information from the vBGarage footer.

*NOTE: When donating, please include your forum url. Thanks!

Version History
v3 - Initial release. Let's hope I don't have alot of entries here.
v3.0.1 - Added GD-Lib Support!
v3.1.0 - Added User Comments, Latest Uploads on Garage List, AdminCP Options
v3.1.1 - Added ability for Admin to "edit" users' garages. Use ImageCopyResampled(); over ImageCopyResized(); for better thumbnail quality.

Planned Features
- Multiple entries per user.
- Possible integration with Photopost/Coppermine/etc..

If you use this, please click

* Installation script by John

[hr]-[/hr]
UPGRADES

v3.1.0 -> v3.1.1 UPGRADE INSTRUCTIONS

v3.0.1 -> v3.1.0 UPGRADE INSTRUCTIONS

v3.0 -> v3.0.1 UPGRADE INSTRUCTIONS

[hr]-[/hr]
MODIFICATIONS/ADD-ONS

[high]1. Add "Who's Online" Location by magnus[/high]
[high]2. Organize Your vBGarage Templates by magnus[/high]
[high]3. Increase Thumbnail Image Quality (v3.1.1 and older) by magnus[/high]
[high]4. Alphabetize Garage List by magnus[/high]
[high]5. Add "Latest Uploads" to FORUMHOME by magnus[/high]
[high]6. EvilLS1's Timeslip Database Integration by SVTOA[/high]
[high]7. Installer/Uninstaller by Action-N[/high]
[high]8. vBulletin 3.0.5 Compatible Installer/Update by noppid[/high]

Supporters / CoAuthors

Show Your Support

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

Comments
  #887  
Old 06-01-2004, 06:58 PM
frankenberrie's Avatar
frankenberrie frankenberrie is offline
 
Join Date: Dec 2002
Location: N.Y.
Posts: 69
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is it possible to customize the fields? I would love to install this hack on my boards. I have a n ATV / Snowmobile site that I would like to add this onto. I do not need the slip feature.. Thank you
Reply With Quote
  #888  
Old 06-02-2004, 07:48 AM
mpikounis mpikounis is offline
 
Join Date: Apr 2004
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mpikounis
Ok, this may have been answered before but I have been searching this thread for about 1 hour now and I cannot find anything similar :-)

It all works fine except when you upload an image it does not display it. Instead I get a red X. Looking at the database the row is there BUT the size of the "data" field is 0. Any ideas? Please?
I managed to make this work so here is how if anyone else runs into the same problem:

My guess was that uploads were failining due to the fact that my service provider is using SAFE_MODE. Looking at the file upload code of vbulletin I did the following changes to vbgarage.php:

Look for

$name = $_FILES['src']['name'];
$data = addslashes(fread(fopen($_FILES['src']['tmp_name'], "r"), filesize($_FILES['src']['tmp_name'])));
$type = $_FILES['src']['type'];


and replace with

// make up a temporary name
$tmp_name = 'vbupload' . substr(TIMENOW, -4);

// check file exists on server
if ($vboptions['safeupload'])
{
$path = $vboptions['tmppath'] . "/$tmp_name";
if (move_uploaded_file($_FILES['src']['tmp_name'], $path) AND file_exists($path))
{
$filename = $path;
}
}
else if (file_exists($upload))
{
$filename = $_FILES['src']['tmp_name'] ;
}

$name = $_FILES['src']['name'];
$data = addslashes(fread(fopen($filename, "r"), filesize($filename)));
$type = $_FILES['src']['type'];


Now... this worked with my server that uses SAFE_MODE. I am not sure it will work if SAFE_MODE is not used, I haven't tried it!
Reply With Quote
  #889  
Old 06-02-2004, 08:17 AM
SaN-DeeP's Avatar
SaN-DeeP SaN-DeeP is offline
 
Join Date: Jun 2002
Location: Mumbai, India
Posts: 1,195
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by SaN-DeeP
i want to add additional fields to description area where users add there cards etc.
how can i do that. please help a little here.

I want to enable a drop down box from where users can select some components etc. to customize the area quite well.
and also add a few more fields to the display area where all users cars etc. are shown in garage

thnx.
Sandy...
bumping again can someone please help.
thnx
Sandy...
Reply With Quote
  #890  
Old 06-02-2004, 10:02 AM
Envy-UK Envy-UK is offline
 
Join Date: Mar 2004
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try looking here; https://vborg.vbsupport.ru/showpost....&postcount=640

It wouldn't take much effort to change the field names, etc.
Reply With Quote
  #891  
Old 06-02-2004, 12:12 PM
alfaowner alfaowner is offline
 
Join Date: Jul 2003
Location: London
Posts: 201
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by alfaowner
Ok, A REQUEST:

When submitting for the first time, is there a way to have the vb garage displayed rather than it going to the forum home. Perhaps the submit button requires some attn, I have no idea, but it is a little annoying so far.
I apologise to bump, but this is so frustrating to have to keep navigating back through the board just to get back to the page you was on, it really does need a redirect after submit has been pressed just the same way it would redirect if you posted to a thread, please someone help. with 3500 budding members wanting to post and edit the garage, its rateher annoying not being able to have the knowledge to make the fix on my own. i tried to fix this and broke the board all repaired now though)

Please help if you can.

AO
Reply With Quote
  #892  
Old 06-02-2004, 01:14 PM
Envy-UK Envy-UK is offline
 
Join Date: Mar 2004
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you PM me login information for your board, with access to the hack, I'll see what I can do.

I've never heard of this kind of bug before, as, usually, when you hit the submit button, you're taken back to the "Edit Garage" page.
Reply With Quote
  #893  
Old 06-02-2004, 01:52 PM
SVTOA SVTOA is offline
 
Join Date: Oct 2002
Location: In a fishbowl
Posts: 301
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Envy-UK
If you PM me login information for your board, with access to the hack, I'll see what I can do.

I've never heard of this kind of bug before, as, usually, when you hit the submit button, you're taken back to the "Edit Garage" page.
Yup. That's how it works for me too. Sounds like someone did some "fixing" that created this problem...
Reply With Quote
  #894  
Old 06-02-2004, 09:50 PM
Manny Manny is offline
 
Join Date: May 2004
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a way to have more than one car per user?
Reply With Quote
  #895  
Old 06-02-2004, 10:28 PM
r6xual r6xual is offline
 
Join Date: May 2004
Location: Minnesota
Posts: 36
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Looks like everything went well as far as the install goes, however when i go to edit the vbgarage in the User CP, i am unable to save the info. After i click on submit i get the following error

Quote:
Warning: Cannot modify header information - headers already sent by (output started at /home/gpf/public_html/forums/includes/init.php:866) in /home/gpf/public_html/forums/vbgarage.php on line 183
Anyone have an idea why this is happening?

also now when i try and log out i get the following error

Quote:
Unable to add cookies, header already sent. File: /home/gpf/public_html/forums/includes/init.php Line: 866
Arrrrrg.
Reply With Quote
  #896  
Old 06-02-2004, 11:09 PM
0ptima 0ptima is offline
 
Join Date: Feb 2002
Posts: 346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Manny
Is there a way to have more than one car per user?
That is supposed to be available in the next version
Reply With Quote
  #897  
Old 06-02-2004, 11:27 PM
Zilvia's Avatar
Zilvia Zilvia is offline
 
Join Date: Apr 2002
Location: Denver, CO
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just installed vB Garage on two of my forums http://www.zilvia.net and http://www.boostaholic.org and now I cannot logout, when I try I get this error "Could not find phrase 'logout_missing_userid'."

I know in one of the last steps it asks you to update any phrase to update the system.

Any help?
Reply With Quote
  #898  
Old 06-02-2004, 11:29 PM
noppid noppid is offline
 
Join Date: Mar 2003
Location: Florida
Posts: 1,875
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by r6xual
Looks like everything went well as far as the install goes, however when i go to edit the vbgarage in the User CP, i am unable to save the info. After i click on submit i get the following error



Anyone have an idea why this is happening?

also now when i try and log out i get the following error



Arrrrrg.
You most likely have whitespace before or after php tags. ie. before <?php or after ?>.
Reply With Quote
  #899  
Old 06-02-2004, 11:49 PM
GoTTi GoTTi is offline
 
Join Date: Jun 2002
Posts: 1,346
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

when is the new version coming out? update planned yet??
Reply With Quote
  #900  
Old 06-03-2004, 12:42 AM
Odoin's Avatar
Odoin Odoin is offline
 
Join Date: Jun 2002
Location: Whos your Jim Bob?
Posts: 98
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Version 3.20 is done and working on the developers site... He asked a few weeks ago about someone making a upgrade script for the DB and I said I would. He said he would send me the files but I have not gotten anything... I hope this version comes out very soon as well .


Quote:
Originally Posted by Da_GoTTi
when is the new version coming out? update planned yet??
Reply With Quote
  #901  
Old 06-03-2004, 08:35 AM
AlpineFX AlpineFX is offline
 
Join Date: Nov 2001
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

vBGarage Installation Script

Fatal error: Call to undefined function: compile_template() in /home/tommy/public_html/forums/admincp/install_vbgarage.php on line 318

I get this?
Reply With Quote
Reply


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 03:02 AM.


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.07163 seconds
  • Memory Usage 2,379KB
  • Queries Executed 31 (?)
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
  • (9)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
  • (4)pagenav_pagelinkrel
  • (16)post_thanks_box
  • (16)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (16)post_thanks_postbit_info
  • (15)postbit
  • (16)postbit_onlinestatus
  • (16)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