View Single Post
  #44  
Old 03-19-2006, 10:56 PM
Sidewindr Sidewindr is offline
 
Join Date: Oct 2002
Location: Australia
Posts: 174
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01084 seconds
  • Memory Usage 1,784KB
  • 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
  • (5)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