|
|
|
@@ -1,17 +1,10 @@
|
|
|
|
|
diff -ruN phpMyAdmin-3.3.8-all-languages-orig/config.sample.inc.php phpMyAdmin-3.3.8-all-languages/config.sample.inc.php
|
|
|
|
|
--- phpMyAdmin-3.3.8-all-languages-orig/config.sample.inc.php 2010-10-25 18:21:44.000000000 +0200
|
|
|
|
|
+++ phpMyAdmin-3.3.8-all-languages/config.sample.inc.php 2010-12-03 23:58:26.000000000 +0100
|
|
|
|
|
@@ -2,71 +2,278 @@
|
|
|
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
|
|
|
/**
|
|
|
|
|
* phpMyAdmin sample configuration, you can use it as base for
|
|
|
|
|
- * manual configuration. For easier setup you can use setup/
|
|
|
|
|
+ * manual configuration. For easier setup you can use scripts/setup.php
|
|
|
|
|
*
|
|
|
|
|
* All directives are explained in Documentation.html and on phpMyAdmin
|
|
|
|
|
* wiki <http://wiki.phpmyadmin.net>.
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
diff -ruN phpMyAdmin-3.4.1-all-languages-orig/config.sample.inc.php phpMyAdmin-3.4.1-all-languages/config.sample.inc.php
|
|
|
|
|
--- phpMyAdmin-3.4.1-all-languages-orig/config.sample.inc.php 2011-05-20 19:24:04.000000000 +0200
|
|
|
|
|
+++ phpMyAdmin-3.4.1-all-languages/config.sample.inc.php 2011-05-24 18:21:28.000000000 +0200
|
|
|
|
|
@@ -10,55 +10,223 @@
|
|
|
|
|
* @package phpMyAdmin
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
+/**
|
|
|
|
|
+ * Your phpMyAdmin url
|
|
|
|
|
+ *
|
|
|
|
@@ -20,9 +13,7 @@ diff -ruN phpMyAdmin-3.3.8-all-languages-orig/config.sample.inc.php phpMyAdmin-3
|
|
|
|
|
+ *
|
|
|
|
|
+ * It must contain characters that are valid for a URL, and the path is
|
|
|
|
|
+ * case sensitive on some Web servers, for example Unix-based servers.
|
|
|
|
|
*
|
|
|
|
|
- * @version $Id$
|
|
|
|
|
- * @package phpMyAdmin
|
|
|
|
|
+ *
|
|
|
|
|
+ * In most cases you can leave this variable empty, as the correct value
|
|
|
|
|
+ * will be detected automatically. However, we recommend that you do
|
|
|
|
|
+ * test to see that the auto-detection code works in your system. A good
|
|
|
|
@@ -31,22 +22,22 @@ diff -ruN phpMyAdmin-3.3.8-all-languages-orig/config.sample.inc.php phpMyAdmin-3
|
|
|
|
|
+ *
|
|
|
|
|
+ * If the auto-detection code does work properly, you can set to true the
|
|
|
|
|
+ * $cfg['PmaAbsoluteUri_DisableWarning'] variable below.
|
|
|
|
|
*/
|
|
|
|
|
+$cfg['PmaAbsoluteUri'] = 'https://@FQDN@/phpMyAdmin/';
|
|
|
|
|
|
|
|
|
|
-/*
|
|
|
|
|
- * This is needed for cookie based authentication to encrypt password in
|
|
|
|
|
- * cookie
|
|
|
|
|
+ */
|
|
|
|
|
+$cfg['PmaAbsoluteUri'] = '';
|
|
|
|
|
+
|
|
|
|
|
/*
|
|
|
|
|
* This is needed for cookie based authentication to encrypt password in
|
|
|
|
|
* cookie
|
|
|
|
|
*/
|
|
|
|
|
$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
|
|
|
|
|
|
|
|
|
|
+/**
|
|
|
|
|
+ * Disable the default warning about $cfg['PmaAbsoluteUri'] not being set
|
|
|
|
|
+ * You should use this if and ONLY if the PmaAbsoluteUri auto-detection
|
|
|
|
|
+ * works perfectly.
|
|
|
|
|
*/
|
|
|
|
|
-$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
|
|
|
|
|
+ */
|
|
|
|
|
+$cfg['PmaAbsoluteUri_DisableWarning'] = false;
|
|
|
|
|
|
|
|
|
|
-/*
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * Disable the default warning that is displayed on the DB Details Structure page if
|
|
|
|
|
+ * any of the required Tables for the relationfeatures could not be found
|
|
|
|
@@ -54,25 +45,21 @@ diff -ruN phpMyAdmin-3.3.8-all-languages-orig/config.sample.inc.php phpMyAdmin-3
|
|
|
|
|
+$cfg['PmaNoRelation_DisableWarning'] = false;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * The 'cookie' auth_type uses blowfish algorithm to encrypt the password. If
|
|
|
|
|
+ * at least one server configuration uses 'cookie' auth_type, enter here a
|
|
|
|
|
+ * passphrase that will be used by blowfish.
|
|
|
|
|
+ * Disable the default warning that is displayed if Suhosin is detected
|
|
|
|
|
+ *
|
|
|
|
|
+ * @global boolean $cfg['SuhosinDisableWarning']
|
|
|
|
|
+ */
|
|
|
|
|
+$cfg['blowfish_secret'] = '';
|
|
|
|
|
+$cfg['SuhosinDisableWarning'] = true;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+/*******************************************************************************
|
|
|
|
|
/*
|
|
|
|
|
* Servers configuration
|
|
|
|
|
*/
|
|
|
|
|
$i = 0;
|
|
|
|
|
|
|
|
|
|
-/*
|
|
|
|
|
- * First server
|
|
|
|
|
+/***************************************
|
|
|
|
|
+ * First Server
|
|
|
|
|
* First server
|
|
|
|
|
*/
|
|
|
|
|
+
|
|
|
|
|
$i++;
|
|
|
|
|
-/* Authentication type */
|
|
|
|
|
-$cfg['Servers'][$i]['auth_type'] = 'cookie';
|
|
|
|
@@ -83,32 +70,11 @@ diff -ruN phpMyAdmin-3.3.8-all-languages-orig/config.sample.inc.php phpMyAdmin-3
|
|
|
|
|
-/* Select mysqli if your server has it */
|
|
|
|
|
-$cfg['Servers'][$i]['extension'] = 'mysql';
|
|
|
|
|
-$cfg['Servers'][$i]['AllowNoPassword'] = false;
|
|
|
|
|
-
|
|
|
|
|
-/* rajk - for blobstreaming */
|
|
|
|
|
-$cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
|
|
|
|
|
-$cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
|
|
|
|
|
-$cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
|
|
|
|
|
-$cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';
|
|
|
|
|
-
|
|
|
|
|
-/* User for advanced features */
|
|
|
|
|
-// $cfg['Servers'][$i]['controluser'] = 'pma';
|
|
|
|
|
-// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
|
|
|
|
|
-/* Advanced phpMyAdmin features */
|
|
|
|
|
-// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
|
|
|
|
|
-// $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
|
|
|
|
|
-// $cfg['Servers'][$i]['relation'] = 'pma_relation';
|
|
|
|
|
-// $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
|
|
|
|
|
-// $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
|
|
|
|
|
-// $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
|
|
|
|
|
-// $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
|
|
|
|
|
-// $cfg['Servers'][$i]['history'] = 'pma_history';
|
|
|
|
|
-// $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
|
|
|
|
|
-// $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
|
|
|
|
|
-/* Contrib / Swekey authentication */
|
|
|
|
|
-// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
|
|
|
|
|
+// MySQL hostname or IP address
|
|
|
|
|
+$cfg['Servers'][$i]['host'] = 'localhost';
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
-/*
|
|
|
|
|
- * phpMyAdmin configuration storage settings.
|
|
|
|
|
+// MySQL port - leave blank for default port
|
|
|
|
|
+$cfg['Servers'][$i]['port'] = '';
|
|
|
|
|
+
|
|
|
|
@@ -219,8 +185,26 @@ diff -ruN phpMyAdmin-3.3.8-all-languages-orig/config.sample.inc.php phpMyAdmin-3
|
|
|
|
|
+
|
|
|
|
|
+/***************************************
|
|
|
|
|
+ * Second Server
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
-/* User used to manipulate with storage */
|
|
|
|
|
-// $cfg['Servers'][$i]['controluser'] = 'pma';
|
|
|
|
|
-// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
|
|
|
|
|
-
|
|
|
|
|
-/* Storage database and tables */
|
|
|
|
|
-// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
|
|
|
|
|
-// $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
|
|
|
|
|
-// $cfg['Servers'][$i]['relation'] = 'pma_relation';
|
|
|
|
|
-// $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
|
|
|
|
|
-// $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
|
|
|
|
|
-// $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
|
|
|
|
|
-// $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
|
|
|
|
|
-// $cfg['Servers'][$i]['history'] = 'pma_history';
|
|
|
|
|
-// $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
|
|
|
|
|
-// $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
|
|
|
|
|
-// $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
|
|
|
|
|
-/* Contrib / Swekey authentication */
|
|
|
|
|
-// $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey-pma.conf';
|
|
|
|
|
+/**
|
|
|
|
|
+$i++;
|
|
|
|
|
+$cfg['Servers'][$i]['host'] = '';
|
|
|
|
@@ -265,93 +249,17 @@ diff -ruN phpMyAdmin-3.3.8-all-languages-orig/config.sample.inc.php phpMyAdmin-3
|
|
|
|
|
+$cfg['ServerDefault'] = 1;
|
|
|
|
|
+$cfg['Server'] = '0';
|
|
|
|
|
+unset($cfg['Servers'][0]);
|
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
-/*
|
|
|
|
|
+
|
|
|
|
|
+/***************************************
|
|
|
|
|
* End of servers configuration
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
-/*
|
|
|
|
|
- * Directories for saving/loading files from server
|
|
|
|
|
+
|
|
|
|
|
+/*******************************************************************************
|
|
|
|
|
+ * Language and character set conversion settings
|
|
|
|
|
*/
|
|
|
|
|
+
|
|
|
|
|
+// Default language to use, if not browser-defined or user-defined
|
|
|
|
|
+$cfg['DefaultLang'] = 'utf-8';
|
|
|
|
|
+
|
|
|
|
|
+// Default connection collation (used for MySQL >= 4.1)
|
|
|
|
|
+$cfg['DefaultConnectionCollation'] = 'utf8_unicode_ci';
|
|
|
|
|
+
|
|
|
|
|
+// Default character set to use for recoding of MySQL queries, does not take
|
|
|
|
|
+// any effect when character sets recoding is switched off by
|
|
|
|
|
+// $cfg['AllowAnywhereRecoding'] or in language file
|
|
|
|
|
+// (see $cfg['AvailableCharsets'] to possible choices, you can add your own)
|
|
|
|
|
+$cfg['DefaultCharset'] = 'utf-8';
|
|
|
|
|
+
|
|
|
|
|
+// Allow character set recoding of MySQL queries, must be also enabled in language
|
|
|
|
|
+// file to make harder using other language files than Unicode.
|
|
|
|
|
+// Default value is false to avoid problems on servers without the iconv
|
|
|
|
|
+// extension and where dl() is not supported
|
|
|
|
|
+$cfg['AllowAnywhereRecoding'] = false;
|
|
|
|
|
+
|
|
|
|
|
+// You can select here which functions will be used for character set conversion.
|
|
|
|
|
+// Possible values are:
|
|
|
|
|
+// auto - automatically use available one (first is tested iconv, then
|
|
|
|
|
+// recode)
|
|
|
|
|
+// iconv - use iconv or libiconv functions
|
|
|
|
|
+// recode - use recode_string function
|
|
|
|
|
+$cfg['RecodingEngine'] = 'auto';
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+/*******************************************************************************
|
|
|
|
|
+ * Web server upload/save/import directories
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
+// Directory for uploaded files that can be executed by phpMyAdmin.
|
|
|
|
|
+// For example './upload'. Leave empty for no upload directory support.
|
|
|
|
|
+// Use %u for username inclusion.
|
|
|
|
|
$cfg['UploadDir'] = '';
|
|
|
|
|
+
|
|
|
|
|
+// Directory where phpMyAdmin can save exported data on server.
|
|
|
|
|
+// For example './save'. Leave empty for no save directory support.
|
|
|
|
|
+// Use %u for username inclusion.
|
|
|
|
|
$cfg['SaveDir'] = '';
|
|
|
|
|
|
|
|
|
|
+// Directory where phpMyAdmin can save temporary files.
|
|
|
|
|
+// This is needed for MS Excel export, see documentation how to enable that.
|
|
|
|
|
+$cfg['TempDir'] = '';
|
|
|
|
|
+
|
|
|
|
|
?>
|
|
|
|
|
diff -ruN phpMyAdmin-3.3.8-all-languages-orig/libraries/common.inc.php phpMyAdmin-3.3.8-all-languages/libraries/common.inc.php
|
|
|
|
|
--- phpMyAdmin-3.3.8-all-languages-orig/libraries/common.inc.php 2010-10-25 18:21:44.000000000 +0200
|
|
|
|
|
+++ phpMyAdmin-3.3.8-all-languages/libraries/common.inc.php 2010-12-03 23:56:45.000000000 +0100
|
|
|
|
|
@@ -536,7 +536,7 @@
|
|
|
|
|
* force reading of config file, because we removed sensitive values
|
|
|
|
|
* in the previous iteration
|
|
|
|
|
*/
|
|
|
|
|
-$_SESSION['PMA_Config'] = new PMA_Config('./config.inc.php');
|
|
|
|
|
+$_SESSION['PMA_Config'] = new PMA_Config('@PMA_Config@');
|
|
|
|
|
|
|
|
|
|
if (!defined('PMA_MINIMUM_COMMON')) {
|
|
|
|
|
$_SESSION['PMA_Config']->checkPmaAbsoluteUri();
|
|
|
|
|
diff -ruN phpMyAdmin-3.3.8-all-languages-orig/libraries/config.default.php phpMyAdmin-3.3.8-all-languages/libraries/config.default.php
|
|
|
|
|
--- phpMyAdmin-3.3.8-all-languages-orig/libraries/config.default.php 2010-10-25 18:21:44.000000000 +0200
|
|
|
|
|
+++ phpMyAdmin-3.3.8-all-languages/libraries/config.default.php 2010-12-03 23:56:45.000000000 +0100
|
|
|
|
|
@@ -136,7 +136,7 @@
|
|
|
|
|
*
|
|
|
|
|
* @global string $cfg['Servers'][$i]['extension']
|
|
|
|
|
*/
|
|
|
|
|
-$cfg['Servers'][$i]['extension'] = 'mysql';
|
|
|
|
|
+$cfg['Servers'][$i]['extension'] = 'mysqli';
|
|
|
|
|
|
|
|
|
|
/* rajk - added for blobstreaming */
|
|
|
|
|
$cfg['Servers'][$i]['bs_garbage_threshold'] = '';
|
|
|
|
|
diff -ruN phpMyAdmin-3.3.8-all-languages-orig/libraries/vendor_config.php phpMyAdmin-3.3.8-all-languages/libraries/vendor_config.php
|
|
|
|
|
--- phpMyAdmin-3.3.8-all-languages-orig/libraries/vendor_config.php 2010-10-25 18:21:44.000000000 +0200
|
|
|
|
|
+++ phpMyAdmin-3.3.8-all-languages/libraries/vendor_config.php 2010-12-03 23:56:45.000000000 +0100
|
|
|
|
|
@@ -15,18 +15,18 @@
|
|
|
|
|
diff -ruN phpMyAdmin-3.4.1-all-languages-orig/libraries/vendor_config.php phpMyAdmin-3.4.1-all-languages/libraries/vendor_config.php
|
|
|
|
|
--- phpMyAdmin-3.4.1-all-languages-orig/libraries/vendor_config.php 2011-05-20 19:24:04.000000000 +0200
|
|
|
|
|
+++ phpMyAdmin-3.4.1-all-languages/libraries/vendor_config.php 2011-05-24 17:24:15.000000000 +0200
|
|
|
|
|
@@ -14,18 +14,18 @@
|
|
|
|
|
* Path to changelog file, can be gzip compressed. Useful when you want to
|
|
|
|
|
* have documentation somewhere else, eg. /usr/share/doc.
|
|
|
|
|
*/
|
|
|
|
@@ -373,3 +281,12 @@ diff -ruN phpMyAdmin-3.3.8-all-languages-orig/libraries/vendor_config.php phpMyA
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether setup requires writable directory where config
|
|
|
|
|
@@ -43,7 +43,7 @@
|
|
|
|
|
/**
|
|
|
|
|
* Filename of a configuration file.
|
|
|
|
|
*/
|
|
|
|
|
-define('CONFIG_FILE', CONFIG_DIR . 'config.inc.php');
|
|
|
|
|
+define('CONFIG_FILE', SETUP_CONFIG_FILE );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Filename of custom header file.
|