diff --git a/Documentation.html b/Documentation.html index 9316aa5fc..32825aeaa 100755 --- a/Documentation.html +++ b/Documentation.html @@ -1339,6 +1339,21 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'

+
$cfg['UploadDir'] string
+
+ The name of the directory, ending with a slash, where SQL files have + been uploaded by other means than phpMyAdmin (for example, ftp). + Those files are available under a drop-down box when you click the + database name, then the SQL tab. +

+ This feature is useful when your file is too big to be uploaded via + HTTP, or when file uploads are disabled in PHP. +

+ Please note that if PHP is running in safe mode, this directory must + be owned by the same user as the owner of the phpMyAdmin scripts. +

+
+
$cfg['RepeatCells'] integer
Repeat the headers every X cells, or 0 to deactivate. diff --git a/config.inc.php3 b/config.inc.php3 index a479468b0..21ceb55a3 100755 --- a/config.inc.php3 +++ b/config.inc.php3 @@ -355,6 +355,10 @@ $cfg['SQLQuery']['Explain'] = TRUE; // EXPLAIN on SELECT queries $cfg['SQLQuery']['ShowAsPHP'] = TRUE; // Wrap a query in PHP $cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLValidator'] as well) +/** + * web-server upload directory + */ +$cfg['UploadDir'] = './upload/'; // end with a slash /** * SQL Parser Settings diff --git a/db_details.php3 b/db_details.php3 index fd584e077..bc4e11d56 100755 --- a/db_details.php3 +++ b/db_details.php3 @@ -96,14 +96,37 @@ if ($is_upload) { echo '>' . $temp_charset . '' . "\n"; } echo ' '; - } // end if + } // end if (recoding) echo "\n"; ?> ' . $strOr . ' ' . $strWebServerUploadDirectory . ' :
' . "\n"; + echo '
' . "\n"; + echo ' \n
\n\n"; + } // end if (isfirst > 0) + @closedir($handle); +} // end if (web-server upload directory) + // Bookmark Support if ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table']) { if (($bookmark_list = PMA_listBookmarks($db, $cfg['Bookmark'])) && count($bookmark_list) > 0) { diff --git a/lang/afrikaans-iso-8859-1.inc.php3 b/lang/afrikaans-iso-8859-1.inc.php3 index 5dc5d0ca2..6aad3add9 100644 --- a/lang/afrikaans-iso-8859-1.inc.php3 +++ b/lang/afrikaans-iso-8859-1.inc.php3 @@ -430,4 +430,5 @@ $strYes = 'Ja'; $strZip = '"ge-zip"'; $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/afrikaans-utf-8.inc.php3 b/lang/afrikaans-utf-8.inc.php3 index c33724bfb..ae20dbb14 100644 --- a/lang/afrikaans-utf-8.inc.php3 +++ b/lang/afrikaans-utf-8.inc.php3 @@ -431,4 +431,5 @@ $strYes = 'Ja'; $strZip = '"ge-zip"'; $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/albanian-iso-8859-1.inc.php3 b/lang/albanian-iso-8859-1.inc.php3 index 700093b5c..174dd9847 100644 --- a/lang/albanian-iso-8859-1.inc.php3 +++ b/lang/albanian-iso-8859-1.inc.php3 @@ -429,4 +429,5 @@ $strZip = '"kompresuar me zip"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/albanian-utf-8.inc.php3 b/lang/albanian-utf-8.inc.php3 index 3f8b9128e..2feae62f3 100644 --- a/lang/albanian-utf-8.inc.php3 +++ b/lang/albanian-utf-8.inc.php3 @@ -430,4 +430,5 @@ $strZip = '"kompresuar me zip"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/arabic-utf-8.inc.php3 b/lang/arabic-utf-8.inc.php3 index a11c7fed3..50e7197c6 100644 --- a/lang/arabic-utf-8.inc.php3 +++ b/lang/arabic-utf-8.inc.php3 @@ -445,4 +445,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/arabic-windows-1256.inc.php3 b/lang/arabic-windows-1256.inc.php3 index 72f15e460..ee74a64f5 100644 --- a/lang/arabic-windows-1256.inc.php3 +++ b/lang/arabic-windows-1256.inc.php3 @@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/brazilian_portuguese-iso-8859-1.inc.php3 b/lang/brazilian_portuguese-iso-8859-1.inc.php3 index 34c823c0c..be6aeb859 100644 --- a/lang/brazilian_portuguese-iso-8859-1.inc.php3 +++ b/lang/brazilian_portuguese-iso-8859-1.inc.php3 @@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/brazilian_portuguese-utf-8.inc.php3 b/lang/brazilian_portuguese-utf-8.inc.php3 index d9aff3394..0f44d9a4c 100644 --- a/lang/brazilian_portuguese-utf-8.inc.php3 +++ b/lang/brazilian_portuguese-utf-8.inc.php3 @@ -445,4 +445,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/bulgarian-koi8-r.inc.php3 b/lang/bulgarian-koi8-r.inc.php3 index 9baab53f1..c257b5752 100644 --- a/lang/bulgarian-koi8-r.inc.php3 +++ b/lang/bulgarian-koi8-r.inc.php3 @@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/bulgarian-utf-8.inc.php3 b/lang/bulgarian-utf-8.inc.php3 index 4ebe1e217..b79a6692a 100644 --- a/lang/bulgarian-utf-8.inc.php3 +++ b/lang/bulgarian-utf-8.inc.php3 @@ -445,4 +445,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/bulgarian-windows-1251.inc.php3 b/lang/bulgarian-windows-1251.inc.php3 index 9b9c14300..efdcac122 100644 --- a/lang/bulgarian-windows-1251.inc.php3 +++ b/lang/bulgarian-windows-1251.inc.php3 @@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/catalan-iso-8859-1.inc.php3 b/lang/catalan-iso-8859-1.inc.php3 index 9749ad681..26c33c3b5 100644 --- a/lang/catalan-iso-8859-1.inc.php3 +++ b/lang/catalan-iso-8859-1.inc.php3 @@ -431,4 +431,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/catalan-utf-8.inc.php3 b/lang/catalan-utf-8.inc.php3 index 8eadda2ab..69e2a3249 100644 --- a/lang/catalan-utf-8.inc.php3 +++ b/lang/catalan-utf-8.inc.php3 @@ -432,4 +432,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/chinese_big5-utf-8.inc.php3 b/lang/chinese_big5-utf-8.inc.php3 index fa2975dc8..cc9d67f31 100644 --- a/lang/chinese_big5-utf-8.inc.php3 +++ b/lang/chinese_big5-utf-8.inc.php3 @@ -431,4 +431,5 @@ $strZip = '"zipped"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/chinese_big5.inc.php3 b/lang/chinese_big5.inc.php3 index 134d56abd..865031c2b 100644 --- a/lang/chinese_big5.inc.php3 +++ b/lang/chinese_big5.inc.php3 @@ -430,4 +430,5 @@ $strZip = '"zipped"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/chinese_gb-utf-8.inc.php3 b/lang/chinese_gb-utf-8.inc.php3 index b5f92c775..82515816d 100644 --- a/lang/chinese_gb-utf-8.inc.php3 +++ b/lang/chinese_gb-utf-8.inc.php3 @@ -430,4 +430,5 @@ $strZip = '"zipped"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/chinese_gb.inc.php3 b/lang/chinese_gb.inc.php3 index 963b98af5..eb96ad91d 100644 --- a/lang/chinese_gb.inc.php3 +++ b/lang/chinese_gb.inc.php3 @@ -428,4 +428,5 @@ $strZip = '"zipped"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/croatian-iso-8859-2.inc.php3 b/lang/croatian-iso-8859-2.inc.php3 index 9fe16985f..7ee4ad6c5 100644 --- a/lang/croatian-iso-8859-2.inc.php3 +++ b/lang/croatian-iso-8859-2.inc.php3 @@ -443,4 +443,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/croatian-utf-8.inc.php3 b/lang/croatian-utf-8.inc.php3 index 9a8ff26a0..db8462038 100644 --- a/lang/croatian-utf-8.inc.php3 +++ b/lang/croatian-utf-8.inc.php3 @@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/croatian-windows-1250.inc.php3 b/lang/croatian-windows-1250.inc.php3 index 64b63b707..3c65b0346 100644 --- a/lang/croatian-windows-1250.inc.php3 +++ b/lang/croatian-windows-1250.inc.php3 @@ -443,4 +443,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/czech-iso-8859-2.inc.php3 b/lang/czech-iso-8859-2.inc.php3 index be6ec4688..4661d04de 100644 --- a/lang/czech-iso-8859-2.inc.php3 +++ b/lang/czech-iso-8859-2.inc.php3 @@ -429,4 +429,5 @@ $strYes = 'Ano'; $strZip = '"zazipováno"'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/czech-utf-8.inc.php3 b/lang/czech-utf-8.inc.php3 index c4d984334..5650146f8 100644 --- a/lang/czech-utf-8.inc.php3 +++ b/lang/czech-utf-8.inc.php3 @@ -430,4 +430,5 @@ $strYes = 'Ano'; $strZip = '"zazipováno"'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/czech-windows-1250.inc.php3 b/lang/czech-windows-1250.inc.php3 index d5f6d7693..4bd15c5c5 100644 --- a/lang/czech-windows-1250.inc.php3 +++ b/lang/czech-windows-1250.inc.php3 @@ -429,4 +429,5 @@ $strYes = 'Ano'; $strZip = '"zazipováno"'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/danish-iso-8859-1.inc.php3 b/lang/danish-iso-8859-1.inc.php3 index 48e83b39b..429811a69 100644 --- a/lang/danish-iso-8859-1.inc.php3 +++ b/lang/danish-iso-8859-1.inc.php3 @@ -438,4 +438,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/danish-utf-8.inc.php3 b/lang/danish-utf-8.inc.php3 index a8fab44d4..70ab1b655 100644 --- a/lang/danish-utf-8.inc.php3 +++ b/lang/danish-utf-8.inc.php3 @@ -439,4 +439,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/dutch-iso-8859-1.inc.php3 b/lang/dutch-iso-8859-1.inc.php3 index 583403900..57523509d 100644 --- a/lang/dutch-iso-8859-1.inc.php3 +++ b/lang/dutch-iso-8859-1.inc.php3 @@ -433,4 +433,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/dutch-utf-8.inc.php3 b/lang/dutch-utf-8.inc.php3 index c3e85d849..e29c49fd5 100644 --- a/lang/dutch-utf-8.inc.php3 +++ b/lang/dutch-utf-8.inc.php3 @@ -434,4 +434,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/english-iso-8859-1.inc.php3 b/lang/english-iso-8859-1.inc.php3 index 09a70ec0a..44770f1ad 100644 --- a/lang/english-iso-8859-1.inc.php3 +++ b/lang/english-iso-8859-1.inc.php3 @@ -415,6 +415,7 @@ $strValue = 'Value'; $strViewDump = 'View dump (schema) of table'; $strViewDumpDB = 'View dump (schema) of database'; +$strWebServerUploadDirectory = 'web-server upload directory'; $strWelcome = 'Welcome to %s'; $strWithChecked = 'With selected:'; $strWrongUser = 'Wrong username/password. Access denied.'; diff --git a/lang/english-utf-8.inc.php3 b/lang/english-utf-8.inc.php3 index d484cf5de..0b3971778 100644 --- a/lang/english-utf-8.inc.php3 +++ b/lang/english-utf-8.inc.php3 @@ -416,6 +416,7 @@ $strValue = 'Value'; $strViewDump = 'View dump (schema) of table'; $strViewDumpDB = 'View dump (schema) of database'; +$strWebServerUploadDirectory = 'web-server upload directory'; $strWelcome = 'Welcome to %s'; $strWithChecked = 'With selected:'; $strWrongUser = 'Wrong username/password. Access denied.'; diff --git a/lang/estonian-iso-8859-1.inc.php3 b/lang/estonian-iso-8859-1.inc.php3 index 91434d4e7..f839ce6a8 100644 --- a/lang/estonian-iso-8859-1.inc.php3 +++ b/lang/estonian-iso-8859-1.inc.php3 @@ -424,4 +424,5 @@ $strZip = '"zipitud"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/estonian-utf-8.inc.php3 b/lang/estonian-utf-8.inc.php3 index fb0d4a0e7..5e8818bba 100644 --- a/lang/estonian-utf-8.inc.php3 +++ b/lang/estonian-utf-8.inc.php3 @@ -425,4 +425,5 @@ $strZip = '"zipitud"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/finnish-iso-8859-1.inc.php3 b/lang/finnish-iso-8859-1.inc.php3 index b412f30c1..fd5ffb4f4 100644 --- a/lang/finnish-iso-8859-1.inc.php3 +++ b/lang/finnish-iso-8859-1.inc.php3 @@ -427,4 +427,5 @@ $strYes = 'Kyll $strZip = '"zip-pakattu"'; $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/finnish-utf-8.inc.php3 b/lang/finnish-utf-8.inc.php3 index b206cdbde..936550b65 100644 --- a/lang/finnish-utf-8.inc.php3 +++ b/lang/finnish-utf-8.inc.php3 @@ -428,4 +428,5 @@ $strYes = 'Kyllä'; $strZip = '"zip-pakattu"'; $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/french-iso-8859-1.inc.php3 b/lang/french-iso-8859-1.inc.php3 index 6478237f3..7e2d22bf0 100644 --- a/lang/french-iso-8859-1.inc.php3 +++ b/lang/french-iso-8859-1.inc.php3 @@ -415,6 +415,7 @@ $strValue = 'Valeur'; $strViewDump = 'Afficher le schéma de la table'; $strViewDumpDB = 'Afficher le schéma de la base '; +$strWebServerUploadDirectory = 'répertoire de transfert du serveur Web'; $strWelcome = 'Bienvenue à %s '; $strWithChecked = 'Pour la sélection :'; $strWrongUser = 'Erreur d\'utilisateur/mot de passe. Accès refusé'; diff --git a/lang/french-utf-8.inc.php3 b/lang/french-utf-8.inc.php3 index a57cba047..16ca73650 100644 --- a/lang/french-utf-8.inc.php3 +++ b/lang/french-utf-8.inc.php3 @@ -424,4 +424,5 @@ $strYes = 'Oui'; $strZip = '"zippé"'; +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/galician-iso-8859-1.inc.php3 b/lang/galician-iso-8859-1.inc.php3 index faf3fd3d0..17120fc66 100644 --- a/lang/galician-iso-8859-1.inc.php3 +++ b/lang/galician-iso-8859-1.inc.php3 @@ -431,4 +431,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/galician-utf-8.inc.php3 b/lang/galician-utf-8.inc.php3 index bdb2070fc..460c79082 100644 --- a/lang/galician-utf-8.inc.php3 +++ b/lang/galician-utf-8.inc.php3 @@ -432,4 +432,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/georgian-utf-8.inc.php3 b/lang/georgian-utf-8.inc.php3 index 584614a1e..d13a2b6c4 100644 --- a/lang/georgian-utf-8.inc.php3 +++ b/lang/georgian-utf-8.inc.php3 @@ -443,4 +443,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/german-iso-8859-1.inc.php3 b/lang/german-iso-8859-1.inc.php3 index 4f591995f..716ad4872 100644 --- a/lang/german-iso-8859-1.inc.php3 +++ b/lang/german-iso-8859-1.inc.php3 @@ -432,4 +432,5 @@ $strYes = 'Ja'; $strZip = 'Zip-komprimiert'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/german-utf-8.inc.php3 b/lang/german-utf-8.inc.php3 index 3ddf09811..2fefa0125 100644 --- a/lang/german-utf-8.inc.php3 +++ b/lang/german-utf-8.inc.php3 @@ -433,4 +433,5 @@ $strYes = 'Ja'; $strZip = 'Zip-komprimiert'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/greek-iso-8859-7.inc.php3 b/lang/greek-iso-8859-7.inc.php3 index 414b80e28..4e8b498c7 100644 --- a/lang/greek-iso-8859-7.inc.php3 +++ b/lang/greek-iso-8859-7.inc.php3 @@ -442,4 +442,5 @@ $strStructure = ' $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/greek-utf-8.inc.php3 b/lang/greek-utf-8.inc.php3 index 03b92492b..8285f7e06 100644 --- a/lang/greek-utf-8.inc.php3 +++ b/lang/greek-utf-8.inc.php3 @@ -443,4 +443,5 @@ $strStructure = 'Δομή'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/hebrew-iso-8859-8-i.inc.php3 b/lang/hebrew-iso-8859-8-i.inc.php3 index f565fa470..2e4cce38d 100644 --- a/lang/hebrew-iso-8859-8-i.inc.php3 +++ b/lang/hebrew-iso-8859-8-i.inc.php3 @@ -440,4 +440,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/hindi-utf-8.inc.php3 b/lang/hindi-utf-8.inc.php3 index e1970ae99..efaf058bd 100644 --- a/lang/hindi-utf-8.inc.php3 +++ b/lang/hindi-utf-8.inc.php3 @@ -444,4 +444,5 @@ $strWrongUser = 'Wrong username/password. Access denied.'; //to translate $strZip = '"zipped"'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/hungarian-iso-8859-2.inc.php3 b/lang/hungarian-iso-8859-2.inc.php3 index 35a342c3e..56f84c773 100644 --- a/lang/hungarian-iso-8859-2.inc.php3 +++ b/lang/hungarian-iso-8859-2.inc.php3 @@ -428,4 +428,5 @@ $strNoQuery = 'Nincs SQL k $strSearchOption1 = 'at least one of the words';//to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/hungarian-utf-8.inc.php3 b/lang/hungarian-utf-8.inc.php3 index c4b8c1aad..fec8b5466 100644 --- a/lang/hungarian-utf-8.inc.php3 +++ b/lang/hungarian-utf-8.inc.php3 @@ -429,4 +429,5 @@ $strNoQuery = 'Nincs SQL kérés!'; //to translate $strSearchOption1 = 'at least one of the words';//to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/indonesian-iso-8859-1.inc.php3 b/lang/indonesian-iso-8859-1.inc.php3 index 623c2f7c8..05214ea72 100644 --- a/lang/indonesian-iso-8859-1.inc.php3 +++ b/lang/indonesian-iso-8859-1.inc.php3 @@ -426,4 +426,5 @@ $strZip = '"Dikompress dengan Zip"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/indonesian-utf-8.inc.php3 b/lang/indonesian-utf-8.inc.php3 index 59fdf2f71..044aa8ecc 100644 --- a/lang/indonesian-utf-8.inc.php3 +++ b/lang/indonesian-utf-8.inc.php3 @@ -427,4 +427,5 @@ $strZip = '"Dikompress dengan Zip"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/italian-iso-8859-1.inc.php3 b/lang/italian-iso-8859-1.inc.php3 index 583773114..72a1f0a0a 100644 --- a/lang/italian-iso-8859-1.inc.php3 +++ b/lang/italian-iso-8859-1.inc.php3 @@ -430,4 +430,5 @@ $strYes = ' Si '; $strZip = '"compresso con zip"'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/italian-utf-8.inc.php3 b/lang/italian-utf-8.inc.php3 index ba027bb98..479729604 100644 --- a/lang/italian-utf-8.inc.php3 +++ b/lang/italian-utf-8.inc.php3 @@ -431,4 +431,5 @@ $strYes = ' Si '; $strZip = '"compresso con zip"'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/japanese-euc.inc.php3 b/lang/japanese-euc.inc.php3 index 663ea098f..b26693e82 100644 --- a/lang/japanese-euc.inc.php3 +++ b/lang/japanese-euc.inc.php3 @@ -436,4 +436,5 @@ $strYes = ' $strZip = '"zip¤µ¤ì¤ë"'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/japanese-sjis.inc.php3 b/lang/japanese-sjis.inc.php3 index 57e8dc622..d6c9f2c5b 100644 --- a/lang/japanese-sjis.inc.php3 +++ b/lang/japanese-sjis.inc.php3 @@ -434,4 +434,5 @@ $strYes = ' $strZip = '"zip‚³‚ê‚é"'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/japanese-utf-8.inc.php3 b/lang/japanese-utf-8.inc.php3 index 0166b40d0..806c0e1f8 100644 --- a/lang/japanese-utf-8.inc.php3 +++ b/lang/japanese-utf-8.inc.php3 @@ -434,4 +434,5 @@ $strYes = 'ã¯ã„'; $strZip = '"zipã•れる"'; // To translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/korean-ks_c_5601-1987.inc.php3 b/lang/korean-ks_c_5601-1987.inc.php3 index 0d2bc9a66..bd877d873 100644 --- a/lang/korean-ks_c_5601-1987.inc.php3 +++ b/lang/korean-ks_c_5601-1987.inc.php3 @@ -443,4 +443,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/latvian-utf-8.inc.php3 b/lang/latvian-utf-8.inc.php3 index 2af069603..8fb02284a 100644 --- a/lang/latvian-utf-8.inc.php3 +++ b/lang/latvian-utf-8.inc.php3 @@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/latvian-windows-1257.inc.php3 b/lang/latvian-windows-1257.inc.php3 index 59277b8cf..0a40c2d17 100644 --- a/lang/latvian-windows-1257.inc.php3 +++ b/lang/latvian-windows-1257.inc.php3 @@ -443,4 +443,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/lithuanian-utf-8.inc.php3 b/lang/lithuanian-utf-8.inc.php3 index fd58d2f49..84ee2efc3 100644 --- a/lang/lithuanian-utf-8.inc.php3 +++ b/lang/lithuanian-utf-8.inc.php3 @@ -431,4 +431,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/lithuanian-windows-1257.inc.php3 b/lang/lithuanian-windows-1257.inc.php3 index 404720ed5..258d4141f 100644 --- a/lang/lithuanian-windows-1257.inc.php3 +++ b/lang/lithuanian-windows-1257.inc.php3 @@ -430,4 +430,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/norwegian-iso-8859-1.inc.php3 b/lang/norwegian-iso-8859-1.inc.php3 index 40dd86cf5..87c1edc82 100644 --- a/lang/norwegian-iso-8859-1.inc.php3 +++ b/lang/norwegian-iso-8859-1.inc.php3 @@ -438,4 +438,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/norwegian-utf-8.inc.php3 b/lang/norwegian-utf-8.inc.php3 index a0527ce90..bc15d7f3f 100644 --- a/lang/norwegian-utf-8.inc.php3 +++ b/lang/norwegian-utf-8.inc.php3 @@ -439,4 +439,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/polish-iso-8859-2.inc.php3 b/lang/polish-iso-8859-2.inc.php3 index 0ed3d8347..30f4a3d91 100644 --- a/lang/polish-iso-8859-2.inc.php3 +++ b/lang/polish-iso-8859-2.inc.php3 @@ -424,4 +424,5 @@ $strZip = '".zip"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/polish-utf-8.inc.php3 b/lang/polish-utf-8.inc.php3 index 0ea6b7fe1..c2f4c5ead 100644 --- a/lang/polish-utf-8.inc.php3 +++ b/lang/polish-utf-8.inc.php3 @@ -425,4 +425,5 @@ $strZip = '".zip"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/portuguese-iso-8859-1.inc.php3 b/lang/portuguese-iso-8859-1.inc.php3 index 77ebf5183..90ed8334c 100644 --- a/lang/portuguese-iso-8859-1.inc.php3 +++ b/lang/portuguese-iso-8859-1.inc.php3 @@ -435,4 +435,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/portuguese-utf-8.inc.php3 b/lang/portuguese-utf-8.inc.php3 index f2b9a0884..75cd624eb 100644 --- a/lang/portuguese-utf-8.inc.php3 +++ b/lang/portuguese-utf-8.inc.php3 @@ -436,4 +436,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/romanian-iso-8859-1.inc.php3 b/lang/romanian-iso-8859-1.inc.php3 index 3278cbd44..1b7a5b93e 100644 --- a/lang/romanian-iso-8859-1.inc.php3 +++ b/lang/romanian-iso-8859-1.inc.php3 @@ -428,4 +428,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/romanian-utf-8.inc.php3 b/lang/romanian-utf-8.inc.php3 index 513960811..61e7efd31 100644 --- a/lang/romanian-utf-8.inc.php3 +++ b/lang/romanian-utf-8.inc.php3 @@ -429,4 +429,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/russian-koi8-r.inc.php3 b/lang/russian-koi8-r.inc.php3 index 5e6a7a01f..86af44781 100644 --- a/lang/russian-koi8-r.inc.php3 +++ b/lang/russian-koi8-r.inc.php3 @@ -434,4 +434,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/russian-utf-8.inc.php3 b/lang/russian-utf-8.inc.php3 index d228c1f29..6c57ff74e 100644 --- a/lang/russian-utf-8.inc.php3 +++ b/lang/russian-utf-8.inc.php3 @@ -435,4 +435,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/russian-windows-1251.inc.php3 b/lang/russian-windows-1251.inc.php3 index 39e1f24f2..4544b573f 100644 --- a/lang/russian-windows-1251.inc.php3 +++ b/lang/russian-windows-1251.inc.php3 @@ -434,4 +434,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/serbian-utf-8.inc.php3 b/lang/serbian-utf-8.inc.php3 index f6f5e9cb6..daf8b4974 100644 --- a/lang/serbian-utf-8.inc.php3 +++ b/lang/serbian-utf-8.inc.php3 @@ -446,4 +446,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/serbian-windows-1250.inc.php3 b/lang/serbian-windows-1250.inc.php3 index 63c5a6ca0..7a58d9a2b 100644 --- a/lang/serbian-windows-1250.inc.php3 +++ b/lang/serbian-windows-1250.inc.php3 @@ -445,4 +445,5 @@ $strStructure = 'Structure'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/slovak-iso-8859-2.inc.php3 b/lang/slovak-iso-8859-2.inc.php3 index 4b445684f..4c8f03d48 100644 --- a/lang/slovak-iso-8859-2.inc.php3 +++ b/lang/slovak-iso-8859-2.inc.php3 @@ -426,4 +426,5 @@ $strZip = '"zo zipovan // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/slovak-utf-8.inc.php3 b/lang/slovak-utf-8.inc.php3 index 54328ecb0..4c7c2b393 100644 --- a/lang/slovak-utf-8.inc.php3 +++ b/lang/slovak-utf-8.inc.php3 @@ -427,4 +427,5 @@ $strZip = '"zo zipované"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/slovak-windows-1250.inc.php3 b/lang/slovak-windows-1250.inc.php3 index aedeaef0e..01b8bb3bd 100644 --- a/lang/slovak-windows-1250.inc.php3 +++ b/lang/slovak-windows-1250.inc.php3 @@ -426,4 +426,5 @@ $strZip = '"zo zipovan // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/slovenian-iso-8859-2.inc.php3 b/lang/slovenian-iso-8859-2.inc.php3 index e856fe38e..544efcee9 100644 --- a/lang/slovenian-iso-8859-2.inc.php3 +++ b/lang/slovenian-iso-8859-2.inc.php3 @@ -428,4 +428,5 @@ $strZip = '"zipano"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/slovenian-utf-8.inc.php3 b/lang/slovenian-utf-8.inc.php3 index 817f366b2..7a3d8b543 100644 --- a/lang/slovenian-utf-8.inc.php3 +++ b/lang/slovenian-utf-8.inc.php3 @@ -429,4 +429,5 @@ $strZip = '"zipano"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/slovenian-windows-1250.inc.php3 b/lang/slovenian-windows-1250.inc.php3 index 5d9adc535..9623a59eb 100644 --- a/lang/slovenian-windows-1250.inc.php3 +++ b/lang/slovenian-windows-1250.inc.php3 @@ -428,4 +428,5 @@ $strZip = '"zipano"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/spanish-iso-8859-1.inc.php3 b/lang/spanish-iso-8859-1.inc.php3 index b04de25a9..d152dcf85 100644 --- a/lang/spanish-iso-8859-1.inc.php3 +++ b/lang/spanish-iso-8859-1.inc.php3 @@ -426,4 +426,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/spanish-utf-8.inc.php3 b/lang/spanish-utf-8.inc.php3 index dbcfce5c0..dc9d7fae5 100644 --- a/lang/spanish-utf-8.inc.php3 +++ b/lang/spanish-utf-8.inc.php3 @@ -427,4 +427,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/swedish-iso-8859-1.inc.php3 b/lang/swedish-iso-8859-1.inc.php3 index 6dc87f323..3560f5365 100644 --- a/lang/swedish-iso-8859-1.inc.php3 +++ b/lang/swedish-iso-8859-1.inc.php3 @@ -425,4 +425,5 @@ $strZip = '"zippad"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/swedish-utf-8.inc.php3 b/lang/swedish-utf-8.inc.php3 index 152d3150e..c7a8be436 100644 --- a/lang/swedish-utf-8.inc.php3 +++ b/lang/swedish-utf-8.inc.php3 @@ -426,4 +426,5 @@ $strZip = '"zippad"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/thai-tis-620.inc.php3 b/lang/thai-tis-620.inc.php3 index ae6eda240..80a74f3a2 100644 --- a/lang/thai-tis-620.inc.php3 +++ b/lang/thai-tis-620.inc.php3 @@ -428,4 +428,5 @@ $strZip = '" // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/thai-utf-8.inc.php3 b/lang/thai-utf-8.inc.php3 index c43567a96..d0710c9b9 100644 --- a/lang/thai-utf-8.inc.php3 +++ b/lang/thai-utf-8.inc.php3 @@ -429,4 +429,5 @@ $strZip = '"ถูà¸à¸šà¸µà¸šà¸­à¸±à¸”อยู่ (zip)"'; // To translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/turkish-iso-8859-9.inc.php3 b/lang/turkish-iso-8859-9.inc.php3 index d957b1cfc..24b57e180 100644 --- a/lang/turkish-iso-8859-9.inc.php3 +++ b/lang/turkish-iso-8859-9.inc.php3 @@ -431,4 +431,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/turkish-utf-8.inc.php3 b/lang/turkish-utf-8.inc.php3 index 478bf0e4c..171c94989 100644 --- a/lang/turkish-utf-8.inc.php3 +++ b/lang/turkish-utf-8.inc.php3 @@ -432,4 +432,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/ukrainian-utf-8.inc.php3 b/lang/ukrainian-utf-8.inc.php3 index 82cc9c183..06f10c00a 100644 --- a/lang/ukrainian-utf-8.inc.php3 +++ b/lang/ukrainian-utf-8.inc.php3 @@ -434,4 +434,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/lang/ukrainian-windows-1251.inc.php3 b/lang/ukrainian-windows-1251.inc.php3 index b58034708..fd309a05e 100644 --- a/lang/ukrainian-windows-1251.inc.php3 +++ b/lang/ukrainian-windows-1251.inc.php3 @@ -433,4 +433,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate $strValidateSQL = 'Validate SQL'; //to translate $strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate +$strWebServerUploadDirectory = 'web-server upload directory'; //to translate ?> diff --git a/libraries/functions.js b/libraries/functions.js index 39559b2bb..52fc442a8 100644 --- a/libraries/functions.js +++ b/libraries/functions.js @@ -118,6 +118,9 @@ function checkSqlQuery(theForm) if (isEmpty && typeof(theForm.elements['sql_file']) != 'undefined') { isEmpty = (theForm.elements['sql_file'].value == '') ? 1 : 0; } + if (isEmpty && typeof(theForm.elements['sql_localfile']) != 'undefined') { + isEmpty = (theForm.elements['sql_localfile'].value == '') ? 1 : 0; + } if (isEmpty && typeof(theForm.elements['id_bookmark']) != 'undefined') { isEmpty = (theForm.elements['id_bookmark'].value == null || theForm.elements['id_bookmark'].value == ''); } @@ -133,6 +136,9 @@ function checkSqlQuery(theForm) if (isEmpty && typeof(theForm.elements['sql_file']) != 'undefined') { isEmpty = (theForm.elements['sql_file'].value.replace(space_re, '') == '') ? 1 : 0; } + if (isEmpty && typeof(theForm.elements['sql_localfile']) != 'undefined') { + isEmpty = (theForm.elements['sql_localfile'].value.replace(space_re, '') == '') ? 1 : 0; + } if (isEmpty && typeof(theForm.elements['id_bookmark']) != 'undefined') { isEmpty = (theForm.elements['id_bookmark'].value == null || theForm.elements['id_bookmark'].value == ''); isEmpty = (theForm.elements['id_bookmark'].selectedIndex == 0); diff --git a/read_dump.php3 b/read_dump.php3 index 71a267caa..76f1e9d5b 100644 --- a/read_dump.php3 +++ b/read_dump.php3 @@ -199,6 +199,7 @@ $err_url = $goto $view_bookmark = 0; $sql_bookmark = isset($sql_bookmark) ? $sql_bookmark : ''; $sql_query = isset($sql_query) ? $sql_query : ''; +$sql_file = (!empty($sql_localfile) && $cfg['UploadDir']!='') ? $cfg['UploadDir'].$sql_localfile : $sql_file; $sql_file = !empty($sql_file) ? $sql_file : 'none'; @@ -227,8 +228,8 @@ if (!empty($id_bookmark)) { */ // Gets the query from a file if required if ($sql_file != 'none') { - if (file_exists($sql_file) && is_uploaded_file($sql_file)) { - + if ((file_exists($sql_file) && is_uploaded_file($sql_file)) + || file_exists($cfg['UploadDir'].$sql_localfile)) { $open_basedir = ''; if (PMA_PHP_INT_VERSION >= 40000) { $open_basedir = @ini_get('open_basedir');