upload dir validation
This commit is contained in:
@@ -10,6 +10,7 @@ $Source$
|
|||||||
* db_details_common.php3, tbl_properties_common.php3,
|
* db_details_common.php3, tbl_properties_common.php3,
|
||||||
libraries/sqlparser.lib.php3: Fixed bug #571409 (it doesn't work properly
|
libraries/sqlparser.lib.php3: Fixed bug #571409 (it doesn't work properly
|
||||||
with Zend Accelerator).
|
with Zend Accelerator).
|
||||||
|
* db_details.php3, lang/*: validation on web-server upload dir
|
||||||
|
|
||||||
2002-08-23 Alexander M. Turek <rabus@users.sourceforge.net>
|
2002-08-23 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||||
* libraries/charset_conversion.lib.php3: Don't let php display an error
|
* libraries/charset_conversion.lib.php3: Don't let php display an error
|
||||||
|
@@ -108,26 +108,34 @@ echo "\n";
|
|||||||
// web-server upload directory
|
// web-server upload directory
|
||||||
// (TODO: display the charset selection, even if is_upload == FALSE)
|
// (TODO: display the charset selection, even if is_upload == FALSE)
|
||||||
|
|
||||||
if ($cfg['UploadDir'] != '' && $handle = @opendir($cfg['UploadDir'])) {
|
if ($cfg['UploadDir'] != '') {
|
||||||
$is_first = 0;
|
if ($handle = @opendir($cfg['UploadDir'])) {
|
||||||
while ($file = @readdir($handle)) {
|
$is_first = 0;
|
||||||
if (is_file($cfg['UploadDir'] . $file) && substr($file, -4) == '.sql') {
|
while ($file = @readdir($handle)) {
|
||||||
if ($is_first == 0) {
|
if (is_file($cfg['UploadDir'] . $file) && substr($file, -4) == '.sql') {
|
||||||
echo "\n";
|
if ($is_first == 0) {
|
||||||
echo ' <i>' . $strOr . '</i> ' . $strWebServerUploadDirectory . ' :<br />' . "\n";
|
echo "\n";
|
||||||
echo ' <div style="margin-bottom: 5px">' . "\n";
|
echo ' <i>' . $strOr . '</i> ' . $strWebServerUploadDirectory . ' :<br />' . "\n";
|
||||||
echo ' <select size="1" name="sql_localfile">' . "\n";
|
echo ' <div style="margin-bottom: 5px">' . "\n";
|
||||||
echo ' <option value="" selected></option>' . "\n";
|
echo ' <select size="1" name="sql_localfile">' . "\n";
|
||||||
} // end if (is_first)
|
echo ' <option value="" selected></option>' . "\n";
|
||||||
echo ' <option value="' . htmlspecialchars($file) . '">' . htmlspecialchars($file) . '</option>' . "\n";
|
} // end if (is_first)
|
||||||
$is_first++;
|
echo ' <option value="' . htmlspecialchars($file) . '">' . htmlspecialchars($file) . '</option>' . "\n";
|
||||||
} // end if (is_file)
|
$is_first++;
|
||||||
} // end while
|
} // end if (is_file)
|
||||||
if ($is_first > 0) {
|
} // end while
|
||||||
echo ' </select>' . "\n"
|
if ($is_first > 0) {
|
||||||
. ' </div>' . "\n\n";
|
echo ' </select>' . "\n"
|
||||||
} // end if (isfirst > 0)
|
. ' </div>' . "\n\n";
|
||||||
@closedir($handle);
|
} // 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)
|
} // end if (web-server upload directory)
|
||||||
|
|
||||||
// Bookmark Support
|
// 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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
// 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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
// To translate
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory'; //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
|
// To translate
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory'; //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
|
// To translate
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory'; //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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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';
|
$strViewDumpDB = 'View dump (schema) of database';
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory';
|
$strWebServerUploadDirectory = 'web-server upload directory';
|
||||||
|
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached';
|
||||||
$strWelcome = 'Welcome to %s';
|
$strWelcome = 'Welcome to %s';
|
||||||
$strWithChecked = 'With selected:';
|
$strWithChecked = 'With selected:';
|
||||||
$strWrongUser = 'Wrong username/password. Access denied.';
|
$strWrongUser = 'Wrong username/password. Access denied.';
|
||||||
|
@@ -417,6 +417,7 @@ $strViewDump = 'View dump (schema) of table';
|
|||||||
$strViewDumpDB = 'View dump (schema) of database';
|
$strViewDumpDB = 'View dump (schema) of database';
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory';
|
$strWebServerUploadDirectory = 'web-server upload directory';
|
||||||
|
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached';
|
||||||
$strWelcome = 'Welcome to %s';
|
$strWelcome = 'Welcome to %s';
|
||||||
$strWithChecked = 'With selected:';
|
$strWithChecked = 'With selected:';
|
||||||
$strWrongUser = 'Wrong username/password. Access denied.';
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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 ';
|
$strViewDumpDB = 'Afficher le sch<63>ma de la base ';
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'r<>pertoire de transfert du serveur Web';
|
$strWebServerUploadDirectory = 'r<>pertoire de transfert du serveur Web';
|
||||||
|
$strWebServerUploadDirectoryError = 'Le r<>pertoire de transfert est inaccessible';
|
||||||
$strWelcome = 'Bienvenue <20> %s ';
|
$strWelcome = 'Bienvenue <20> %s ';
|
||||||
$strWithChecked = 'Pour la s<>lection :';
|
$strWithChecked = 'Pour la s<>lection :';
|
||||||
$strWrongUser = 'Erreur d\'utilisateur/mot de passe. Acc<63>s refus<75>';
|
$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 ';
|
$strViewDumpDB = 'Afficher le schéma de la base ';
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'répertoire de transfert du serveur Web';
|
$strWebServerUploadDirectory = 'répertoire de transfert du serveur Web';
|
||||||
|
$strWebServerUploadDirectoryError = 'Le répertoire de transfert est inaccessible';
|
||||||
$strWelcome = 'Bienvenue à %s ';
|
$strWelcome = 'Bienvenue à %s ';
|
||||||
$strWithChecked = 'Pour la sélection :';
|
$strWithChecked = 'Pour la sélection :';
|
||||||
$strWrongUser = 'Erreur d\'utilisateur/mot de passe. Accès refusé';
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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';
|
$strZip = 'Zip-komprimiert';
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -434,4 +434,5 @@ $strYes = 'Ja';
|
|||||||
$strZip = 'Zip-komprimiert';
|
$strZip = 'Zip-komprimiert';
|
||||||
// To translate
|
// 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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
// To translate
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory'; //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
|
// To translate
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory'; //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
|
// To translate
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory'; //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
|
// To translate
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory'; //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
|
// To translate
|
||||||
|
|
||||||
$strWebServerUploadDirectory = 'web-server upload directory'; //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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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';
|
$strYes = 'Ya';
|
||||||
|
|
||||||
$strZip = '"zipped"';
|
$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';
|
$strYes = 'Ya';
|
||||||
|
|
||||||
$strZip = '"zipped"';
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
// 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
|
$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
|
$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
|
// 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
|
$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
|
$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
|
// 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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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
|
$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