Version: , by Rick Sample
Developer Last Online: Jun 2009
Version: Unknown
Rating:
Released: 02-17-2005
Last Update: Never
Installs: 0
No support by the author.
I've mentioned it in someone elses thread and other people have mentioned it in the garage threads themselves, but I don't think anyone has created a thread about it!
Anywase, my garage is growing pretty fast and litterally a ton of users have PM'd me on my forums asking for a random picture to replace the user id number on the left of their garage and if they don't have any photos uploaded, to have a "picture pending" type photo to appear. Having a huge list of usernames, just doesn't cut it if you know what I mean when your forums get so big because users don't have time to click every one, they want a quick and easy way to 'quick preview' so they can click on only the garages that appeal to them!
This is not a service request by all means, but if someone could develop such an add-on to the garage, I would be willing to give you a 1 month advertising package to my site that receives an average of 2500 uniques per day! Just a little something to show my appritiation, thats all I'm sure everyone that uses the garage will thank you because this subject has been brought up many many times in a ton of threads!
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
For what version of vBGarage are you requesting this?
I'm not even sure I understand you correctly, however what you are asking is probably doable despite me not understanding the explaination.
4.1.0
In short, in the garage list it goes: member number, username, car, and last activity
Just replace the member number with a random or fixed photo from the members garage. If the member doesn't have a photo, make it show a fixed "image pending" photo!
Action N used to have this on his release over at his site, but he took that option down for some reason! I've just been getting a HUGE request for this over at my forums from all members. One member mentions it to someone, the next thing you know, the whole board is PMing you lol
If it helps any, here is a quick photochop of what I mean Just have every garage have a random photo from that garage and the garages with no photos will get a different image saying no photo avail
Do I have any takers??? I'm sure its a very simple hack, I have limmited knowledge of PHP though, so I wouldn't even know where to begin with something of this size
Of course would you be willing to hook a brother up with a few lines of code? I'd be willing to hook you up with free site-wide text links or whatever else you may want
I actually found someone to do this on my site in database mode, realy nice! I switched over to File mode, and now I just have red X's. Anyone wouldn't know how to take a hack like this and convert it from using the database images over to the file system??
Here is the garage code found in my vbgarage.php for the random images, if that wil help anyone thats wants to give this code a shot to tell it to pull the random pics from the file system instead of the database
PHP Code:
// START OPAQUE
if ($_REQUEST['do'] == 'randompic')
{
globalize($_REQUEST, array( 'id' => INT ));
globalize($_REQUEST, array( 'garage' => INT ));
if (empty($id) )
{
eval (print_standard_error('error_requiredfields'));
}
// filesystem hack (nop)
if( !$vbg_use_fs )
{
// get thumbnail from DB
$image = $DB_site->query_first("
SELECT thumb,userid FROM " . TABLE_PREFIX ."vbgarage_images WHERE userid = $id AND id = $garage LIMIT 1
");
if(!$image)
{
$imagee = $DB_site->query_first("
SELECT thumb FROM " . TABLE_PREFIX ."vbgarage_images WHERE name = 'noimage' LIMIT 1
");
I didn't take this on because I was not publishing a hack that does 20 calls for thumbnails to vbgarage.php. To do this properly, there needs to be a significant change in the code IMO.