View Single Post
  #48  
Old 10-11-2002, 01:46 AM
Link14716's Avatar
Link14716 Link14716 is offline
 
Join Date: Jun 2002
Location: Georgia, USA
Posts: 2,519
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, I found where the problem is, I just don't know how to tell you how to fix it without replacing an entire action (fun fun). All I can say is cross your fingers!

Find:
PHP Code:
// ###################### Start GENERAL OPTIONS Update #######################
if ($action=="doupdateoptions") {

  
// only process the files if changes were made
  
if (is_array($HTTP_POST_FILES)) {

    if (
$HTTP_POST_FILES[scoreicon]['name'] != "")
      
$scoreicondata vpaupload("scoreicon");
    else
      
$scoreicondata "";

    if (
$HTTP_POST_FILES[kingicon]['name'] != "")
      
$kingicondata vpaupload("kingicon");
    else
      
$kingicondata "";

  } else {

    
$scoreicondata "";
    
$kingicondata "";

  }

  
$DB_site->query("UPDATE arcadeconfig
                   SET path='
$thepath',usescoreicon='$usescoreicon',usekingicon='$usekingicon'
                       "
.iif(($scoreicon != "") || ($deletescoreicon == 1),",scoreiconname='$scoreicon_name', scoreicondata='$scorei_d'","")."
                       "
.iif(($kingicon != "") || ($deletekingicon == 1),",kingiconname='$kingicon_name', kingicondata='$kingi_d'",", passtimeout='$passtimeout', epergamecost='$epergamecost', earcadepass='$earcadepass', eaph='$eaph', ejackpot='$ejackpot'")."
                   WHERE arcadeid='
$arcadeid'");

  
// update champ system setting separately (saves queries!)
  
$DB_site->query("UPDATE setting SET value='$champsystem' WHERE varname='vpa_champsystem'");

  
// must update templates so site will reflect change
  
$optionstemplate=generateoptions();
  
$DB_site->query("UPDATE template SET template='$optionstemplate' WHERE title='options'");

  echo 
"<b>Arcade options updated!</b><br><br>";

  
// go back to change options screen
  
$action "changeoptions";



Replace it ALL with:
PHP Code:
// ###################### Start updateoptions #######################
if ($action=="doupdateoptions") {

  
// only process icons if changes were made
  
if ($scoreicon != "") {
  
    
// check for valid extension
    
$extension=strtolower(substr(strrchr($scoreicon_name,"."),1));
                   
    if ((
$extension != "gif") and ($extension != "jpg") and ($extension != "jpeg") and ($extension != "png")) {
  
      echo 
"vbProArcade Error: " $scoreicon_name " is not a valid file type for icons (only gif/jpg/png are supported)<br><br>";
      
$scoreicon "";
  
    } else {
 
      
// retrieve file data
      
$scorei_f fopen($scoreicon"r");
      
$scorei_d addslashes(fread($scorei_ffilesize($scoreicon)));  

    }
  }

  
// only process icons if changes were made
  
if ($kingicon != "") {
  
    
// check for valid extension
    
$extension=strtolower(substr(strrchr($kingicon_name,"."),1));
                   
    if ((
$extension != "gif") and ($extension != "jpg") and ($extension != "jpeg") and ($extension != "png")) {
  
      echo 
"vbProArcade Error: " $kingicon_name " is not a valid file type for icons (only gif/jpg/png are supported)<br><br>";
      
$kingicon "";
  
    } else {
 
      
// retrieve file data
      
$kingi_f fopen($kingicon"r");
      
$kingi_d addslashes(fread($kingi_ffilesize($kingicon)));  

    }
  }

  
$DB_site->query("UPDATE arcadeconfig
                   SET path='
$thepath',usescoreicon='$usescoreicon',usekingicon='$usekingicon'
                       "
.iif(($scoreicon != "") || ($deletescoreicon == 1),",scoreiconname='$scoreicon_name', scoreicondata='$scorei_d'","")."
                       "
.iif(($kingicon != "") || ($deletekingicon == 1),",kingiconname='$kingicon_name', kingicondata='$kingi_d'",", passtimeout='$passtimeout', epergamecost='$epergamecost', earcadepass='$earcadepass', eaph='$eaph', ejackpot='$ejackpot'")."
                   WHERE arcadeid='
$arcadeid'");

  
// update champ system setting separately (saves queries!)
  
$DB_site->query("UPDATE setting SET value='$champsystem' WHERE varname='vpa_champsystem'"); 

//  $DB_site->query("UPDATE template SET template=CONCAT(template,'vpa_champsystem = $champsystem') WHERE title='options'");

  
$optionstemplate=generateoptions();
  
$DB_site->query("UPDATE template SET template='$optionstemplate' WHERE title='options'");

  echo 
"<b>Arcade options updated!</b><br><br>";

  
// go back to change options screen
  
$action "changeoptions";


And I don't mean vB version, I mean arcade version.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02103 seconds
  • Memory Usage 1,844KB
  • 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
  • (2)bbcode_php
  • (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