From c1abe90bd96324e7479f3dc41641b1588d5068b5 Mon Sep 17 00:00:00 2001 From: Matthijs Kuiper Date: Sun, 7 Jan 2018 14:53:59 +0100 Subject: Update config.php --- html/includes/config.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/html/includes/config.php b/html/includes/config.php index 2e52f98..11f069b 100755 --- a/html/includes/config.php +++ b/html/includes/config.php @@ -16,8 +16,8 @@ $import_homedir = ''; // Use the MySQL temporary tables feature? // Available since MySQL 3.23 - requires CREATE TEMPORARY TABLE privilege since 4.0.2 -// No longer supported from utstats version 4.3 onwards. Left here for historical purposes. -$import_use_temporary_tables = false; // Do not set to true unless all jpgraph import changes have been disabled. +// No longer supported from UTStats version 4.3 onwards. Left here for historical purposes. +$import_use_temporary_tables = false; // DON'T USE IF YOU DON'T KNOW WHAT YOU'RE DOING! // Use temporary heap tables? // This will (at any cost) keep the entire table in RAM and may speed and/or fuck things up @@ -42,7 +42,6 @@ $import_log_backup = "yes"; // Purge old logs after x days. 0 to disable. $import_log_backups_purge_after = 0; - // After how many seconds should we reload the import page? // This is to prevent the 'maximum execution time exeeded' error. It will reload // the page after the amount of seconds you specify in order to bypass php's time limit. @@ -141,6 +140,7 @@ $pic_enable = true; // FTP Connection Details $ftp_use = false; // Whether to auto get the log files $ftp_interval = 0; // How often in minutes to allow stats update +$ftp_debug = false; // Debugging output that may help you to resolve ftp problems $ftp_type = 'sockets'; // Which FTP module do you want to use? // sockets - (recommended) // Use PHP's socket extension to connect to the FTP server @@ -151,9 +151,6 @@ $ftp_type = 'sockets'; // Which FTP module do you want to use? // Debugging will not be available with this module and // error handling may not be as good as with the other modules -$ftp_debug = false; // Debugging output that may help you to resolve ftp problems - - // UT Server 1 $i = 0; $ftp_hostname[$i] = ''; // FTP server location here @@ -241,5 +238,4 @@ define("RENDERER_CHART_FRAGS_PLAYERNORMAL5", 97); define("RENDERER_CHART_ITEMS_TEAMPICKUPS", 100); define("RENDERER_CHART_ITEMS_PLAYERPICKUPS", 101); define("RENDERER_CHART_ITEMS_AMPRUNS", 102); - ?> -- cgit