View Single Post
  #46  
Old 03-20-2006, 01:06 AM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Sidewindr
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.



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';
        }


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



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.



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.

Thanks for those, I did miss the edit on image.php. but as Gary's site I did not. Anyway, added.

Another user has requested to change the decimal range, so I changed it too.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01122 seconds
  • Memory Usage 1,793KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete