diff --git a/UPGRADE b/UPGRADE index c02b77e1..ec6e0d01 100644 --- a/UPGRADE +++ b/UPGRADE @@ -1,7 +1,32 @@ ################ UPGRADE +NOTE: Upgrading from 2.0.1 to 2.0.2 is in the middle section NOTE: Upgrading from 1.1.12-3 to 2.0.1 is at the bottom +########## UPGRADING FROM 2.0.2 TO 2.0.3 ########## + +1. install new files: + perl ./install.pl + NOTES: If you have customized any scripts in the bin or agi folders, + then make sure you back them up before running the install.pl script. + This script will replace existing files in the astguiclient installation. + +2. upgrade the MySQL asterisk database: + mysql + use asterisk + \. /path/from/root/extras/upgrade_2.0.3.sql + quit + +3. The server_stats.php has been merged into the vicidial/admin.php page + +4. Width of the admin.php screen now definable by variables at top of script. + +5. Dial Override checkbox added to force dial_level changes in ADAPT modes + + + + + ########## UPGRADING FROM 2.0.1 TO 2.0.2 ########## 1. install new files: diff --git a/translations/raw_translation_files/TO_BE_TRANSLATED_2.0.3.txt b/translations/raw_translation_files/TO_BE_TRANSLATED_2.0.3.txt new file mode 100644 index 00000000..41376289 --- /dev/null +++ b/translations/raw_translation_files/TO_BE_TRANSLATED_2.0.3.txt @@ -0,0 +1,14 @@ +############################################################ ADMIN + +ADAPT OVERRIDE|| +The ADAPT OVERRIDE checkbox allows you to force a new dial level even though the dial method is in an ADAPT mode. This is useful if there is a dramatic shift in the quality of leads and you want to drastically change the dial_level manually.|| + +############################################################ CLIENT + + + +############################################################ MANAGER Manual + + +############################################################ AGENT Manual + diff --git a/www/vicidial/server_stats.php b/www/vicidial/server_stats.php deleted file mode 100644 index 8e509383..00000000 --- a/www/vicidial/server_stats.php +++ /dev/null @@ -1,97 +0,0 @@ - LICENSE: GPLv2 -### -# CHANGES -# -# 60620-1037 - Added Link back to Admin section -# - Added required user/pass to gain access to this page -# 61101-1331 - Added SIP/IAX listen/barge links -# - -require("dbconnect.php"); - -$PHP_AUTH_USER=$_SERVER['PHP_AUTH_USER']; -$PHP_AUTH_PW=$_SERVER['PHP_AUTH_PW']; - -$PHP_AUTH_USER = ereg_replace("[^0-9a-zA-Z]","",$PHP_AUTH_USER); -$PHP_AUTH_PW = ereg_replace("[^0-9a-zA-Z]","",$PHP_AUTH_PW); - - $stmt="SELECT count(*) from vicidial_users where user='$PHP_AUTH_USER' and pass='$PHP_AUTH_PW' and user_level > 6;"; - if ($DB) {echo "|$stmt|\n";} - $rslt=mysql_query($stmt, $link); - $row=mysql_fetch_row($rslt); - $auth=$row[0]; - - if( (strlen($PHP_AUTH_USER)<2) or (strlen($PHP_AUTH_PW)<2) or (!$auth)) - { - Header("WWW-Authenticate: Basic realm=\"VICI-PROJECTS\""); - Header("HTTP/1.0 401 Unauthorized"); - echo "Invalid Username/Password: |$PHP_AUTH_USER|$PHP_AUTH_PW|\n"; - exit; - } - - -$NOW_DATE = date("Y-m-d"); -$NOW_TIME = date("Y-m-d H:i:s"); -$STARTtime = date("U"); -if (!isset($query_date)) {$query_date = $NOW_DATE;} - -$stmt="select * from servers;"; -$rslt=mysql_query($stmt, $link); -if ($DB) {echo "$stmt\n";} -$servers_to_print = mysql_num_rows($rslt); -$i=0; -while ($i < $servers_to_print) - { - $row=mysql_fetch_row($rslt); - $server_id[$i] = $row[0]; - $server_description[$i] = $row[1]; - $server_ip[$i] = $row[2]; - $active[$i] = $row[3]; - $i++; - } -?> - - - - - -VICIDIAL: Server Stats and Reports -VICIDIAL: Server Stats and Reports                           -BACK TO ADMIN

- - -

-
- $o)
-	{
-	echo "\n";
-	echo "\n";
-	echo "\n";
-	echo "\n";
-	echo "\n";
-	echo "\n";
-	echo "\n";
-	echo "\n";
-	echo "\n";
-	echo "\n";
-	$o++;
-	}
-
-?>
-
SERVERDESCRIPTIONIP ADDRESSACTIVEVDAD timeVDcall timePARK timeCLOSER/INBOUND time
$server_id[$o]$server_description[$o]$server_ip[$o]$active[$o]LINKLINKLINKLINK
- - \ No newline at end of file