Back to vBulletin 3.5 Add-ons

vB Timeslip Database - for Automotive websites
Mod Version: 1.2, by deathemperor

This modification is in the archives.
vB Version: 3.5.4 Rating: (12 votes - 4.33 average) Installs: 180
Released: 18 Mar 2006 Last Update: 12 Dec 2006 Downloads: 812
Not Supported DB Changes Uses Plugins Template Edits Code Changes Additional Files  

Yes, finally I can release it here the converted version off Timeslips database for vbulletin 3.5.x. I made it as a product, try to change the file edits into plugin as best as I could but you still need to edit 2 files (optional). I can't think of an easy way to remove that but if anyone can, please pop in.

I've made the timeslips.php page XHTML valid. Of course the look has not been changed. Also made it fully phrased.

The permission is granted here

Spoiler (click to open)


Hi folks. Sorry I've been away for so long but I've been really busy lately & don't have much time to even get online anymore. I have to leave again for work in few minutes but I'll try to answer a couple of questions before I go.

As far as porting this hack over to vb3.5.0 goes, I haven't even upgraded my own site yet so I can't really give a specific date. It could be a month, it could be a year. I don't know.

If any of you coders wanna port this hack over yourself you have my permission.. However, if you use any of my code or design I would appreciate it if you'd leave my name & link (along with yours) at the bottom of the timeslips main page where it says "vB Timeslip Database v2.X by EvilLS1". You can add your name next to it ofcoarse. I've put alot of time & work into this hack and the links are helpful to me because they improve my site's page rank. So please show a little consideration there. Thanks.

one.eg6,
Go to your admincp, and look under custom profile fields. Find that field and set it so that its not a required field.

charlie css,
That does sound like the html is broken or pasted wrong in one of the templates. Re-pasting the code into these templates should fix it: getvehicleinfo, timeslips_customfields, modifytimeslip.

Close


Please let me copy what EvilLS1 posted in the 3.0 hack

Quote by EvilLS1
This is the newest version of EvilLS1's Timeslip Database hack. If you don't have an automobile related website ya might as well stop reading here because this will probably be of no use to you.. But if you do, read on!

What does it do? This hack does a few things. First, it will add a separate "Vehicle Profile" page to your forum where your users can enter their type of vehicle, engine, tranny, tires, horsepower, best 60' time, 1/8 mile time, 1/4 mile time, upload thier timeslip and more. Once the data is entered the timeslips.php page will display the info sorted by the best times, highest trap speeds, highest horsepower #s, proof of ET, or ET brackets (user selectable).

You can also ban users from editing their Vehicle Profile. This comes in handy if you have some users who insist on entering false data into the Timeslip Database just to be funny. To use this feature, just click on the user's vehicle profile, then click "user options" and set "Can edit vehicle profile" to no. The user will still be able to edit his regular profile, but not his vehicle profile.

Features include:
*The ability to sort by:
-1/4 Mile ET
-1/4 Mile MPH
-1/8 Mile ET
-1/8 Mile MPH
-60' Time
-Horsepower
-Cars with proof of ET (actual timeslip)
-N/A cars only
-Username
-ET brackets
*Show the average ET, MPH, and HP for your site.
*Vehicle Profile (separate from user profile)
*Ability to ban users from editing their vehicle profile
*Users can upload their timeslip in the vehicle profile. (New!)
*Timeslip uploads can be disabled in the admincp. (New!)
*Admin can delete user's uploaded timeslip. (New!)
*Maximum width, height and filesize for timeslip uploads can be set in the admincp. (New!)
*Admin can set an ET for which a timeslip is required if user's ET is quicker. (New!)
*Installer

Demo:

http://www.ls6.com.au/forum/timeslips.php?
Installation overview:
Files to edit: (2)- member.php (1), functions_user.php (2), image.php(2)
Files to upload: (2)- timeslips.php, slipicon.gif
Templates to edit: (2)- USERCP_SHELL, navbar
Templates to add: 0
Phrases to add: 0

Why do I still have to edit files ?
The reasons for those editions are because you don't want users to see the timeslips profile fields in the memberlist/member profile/edit profile

and just that. So that means if you exclude those the hack will still work whatever

Installation instructions:

BACK UP EVERYTHING BEFORE INSTALLING ANY HACK

Firstly please read the file Instructions.txt file on how to install this hack.

the steps are: Import the product-timeslips.xml file. Do file and template editions. Upload files to correct folder. Then enjoy it !

I have tried all that I can by installing this hack on a fresh board and solved *almost* all the problem. But if you find any errors, please post it here (just do not duplicate things :P ).

Upgrading

I haven't had a chance to do the upgrade because I convert this for a fresh vb3.5 board. I've set up things that I think it's ready for the upgrade. I'm willing to test the upgrade on your board if anyone can give.

For the upgrade to work, you must use the latest version of timeslips which can be taken from here: vB Timeslip Database -for Automotive websites

Support

I'll try my best to give supports. But please understand due to my heavy busy I may miss your post. Please understand.

Screenshots?

The shots from its 3.0 version are fine.
here's the link: http://www.vbulletin.org/forum/showt...ight=timeslips

Changes Logs

03/18/2006: version 1.1 Fully phrased the hack.
03/19/2006: fix the problem showing your current timeslip image when editing your timeslip. To upgrade simply re-import product-timeslips.xml.

03/19/2006: fixed a few bugs in this post:

Spoiler (click to open)


There's a few bugs ..

1. The enforcement for uploading of image if under the set time does not appear to work.
2. The maximum timeslip image size is not changeable in the admincp
3. The users hopepage on the Details page shows up as the user looking at the details not the user.
4. The timeslip pic that comes up is the users avatar in my case.
5. The DECIMAL values for fields 52,53 and 55 should be DECIMAL(6,3) NOT DECIMAL(4,3) in the XML Installer File.
6. Hooks would be much better than file edits

The fix for #3 is to change the following in getvehicleinfo template..

FROM
Code:
<tr>
	<td class="alt1" width="50%">
		<strong>$vbphrase[timeslips_homepage]</strong>:
</td>
<td class="alt2" width="50%">
		$homepage
	</td>
</tr>
TO

Code:
<if condition="$show['homepage']">
	<tr>
		<td class="alt1" width="50%">
			<strong>$vbphrase[timeslips_homepage]</strong>:
		</td>
	<td class="alt2" width="50%">
		<a href="$userinfo[homepage]" target="_blank" dir="ltr">$userinfo[homepage]</a>
	</td>
	</tr>
</if>

Close
. Again to upgrade just reimport the product file.

03/20/2006: Hack version change to 1.1.3: Changed the field of field 52,53,55 to decimal (6,3). Added one more file editions into the instructions file to fix showing proper image. So bad to add another file edit but this is becaus there is no hook in image.php. this is how to do it:

PHP Code:
###### In image.php find:

if ($_REQUEST['type'] == 'profile'// do not modify this $_REQUEST


###### REPLACE IT WITH:

if ($_REQUEST['type'] == 'profile' or $_REQUEST['type'] == 'timeslip'// do not modify this $_REQUEST


###### FIND:

    
else
    {
        
$table 'customavatar';
    }

###### ABOVE THIS ADD:

    
else if ($_REQUEST['type'] == 'timeslip')
    {
        
$data 'timeslippicdata';
        
$table 'customfile';
    } 
Again to upgrade you need to import the product file again to overwrite. then do the above edit.

03/23/2006: Update: fix a JS error when submitting the new timeslip. (Thanks Sidewindr). Also the new product will attempt to remove your old vb3.0 options then add the new ones, this is for upgrading from timeslips for vb3.0 to vb3.5 . I didn't test that tho.

12/05/2006: Version 1.2 for vb3.6 released.

12/09/2006: minor fix for missing adding field50.

12/12/2006: fix the error: Fatal error: Call to undefined function build_hiddenprofilefield_cache() in C:\Program Files\xampp\htdocs\folder\admincp\plugin.php(1468) : eval()'d code on line 6

Please click install if you use this hack for updates.

This hack is free (why not?) but donation are welcome, my paypal is email . Thank you.

end of presentation, hope I don't miss anything.

Download

This modification is archived and cannot be downloaded.

Similar Mods

vB Timeslip Database -for Automotive websites vBulletin 3.0 Full Releases
vB Timeslip Database -for Automotive websites vBulletin 2.x Full Releases

vblts.ru supports vBulletin®, 2022-2024