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.
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..
Action-N, I've edited the initial post and included a link to your uninstaller. If there are any other changes needed to be made, let me know.
Ok that's cool, that way it doesn't get lost. I thought I'd ask if you have time to look over what I have ready for 3.2. I sent a copy to integra99, but haven't heard back. He wanted me to send him a copy an talk about something before I released anything. Don't know what he wanted, but I'd like some coders to look it over and optimize code or help with the remaing bugs.
Ok that's cool, that way it doesn't get lost. I thought I'd ask if you have time to look over what I have ready for 3.2. I sent a copy to integra99, but haven't heard back. He wanted me to send him a copy an talk about something before I released anything. Don't know what he wanted, but I'd like some coders to look it over and optimize code or help with the remaing bugs.
SELECT vbgarage_images.*
FROM vb3vbgarage_images
ORDER BY vbgarage_images.vbgarageid DESC
LIMIT 5
As you can see from the error, it's trying to grab the information out of "vb3vbgarage_images ". Not knowing if this is a table prefix I'd just do a search for this code an check/ fix that line. I don't use a prefix so maybe this mod doesn't work with prefixes. In the mean time just do a search for "ORDER BY vbgarage_images.vbgarageid DESC" an that should find the above problem query.
As you can see from the error, it's trying to grab the information out of "vb3vbgarage_images ". Not knowing if this is a table prefix I'd just do a search for this code an check/ fix that line. I don't use a prefix so maybe this mod doesn't work with prefixes. In the mean time just do a search for "ORDER BY vbgarage_images.vbgarageid DESC" an that should find the above problem query.
Action-N, have you gotten any of my PM's? I haven't gotten any replies, so I'm just wondering..
As you can see from the error, it's trying to grab the information out of "vb3vbgarage_images ". Not knowing if this is a table prefix I'd just do a search for this code an check/ fix that line. I don't use a prefix so maybe this mod doesn't work with prefixes. In the mean time just do a search for "ORDER BY vbgarage_images.vbgarageid DESC" an that should find the above problem query.
This section is in INDEX.php
PHP Code:
/ START VBGARAGE HACK
// ### VBGARAGE #########################################################
$result_latest = $DB_site->query("
SELECT vbgarage_images.*
FROM " . TABLE_PREFIX . "vbgarage_images
ORDER BY vbgarage_images.vbgarageid DESC
LIMIT 5
");