Some functions discussed on patch #419826 added.
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2001-05-05 Robin Johnson <robbat2@users.sourceforge.net>
|
||||||
|
* Some functions discussed on patch #419826 added.
|
||||||
|
|
||||||
2001-05-04 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
2001-05-04 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
* grab_globals.inc.php3 handles now the $HTTP_POST_FILES array
|
* grab_globals.inc.php3 handles now the $HTTP_POST_FILES array
|
||||||
* db_readdump.php3, line 24: added a trick to enforce reloading of the left
|
* db_readdump.php3, line 24: added a trick to enforce reloading of the left
|
||||||
|
@@ -8,12 +8,12 @@
|
|||||||
|
|
||||||
// The $cfgServers array starts with $cfgServers[1]. Do not use $cfgServers[0].
|
// The $cfgServers array starts with $cfgServers[1]. Do not use $cfgServers[0].
|
||||||
// You can disable a server config entry by setting host to ''.
|
// You can disable a server config entry by setting host to ''.
|
||||||
$cfgServers[1]['host'] = 'mysql.sourceforge.net'; // MySQL hostname
|
$cfgServers[1]['host'] = 'localhost'; // MySQL hostname
|
||||||
$cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port
|
$cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port
|
||||||
$cfgServers[1]['adv_auth'] = false; // Use advanced authentication?
|
$cfgServers[1]['adv_auth'] = false; // Use advanced authentication?
|
||||||
$cfgServers[1]['stduser'] = ''; // MySQL standard user (only needed with advanced auth)
|
$cfgServers[1]['stduser'] = ''; // MySQL standard user (only needed with advanced auth)
|
||||||
$cfgServers[1]['stdpass'] = ''; // MySQL standard password (only needed with advanced auth)
|
$cfgServers[1]['stdpass'] = ''; // MySQL standard password (only needed with advanced auth)
|
||||||
$cfgServers[1]['user'] = 'phpmyadmin'; // MySQL user (only needed with basic auth)
|
$cfgServers[1]['user'] = 'phpMyAdmin'; // MySQL user (only needed with basic auth)
|
||||||
$cfgServers[1]['password'] = 'test99'; // MySQL password (only needed with basic auth)
|
$cfgServers[1]['password'] = 'test99'; // MySQL password (only needed with basic auth)
|
||||||
$cfgServers[1]['only_db'] = 'phpMyAdmin'; // If set to a db-name, only this db is accessible
|
$cfgServers[1]['only_db'] = 'phpMyAdmin'; // If set to a db-name, only this db is accessible
|
||||||
$cfgServers[1]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostname
|
$cfgServers[1]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostname
|
||||||
@@ -99,23 +99,33 @@ $cfgColumnTypes = array(
|
|||||||
"ENUM",
|
"ENUM",
|
||||||
"SET");
|
"SET");
|
||||||
|
|
||||||
|
//Some functions discussed on patch #419826 added. - 05/May/2001 - Robbat2
|
||||||
$cfgFunctions = array(
|
$cfgFunctions = array(
|
||||||
"ASCII",
|
"ASCII",
|
||||||
"CHAR",
|
"CHAR",
|
||||||
"SOUNDEX",
|
"SOUNDEX",
|
||||||
"CURDATE",
|
|
||||||
"CURTIME",
|
|
||||||
"ENCRYPT",
|
"ENCRYPT",
|
||||||
"FROM_DAYS",
|
"LCASE",
|
||||||
"FROM_UNIXTIME",
|
"UCASE",
|
||||||
"NOW",
|
"NOW",
|
||||||
"PASSWORD",
|
"PASSWORD",
|
||||||
|
"ENCODE",
|
||||||
|
"DECODE",
|
||||||
|
"MD5",
|
||||||
|
"RAND",
|
||||||
|
"LAST_INSERT_ID",
|
||||||
|
"COUNT",
|
||||||
|
"AVG",
|
||||||
|
"SUM",
|
||||||
|
"CURDATE",
|
||||||
|
"CURTIME",
|
||||||
|
"FROM_DAYS",
|
||||||
|
"FROM_UNIXTIME",
|
||||||
"PERIOD_ADD",
|
"PERIOD_ADD",
|
||||||
"PERIOD_DIFF",
|
"PERIOD_DIFF",
|
||||||
"TO_DAYS",
|
"TO_DAYS",
|
||||||
"USER",
|
"USER",
|
||||||
"WEEKDAY",
|
"WEEKDAY");
|
||||||
"RAND");
|
|
||||||
|
|
||||||
$cfgAttributeTypes = array(
|
$cfgAttributeTypes = array(
|
||||||
"",
|
"",
|
||||||
|
Reference in New Issue
Block a user