Thread: Major Additions - DownloadsII
View Single Post
  #58  
Old 07-04-2006, 12:52 AM
CyberRanger's Avatar
CyberRanger CyberRanger is offline
 
Join Date: Mar 2004
Posts: 1,319
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by DementedMindz
if you post your downloads.php file in about a hour or so as soon as i finish my stuff ill do beyond compare and do the changes for you... or else grab the free 30 day trial of beyond compare and look at both files
If you want to be sure to keep your changes, getting something like beyond compare is a good idea. Once we give everyone a chance to get this secure version installed, the changes will be big and I won't post this kind of info.

For now, here they are from Ron1n's last version. I realized I didn't really need his file.

FIND:
PHP Code:
if ($file['link'] == 0
BELOW that ADD:
PHP Code:
// clean out temp folders
if ($handle1 opendir($dl->url)) 
{        
    while (
false !== ($filedir1 readdir($handle1))) 
    {
        if (
is_dir($dl->url.$filedir1) && strpos($filedir1"ec_") === 0)
        {
            if (
$handle2 opendir($dl->url.$filedir1)) 
            {
                while (
false !== ($filedir2 readdir($handle2))) 
                {
                    if (
$filedir2 != "." && $filedir2 != "..")
                    {
                        
unlink($dl->url.$filedir1."/".$filedir2);
                    }
                }
            }
            
rmdir($dl->url.$filedir1);
            
closedir($handle2);
        }
    }        
    
closedir($handle1);

FIND:
PHP Code:
    if ($_POST['submit'] != ''
    {        
        
// EC_DEMO_MODE
        
if ($dl->ec_demo_mode())
        {
            eval(
standard_error(fetch_error('ec_demo_mode')));
        }
        
// EC_DEMO_MODE 
BELOW that ADD:
PHP Code:
$_POST['dname'] = strip_tags($_POST['dname']);
$_POST['author'] = strip_tags($_POST['author']); 
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01133 seconds
  • Memory Usage 1,792KB
  • 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_php
  • (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