upload dir validation
This commit is contained in:
@@ -10,6 +10,7 @@ $Source$
|
||||
* db_details_common.php3, tbl_properties_common.php3,
|
||||
libraries/sqlparser.lib.php3: Fixed bug #571409 (it doesn't work properly
|
||||
with Zend Accelerator).
|
||||
* db_details.php3, lang/*: validation on web-server upload dir
|
||||
|
||||
2002-08-23 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* libraries/charset_conversion.lib.php3: Don't let php display an error
|
||||
|
@@ -108,26 +108,34 @@ echo "\n";
|
||||
// web-server upload directory
|
||||
// (TODO: display the charset selection, even if is_upload == FALSE)
|
||||
|
||||
if ($cfg['UploadDir'] != '' && $handle = @opendir($cfg['UploadDir'])) {
|
||||
$is_first = 0;
|
||||
while ($file = @readdir($handle)) {
|
||||
if (is_file($cfg['UploadDir'] . $file) && substr($file, -4) == '.sql') {
|
||||
if ($is_first == 0) {
|
||||
echo "\n";
|
||||
echo ' <i>' . $strOr . '</i> ' . $strWebServerUploadDirectory . ' :<br />' . "\n";
|
||||
echo ' <div style="margin-bottom: 5px">' . "\n";
|
||||
echo ' <select size="1" name="sql_localfile">' . "\n";
|
||||
echo ' <option value="" selected></option>' . "\n";
|
||||
} // end if (is_first)
|
||||
echo ' <option value="' . htmlspecialchars($file) . '">' . htmlspecialchars($file) . '</option>' . "\n";
|
||||
$is_first++;
|
||||
} // end if (is_file)
|
||||
} // end while
|
||||
if ($is_first > 0) {
|
||||
echo ' </select>' . "\n"
|
||||
. ' </div>' . "\n\n";
|
||||
} // end if (isfirst > 0)
|
||||
@closedir($handle);
|
||||
if ($cfg['UploadDir'] != '') {
|
||||
if ($handle = @opendir($cfg['UploadDir'])) {
|
||||
$is_first = 0;
|
||||
while ($file = @readdir($handle)) {
|
||||
if (is_file($cfg['UploadDir'] . $file) && substr($file, -4) == '.sql') {
|
||||
if ($is_first == 0) {
|
||||
echo "\n";
|
||||
echo ' <i>' . $strOr . '</i> ' . $strWebServerUploadDirectory . ' :<br />' . "\n";
|
||||
echo ' <div style="margin-bottom: 5px">' . "\n";
|
||||
echo ' <select size="1" name="sql_localfile">' . "\n";
|
||||
echo ' <option value="" selected></option>' . "\n";
|
||||
} // end if (is_first)
|
||||
echo ' <option value="' . htmlspecialchars($file) . '">' . htmlspecialchars($file) . '</option>' . "\n";
|
||||
$is_first++;
|
||||
} // end if (is_file)
|
||||
} // end while
|
||||
if ($is_first > 0) {
|
||||
echo ' </select>' . "\n"
|
||||
. ' </div>' . "\n\n";
|
||||
} // end if (isfirst > 0)
|
||||
@closedir($handle);
|
||||
}
|
||||
else {
|
||||
echo ' <div style="margin-bottom: 5px">' . "\n";
|
||||
echo ' <font color="red">' . $strError . '</font><br />' . "\n";
|
||||
echo ' ' . $strWebServerUploadDirectoryError . "\n";
|
||||
echo ' </div>' . "\n";
|
||||
}
|
||||
} // end if (web-server upload directory)
|
||||
|
||||
// Bookmark Support
|
||||
|
@@ -431,4 +431,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -432,4 +432,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -430,4 +430,5 @@ $strZip = '"kompresuar me 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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -431,4 +431,5 @@ $strZip = '"kompresuar me 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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -446,4 +446,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -445,4 +445,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -445,4 +445,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -446,4 +446,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -445,4 +445,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -446,4 +446,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -445,4 +445,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -432,4 +432,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -433,4 +433,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -432,4 +432,5 @@ $strZip = '"zipped"';
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -431,4 +431,5 @@ $strZip = '"zipped"';
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -429,4 +429,5 @@ $strZip = '"zipped"';
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -444,4 +444,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -445,4 +445,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -444,4 +444,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -430,4 +430,5 @@ $strZip = '"zazipov
|
||||
// To translate
|
||||
|
||||
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -431,4 +431,5 @@ $strZip = '"zazipováno"';
|
||||
// To translate
|
||||
|
||||
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -430,4 +430,5 @@ $strZip = '"zazipov
|
||||
// To translate
|
||||
|
||||
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -439,4 +439,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -440,4 +440,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -434,4 +434,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -435,4 +435,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -416,6 +416,7 @@ $strViewDump = 'View dump (schema) of table';
|
||||
$strViewDumpDB = 'View dump (schema) of database';
|
||||
|
||||
$strWebServerUploadDirectory = 'web-server upload directory';
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached';
|
||||
$strWelcome = 'Welcome to %s';
|
||||
$strWithChecked = 'With selected:';
|
||||
$strWrongUser = 'Wrong username/password. Access denied.';
|
||||
|
@@ -417,6 +417,7 @@ $strViewDump = 'View dump (schema) of table';
|
||||
$strViewDumpDB = 'View dump (schema) of database';
|
||||
|
||||
$strWebServerUploadDirectory = 'web-server upload directory';
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached';
|
||||
$strWelcome = 'Welcome to %s';
|
||||
$strWithChecked = 'With selected:';
|
||||
$strWrongUser = 'Wrong username/password. Access denied.';
|
||||
|
@@ -425,4 +425,5 @@ $strZip = '"zipitud"';
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -426,4 +426,5 @@ $strZip = '"zipitud"';
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -428,4 +428,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -429,4 +429,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -416,6 +416,7 @@ $strViewDump = '<b>Afficher le sch
|
||||
$strViewDumpDB = 'Afficher le sch<63>ma de la base ';
|
||||
|
||||
$strWebServerUploadDirectory = 'r<>pertoire de transfert du serveur Web';
|
||||
$strWebServerUploadDirectoryError = 'Le r<>pertoire de transfert est inaccessible';
|
||||
$strWelcome = 'Bienvenue <20> %s ';
|
||||
$strWithChecked = 'Pour la s<>lection :';
|
||||
$strWrongUser = 'Erreur d\'utilisateur/mot de passe. Acc<63>s refus<75>';
|
||||
|
@@ -417,6 +417,7 @@ $strViewDump = '<b>Afficher le schéma</b> de la table';
|
||||
$strViewDumpDB = 'Afficher le schéma de la base ';
|
||||
|
||||
$strWebServerUploadDirectory = 'répertoire de transfert du serveur Web';
|
||||
$strWebServerUploadDirectoryError = 'Le répertoire de transfert est inaccessible';
|
||||
$strWelcome = 'Bienvenue à %s ';
|
||||
$strWithChecked = 'Pour la sélection :';
|
||||
$strWrongUser = 'Erreur d\'utilisateur/mot de passe. Accès refusé';
|
||||
|
@@ -432,4 +432,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -433,4 +433,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -444,4 +444,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -433,4 +433,5 @@ $strYes = 'Ja';
|
||||
$strZip = 'Zip-komprimiert';
|
||||
// To translate
|
||||
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -434,4 +434,5 @@ $strYes = 'Ja';
|
||||
$strZip = 'Zip-komprimiert';
|
||||
// To translate
|
||||
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -443,4 +443,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -444,4 +444,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -441,4 +441,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -445,4 +445,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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -429,4 +429,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -430,4 +430,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -427,4 +427,5 @@ $strZip = '"Dikompress dengan 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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -428,4 +428,5 @@ $strZip = '"Dikompress dengan 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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -431,4 +431,5 @@ $strZip = '"compresso con zip"';
|
||||
|
||||
// To translate
|
||||
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -432,4 +432,5 @@ $strZip = '"compresso con zip"';
|
||||
|
||||
// To translate
|
||||
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -437,4 +437,5 @@ $strZip = '"zip
|
||||
// To translate
|
||||
|
||||
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -435,4 +435,5 @@ $strZip = '"zip
|
||||
// To translate
|
||||
|
||||
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -435,4 +435,5 @@ $strZip = '"zipされる"';
|
||||
// To translate
|
||||
|
||||
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -444,4 +444,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -445,4 +445,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -444,4 +444,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -432,4 +432,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -431,4 +431,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -444,4 +444,5 @@ $strWrongUser = 'Salah kata pengenalan/kata laluan. Akses dilarang.';
|
||||
$strYes = 'Ya';
|
||||
|
||||
$strZip = '"zipped"';
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -445,4 +445,5 @@ $strWrongUser = 'Salah kata pengenalan/kata laluan. Akses dilarang.';
|
||||
$strYes = 'Ya';
|
||||
|
||||
$strZip = '"zipped"';
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -439,4 +439,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -440,4 +440,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -425,4 +425,5 @@ $strZip = '".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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -426,4 +426,5 @@ $strZip = '".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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -436,4 +436,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -437,4 +437,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -429,4 +429,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -430,4 +430,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -435,4 +435,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -436,4 +436,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -435,4 +435,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -447,4 +447,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -446,4 +446,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -427,4 +427,5 @@ $strZip = '"zo zipovan
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -428,4 +428,5 @@ $strZip = '"zo zipované"';
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -427,4 +427,5 @@ $strZip = '"zo zipovan
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -430,4 +430,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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -427,4 +427,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -428,4 +428,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -426,4 +426,5 @@ $strZip = '"zippad"';
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -427,4 +427,5 @@ $strZip = '"zippad"';
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -429,4 +429,5 @@ $strZip = '"
|
||||
|
||||
$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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -430,4 +430,5 @@ $strZip = '"ถูกบีบอัดอยู่ (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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -432,4 +432,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -433,4 +433,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -435,4 +435,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
@@ -434,4 +434,5 @@ $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
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
?>
|
||||
|
Reference in New Issue
Block a user