vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Add-On Releases - CND Garage - Timeslips (https://vborg.vbsupport.ru/showthread.php?t=217751)

burntire 07-16-2009 07:59 PM

Everyone seems to like the setup on my site.

Are there any know issues upgrading to the commercial version?

Dylanblitz 07-16-2009 08:06 PM

Quote:

Originally Posted by burntire (Post 1850113)
Everyone seems to like the setup on my site.

Are there any know issues upgrading to the commercial version?

Glad they like it :)

No issues that I can think of. The vehicle and timeslip tables, phrases and plugins are the exact same as the commercial. I just need to finish the upgrade script and test it out. If you are thinking about doing it let me know and I'll put more effort into the script. Right now all my free time is going into enhancements since no one has asked about upgrading :)

burntire 07-16-2009 08:41 PM

Quote:

Originally Posted by Dylanblitz (Post 1850118)
Glad they like it :)

No issues that I can think of. The vehicle and timeslip tables, phrases and plugins are the exact same as the commercial. I just need to finish the upgrade script and test it out. If you are thinking about doing it let me know and I'll put more effort into the script. Right now all my free time is going into enhancements since no one has asked about upgrading :)

No rush. I want to see how things progress with my members.

Here is a suggestion

1. Have a way to force all model types to disapproved with one click. I found all the data to be too much. I manually had to deselect all the makes and models that do not apply to my site.

If basic is selected do I need to set anything in the usergroup permissions? I was just curious what basic defaults to?

Martyn1983 07-16-2009 08:49 PM

Quote:

Originally Posted by Dylanblitz (Post 1849614)
Ah yeah, having the folder in the right place is important :)
Good to hear it's working right now though. Let me know if you run into any problems. Might want to download the file in a previous post to fix some image issues.

https://vborg.vbsupport.ru/showpost....5&postcount=37

Cheers fella,

Updated the file. Just wondering - the 1/8 mile setting, it's not something we really need to list - can that be removed easily? Ironically, theres options to remove 1/4 mile but not 1/8.

Dylanblitz 07-16-2009 09:00 PM

Quote:

Originally Posted by burntire (Post 1850146)
No rush. I want to see how things progress with my members.

Here is a suggestion

1. Have a way to force all model types to disapproved with one click. I found all the data to be too much. I manually had to deselect all the makes and models that do not apply to my site.

If basic is selected do I need to set anything in the usergroup permissions? I was just curious what basic defaults to?

Since your site just deals with mustangs I would of just created the one make of ford and the models under it instead of importing the whole vehicle list. Bit of an after thought, but if you ever need to rebuild it's something to think about :)

If you are just using the basic permissions then you can leave the advanced groups alone. It will skip those settings when it's figuring out who has permissions to do what.

Dylanblitz 07-16-2009 09:09 PM

Quote:

Originally Posted by Martyn1983 (Post 1850158)
Cheers fella,

Updated the file. Just wondering - the 1/8 mile setting, it's not something we really need to list - can that be removed easily? Ironically, theres options to remove 1/4 mile but not 1/8.

There were some sites that run only 1/8 tracks so they asked me to give them the option to get rid of the 1/4 mile stuff. You sure you don't keep track of the 1/8 time? Most timeslips have that time and if you run a 1/8 mile track you won't have a 1/4 mile time to enter.

It can be removed with some file edits. If you want to do it let me know and I'll figure out what needs to be modified.

Martyn1983 07-16-2009 09:29 PM

I think its just been a standard thing, though you may be right. If thats the case then the 1/8 listing on the listings page maybe isnt an issue, I just wonder if the front page blocks could have just 1/4 times on them? Certainly where I am we refer to 1/4 mile times!

burntire 07-16-2009 09:32 PM

Quote:

Originally Posted by Dylanblitz (Post 1850165)
Since your site just deals with mustangs I would of just created the one make of ford and the models under it instead of importing the whole vehicle list. Bit of an after thought, but if you ever need to rebuild it's something to think about :)

If you are just using the basic permissions then you can leave the advanced groups alone. It will skip those settings when it's figuring out who has permissions to do what.

What does the basic mode default to?

Dylanblitz 07-16-2009 09:50 PM

Quote:

Originally Posted by burntire (Post 1850180)
What does the basic mode default to?

The basic mode uses the settings on the vboptions Garage General Settings tab. From
Write access usergroups down. If you use Advanced then it's the same thing, but more narrowly defined.

Dylanblitz 07-16-2009 10:22 PM

Quote:

Originally Posted by Martyn1983 (Post 1850176)
I think its just been a standard thing, though you may be right. If thats the case then the 1/8 listing on the listings page maybe isnt an issue, I just wonder if the front page blocks could have just 1/4 times on them? Certainly where I am we refer to 1/4 mile times!

Open garage_func_var.php

On Line 1426 Change

Quote:

$boxtitle = array(
'FirstCol' => construct_phrase($vbphrase[garage_global_vehicle], $vbulletin->options['garage_veh_names_default']),
'SecondCol' => $vbphrase['garage_thead_eighth'],
'ThirdCol' => $vbphrase['garage_thead_qtr']
);
to be

Quote:

$boxtitle = array(
'FirstCol' => construct_phrase($vbphrase[garage_global_vehicle], $vbulletin->options['garage_veh_names_default']),
'SecondCol' => $vbphrase['garage_thead_qtr'],
'ThirdCol' => ''
);
On Line 1432 Change
Quote:

$boxwidth = array(
'one' => '47%',
'two' => '13%',
'three' => '40%'
);
to be

Quote:

$boxwidth = array(
'one' => '47%',
'two' => '48%',
'three' => '5%'
);
On Line 1501 Change

Quote:

$boxdata = array(
'FirstCol' => '<a href="' . $vehicle_link . '" title="' . construct_phrase($vbphrase[garage_adm_view], $vbulletin->options['garage_veh_names_default']) . '">' . $vehicle_data[made_year] . ' ' . $vehicle_data[make] . ' ' . $vehicle_data[model] . '</a>',
'SecondCol' => $eightmilerun,
'ThirdCol' => $qtrmilerun
);
to be

Quote:

$boxdata = array(
'FirstCol' => '<a href="' . $vehicle_link . '" title="' . construct_phrase($vbphrase[garage_adm_view], $vbulletin->options['garage_veh_names_default']) . '">' . $vehicle_data[made_year] . ' ' . $vehicle_data[make] . ' ' . $vehicle_data[model] . '</a>',
'SecondCol' => $qtrmilerun,
'ThirdCol' => ''
);


All times are GMT. The time now is 05:50 PM.

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.01206 seconds
  • Memory Usage 1,756KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete