Quote:
Originally Posted by deathemperor
Hi folk.
#1: I don't quite understand what you mean on this. more explanations would be better.
|
The option in admin CP to enforce a timeslip pic/scan if the timeslip is under say 13.00 seconds or what ever you choose... I think you're missing some of the necessary edits/checks from profile.php I am looking at them now ... but the enforcement options to stop Timeslips under the value set in the admin cp being submitted without a pic.
etc etc etc
Actually the issue appears to be in the modifytimeslip template, the java validation script appears not to run/execute properly. It should also check that if a link is given it is to a jpg or gif file not to a htm etc.
Quote:
Originally Posted by deathemperor
#2: fixed
#3: fixed
#4: it can't be, you can try looking at the demo site in the above post.
|
It is possible, trust me .. from a fresh install this does not work. You are missing the following edits in image.php
Find in image.php
Code:
// ######################### REQUIRE BACK-END ############################
if ($_REQUEST['type'] == 'profile') // do not modify this $_REQUEST
{
require_once('./global.php');
}
REPLACE with
Code:
// ######################### REQUIRE BACK-END ############################
// if ($_REQUEST['type'] == 'profile') // do not modify this $_REQUEST
if ($_REQUEST['type'] == 'profile' or $_REQUEST['type'] == 'timeslip') // do not modify this $_REQUEST
{
FIND
Code:
if ($vbulletin->GPC['type'] == 'profile')
{
$table = 'customprofilepic';
// No permissions to see profile pics
if (!$vbulletin->options['profilepicenabled'] OR (!($vbulletin->userinfo['permissions']['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canseeprofilepic']) AND $vbulletin->userinfo['userid'] != $vbulletin->GPC['userid']))
{
exec_shut_down(); // Update location with 'No permission to view profile picture'
header('Content-type: image/gif');
readfile(DIR . '/' . $vbulletin->options['cleargifurl']);
exit;
}
}
Replace with
Code:
if ($vbulletin->GPC['type'] == 'profile')
{
$table = 'customprofilepic';
// No permissions to see profile pics
if (!$vbulletin->options['profilepicenabled'] OR (!($vbulletin->userinfo['permissions']['genericpermissions'] & $vbulletin->bf_ugp_genericpermissions['canseeprofilepic']) AND $vbulletin->userinfo['userid'] != $vbulletin->GPC['userid']))
{
exec_shut_down(); // Update location with 'No permission to view profile picture'
header('Content-type: image/gif');
readfile(DIR . '/' . $vbulletin->options['cleargifurl']);
exit;
}
}
else if ($vbulletin->GPC['type'] == 'timeslip')
{
$table = 'customfile';
}
Quote:
Originally Posted by deathemperor
#5: that was because of my lack of vehicle knowlegde. I will change that if more ppl want it.
|
Trust me you need to change the DECIMAL values to 6,3 for those fields as there are not many people running under 9.999 seconds on the quarter mile. I'm trying to impart some vehicle knowledge here
Quote:
Originally Posted by deathemperor
#6: There are no other possible ways to remove those file editions AFAIK. If you can do it just point me out. I'll be greatful.
|
I am unsure as well but there HAS to be a way ... some far more complex hacks manage to do it but it requires reworking of the code.
Quote:
Originally Posted by deathemperor
#7: I'll be more greatful if you keep the credit of timeslips on your site. Please do respect the volunteers. Thank you.
|
Well it would hardly be accurate would it seeing that the hack is not complete and needs extra work to get it working

Lets get it all working first.