web-based upload dir
This commit is contained in:
@@ -1339,6 +1339,21 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
|||||||
<br /><br />
|
<br /><br />
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt><b>$cfg['UploadDir'] </b>string</dt>
|
||||||
|
<dd>
|
||||||
|
The name of the directory, ending with a slash, where SQL files have
|
||||||
|
been uploaded by other means than phpMyAdmin (for example, ftp).
|
||||||
|
Those files are available under a drop-down box when you click the
|
||||||
|
database name, then the SQL tab.
|
||||||
|
<br /><br />
|
||||||
|
This feature is useful when your file is too big to be uploaded via
|
||||||
|
HTTP, or when file uploads are disabled in PHP.
|
||||||
|
<br /><br />
|
||||||
|
Please note that if PHP is running in safe mode, this directory must
|
||||||
|
be owned by the same user as the owner of the phpMyAdmin scripts.
|
||||||
|
<br /><br />
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt><b>$cfg['RepeatCells'] </b>integer</dt>
|
<dt><b>$cfg['RepeatCells'] </b>integer</dt>
|
||||||
<dd>
|
<dd>
|
||||||
Repeat the headers every X cells, or 0 to deactivate.
|
Repeat the headers every X cells, or 0 to deactivate.
|
||||||
|
@@ -355,6 +355,10 @@ $cfg['SQLQuery']['Explain'] = TRUE; // EXPLAIN on SELECT queries
|
|||||||
$cfg['SQLQuery']['ShowAsPHP'] = TRUE; // Wrap a query in PHP
|
$cfg['SQLQuery']['ShowAsPHP'] = TRUE; // Wrap a query in PHP
|
||||||
$cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLValidator'] as well)
|
$cfg['SQLQuery']['Validate'] = FALSE; // Validate a query (see $cfg['SQLValidator'] as well)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* web-server upload directory
|
||||||
|
*/
|
||||||
|
$cfg['UploadDir'] = './upload/'; // end with a slash
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SQL Parser Settings
|
* SQL Parser Settings
|
||||||
|
@@ -96,14 +96,37 @@ if ($is_upload) {
|
|||||||
echo '>' . $temp_charset . '</option>' . "\n";
|
echo '>' . $temp_charset . '</option>' . "\n";
|
||||||
}
|
}
|
||||||
echo ' </select>';
|
echo ' </select>';
|
||||||
} // end if
|
} // end if (recoding)
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
} // end if
|
} // end if (is upload)
|
||||||
echo "\n";
|
echo "\n";
|
||||||
|
|
||||||
|
// web-server upload directory
|
||||||
|
// (TODO: display the charset selection, even if is_upload == FALSE)
|
||||||
|
|
||||||
|
if ($cfg['UploadDir'] !='' && $handle = opendir($cfg['UploadDir'])) {
|
||||||
|
$isfirst=0;
|
||||||
|
while ($file = @readdir($handle)) {
|
||||||
|
if(is_file($cfg['UploadDir'] . $file)) {
|
||||||
|
if ($isfirst==0) {
|
||||||
|
echo "\n".' <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 (isfirst)
|
||||||
|
echo ' <option value="'.$file.'">'.$file.'</option>' . "\n";
|
||||||
|
$isfirst++;
|
||||||
|
} // end if (is_file)
|
||||||
|
} // end while
|
||||||
|
if ($isfirst>0) {
|
||||||
|
echo " </select>\n </div>\n\n";
|
||||||
|
} // end if (isfirst > 0)
|
||||||
|
@closedir($handle);
|
||||||
|
} // end if (web-server upload directory)
|
||||||
|
|
||||||
// Bookmark Support
|
// Bookmark Support
|
||||||
if ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table']) {
|
if ($cfg['Bookmark']['db'] && $cfg['Bookmark']['table']) {
|
||||||
if (($bookmark_list = PMA_listBookmarks($db, $cfg['Bookmark'])) && count($bookmark_list) > 0) {
|
if (($bookmark_list = PMA_listBookmarks($db, $cfg['Bookmark'])) && count($bookmark_list) > 0) {
|
||||||
|
@@ -430,4 +430,5 @@ $strYes = 'Ja';
|
|||||||
$strZip = '"ge-zip"';
|
$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
|
||||||
?>
|
?>
|
||||||
|
@@ -431,4 +431,5 @@ $strYes = 'Ja';
|
|||||||
$strZip = '"ge-zip"';
|
$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
|
||||||
?>
|
?>
|
||||||
|
@@ -429,4 +429,5 @@ $strZip = '"kompresuar me zip"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -430,4 +430,5 @@ $strZip = '"kompresuar me zip"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -445,4 +445,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -445,4 +445,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -445,4 +445,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -431,4 +431,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -432,4 +432,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
||||||
?>
|
?>
|
||||||
|
@@ -430,4 +430,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
|
||||||
?>
|
?>
|
||||||
|
@@ -430,4 +430,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
|
||||||
?>
|
?>
|
||||||
|
@@ -428,4 +428,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
|
||||||
?>
|
?>
|
||||||
|
@@ -443,4 +443,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -443,4 +443,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -429,4 +429,5 @@ $strYes = 'Ano';
|
|||||||
$strZip = '"zazipov<6F>no"';
|
$strZip = '"zazipov<6F>no"';
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -430,4 +430,5 @@ $strYes = 'Ano';
|
|||||||
$strZip = '"zazipováno"';
|
$strZip = '"zazipováno"';
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -429,4 +429,5 @@ $strYes = 'Ano';
|
|||||||
$strZip = '"zazipov<6F>no"';
|
$strZip = '"zazipov<6F>no"';
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -438,4 +438,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -439,4 +439,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -433,4 +433,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -434,4 +434,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -415,6 +415,7 @@ $strValue = 'Value';
|
|||||||
$strViewDump = 'View dump (schema) of table';
|
$strViewDump = 'View dump (schema) of table';
|
||||||
$strViewDumpDB = 'View dump (schema) of database';
|
$strViewDumpDB = 'View dump (schema) of database';
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory';
|
||||||
$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.';
|
||||||
|
@@ -416,6 +416,7 @@ $strValue = 'Value';
|
|||||||
$strViewDump = 'View dump (schema) of table';
|
$strViewDump = 'View dump (schema) of table';
|
||||||
$strViewDumpDB = 'View dump (schema) of database';
|
$strViewDumpDB = 'View dump (schema) of database';
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory';
|
||||||
$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.';
|
||||||
|
@@ -424,4 +424,5 @@ $strZip = '"zipitud"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -425,4 +425,5 @@ $strZip = '"zipitud"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -427,4 +427,5 @@ $strYes = 'Kyll
|
|||||||
$strZip = '"zip-pakattu"';
|
$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
|
||||||
?>
|
?>
|
||||||
|
@@ -428,4 +428,5 @@ $strYes = 'Kyllä';
|
|||||||
$strZip = '"zip-pakattu"';
|
$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
|
||||||
?>
|
?>
|
||||||
|
@@ -415,6 +415,7 @@ $strValue = 'Valeur';
|
|||||||
$strViewDump = '<b>Afficher le sch<63>ma</b> de la table';
|
$strViewDump = '<b>Afficher le sch<63>ma</b> de la table';
|
||||||
$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';
|
||||||
$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>';
|
||||||
|
@@ -424,4 +424,5 @@ $strYes = 'Oui';
|
|||||||
|
|
||||||
$strZip = '"zippé"';
|
$strZip = '"zippé"';
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -431,4 +431,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
|
|||||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -432,4 +432,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
|
|||||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -443,4 +443,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -432,4 +432,5 @@ $strYes = 'Ja';
|
|||||||
$strZip = 'Zip-komprimiert';
|
$strZip = 'Zip-komprimiert';
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -433,4 +433,5 @@ $strYes = 'Ja';
|
|||||||
$strZip = 'Zip-komprimiert';
|
$strZip = 'Zip-komprimiert';
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -442,4 +442,5 @@ $strStructure = '
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -443,4 +443,5 @@ $strStructure = 'Δομή'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -440,4 +440,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -444,4 +444,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
|
||||||
?>
|
?>
|
||||||
|
@@ -428,4 +428,5 @@ $strNoQuery = 'Nincs SQL k
|
|||||||
$strSearchOption1 = 'at least one of the words';//to translate
|
$strSearchOption1 = 'at least one of the words';//to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -429,4 +429,5 @@ $strNoQuery = 'Nincs SQL kérés!'; //to translate
|
|||||||
$strSearchOption1 = 'at least one of the words';//to translate
|
$strSearchOption1 = 'at least one of the words';//to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -426,4 +426,5 @@ $strZip = '"Dikompress dengan Zip"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -427,4 +427,5 @@ $strZip = '"Dikompress dengan Zip"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -430,4 +430,5 @@ $strYes = ' Si ';
|
|||||||
$strZip = '"compresso con zip"';
|
$strZip = '"compresso con zip"';
|
||||||
|
|
||||||
// To translate
|
// To translate
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -431,4 +431,5 @@ $strYes = ' Si ';
|
|||||||
$strZip = '"compresso con zip"';
|
$strZip = '"compresso con zip"';
|
||||||
|
|
||||||
// To translate
|
// To translate
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -436,4 +436,5 @@ $strYes = '
|
|||||||
$strZip = '"zip<69><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"';
|
$strZip = '"zip<69><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"';
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -434,4 +434,5 @@ $strYes = '
|
|||||||
$strZip = '"zip<69><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"';
|
$strZip = '"zip<69><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"';
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -434,4 +434,5 @@ $strYes = 'はい';
|
|||||||
$strZip = '"zipされる"';
|
$strZip = '"zipされる"';
|
||||||
// To translate
|
// To translate
|
||||||
|
|
||||||
|
$strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||||
?>
|
?>
|
||||||
|
@@ -443,4 +443,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -444,4 +444,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -443,4 +443,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -431,4 +431,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -430,4 +430,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -438,4 +438,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -439,4 +439,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -424,4 +424,5 @@ $strZip = '".zip"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -425,4 +425,5 @@ $strZip = '".zip"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -435,4 +435,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -436,4 +436,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -428,4 +428,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
|
|||||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -429,4 +429,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
|
|||||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -434,4 +434,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -435,4 +435,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -434,4 +434,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -446,4 +446,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -445,4 +445,5 @@ $strStructure = 'Structure'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -426,4 +426,5 @@ $strZip = '"zo zipovan
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -427,4 +427,5 @@ $strZip = '"zo zipované"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -426,4 +426,5 @@ $strZip = '"zo zipovan
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -428,4 +428,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
|
||||||
?>
|
?>
|
||||||
|
@@ -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
|
||||||
?>
|
?>
|
||||||
|
@@ -428,4 +428,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
|
||||||
?>
|
?>
|
||||||
|
@@ -426,4 +426,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
|
|||||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -427,4 +427,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
|
|||||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -425,4 +425,5 @@ $strZip = '"zippad"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -426,4 +426,5 @@ $strZip = '"zippad"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -428,4 +428,5 @@ $strZip = '"
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -429,4 +429,5 @@ $strZip = '"ถูกบีบอัดอยู่ (zip)"';
|
|||||||
// 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
|
||||||
?>
|
?>
|
||||||
|
@@ -431,4 +431,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
|
|||||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -432,4 +432,5 @@ $strSQPBugUnclosedQuote = 'Unclosed quote'; //to translate
|
|||||||
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
$strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -434,4 +434,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -433,4 +433,5 @@ $strSQPBugUnknownPunctuation = 'Unknown Punctuation String'; //to translate
|
|||||||
$strValidateSQL = 'Validate SQL'; //to translate
|
$strValidateSQL = 'Validate SQL'; //to translate
|
||||||
|
|
||||||
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL privileged account. Your MySQL server is running with this default, is open to intrusion, and you really should fix this security hole.'; //to translate
|
$strInsecureMySQL = 'Your configuration file contains settings (root with no password) that correspond to the default MySQL 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
|
||||||
?>
|
?>
|
||||||
|
@@ -118,6 +118,9 @@ function checkSqlQuery(theForm)
|
|||||||
if (isEmpty && typeof(theForm.elements['sql_file']) != 'undefined') {
|
if (isEmpty && typeof(theForm.elements['sql_file']) != 'undefined') {
|
||||||
isEmpty = (theForm.elements['sql_file'].value == '') ? 1 : 0;
|
isEmpty = (theForm.elements['sql_file'].value == '') ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
if (isEmpty && typeof(theForm.elements['sql_localfile']) != 'undefined') {
|
||||||
|
isEmpty = (theForm.elements['sql_localfile'].value == '') ? 1 : 0;
|
||||||
|
}
|
||||||
if (isEmpty && typeof(theForm.elements['id_bookmark']) != 'undefined') {
|
if (isEmpty && typeof(theForm.elements['id_bookmark']) != 'undefined') {
|
||||||
isEmpty = (theForm.elements['id_bookmark'].value == null || theForm.elements['id_bookmark'].value == '');
|
isEmpty = (theForm.elements['id_bookmark'].value == null || theForm.elements['id_bookmark'].value == '');
|
||||||
}
|
}
|
||||||
@@ -133,6 +136,9 @@ function checkSqlQuery(theForm)
|
|||||||
if (isEmpty && typeof(theForm.elements['sql_file']) != 'undefined') {
|
if (isEmpty && typeof(theForm.elements['sql_file']) != 'undefined') {
|
||||||
isEmpty = (theForm.elements['sql_file'].value.replace(space_re, '') == '') ? 1 : 0;
|
isEmpty = (theForm.elements['sql_file'].value.replace(space_re, '') == '') ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
if (isEmpty && typeof(theForm.elements['sql_localfile']) != 'undefined') {
|
||||||
|
isEmpty = (theForm.elements['sql_localfile'].value.replace(space_re, '') == '') ? 1 : 0;
|
||||||
|
}
|
||||||
if (isEmpty && typeof(theForm.elements['id_bookmark']) != 'undefined') {
|
if (isEmpty && typeof(theForm.elements['id_bookmark']) != 'undefined') {
|
||||||
isEmpty = (theForm.elements['id_bookmark'].value == null || theForm.elements['id_bookmark'].value == '');
|
isEmpty = (theForm.elements['id_bookmark'].value == null || theForm.elements['id_bookmark'].value == '');
|
||||||
isEmpty = (theForm.elements['id_bookmark'].selectedIndex == 0);
|
isEmpty = (theForm.elements['id_bookmark'].selectedIndex == 0);
|
||||||
|
@@ -199,6 +199,7 @@ $err_url = $goto
|
|||||||
$view_bookmark = 0;
|
$view_bookmark = 0;
|
||||||
$sql_bookmark = isset($sql_bookmark) ? $sql_bookmark : '';
|
$sql_bookmark = isset($sql_bookmark) ? $sql_bookmark : '';
|
||||||
$sql_query = isset($sql_query) ? $sql_query : '';
|
$sql_query = isset($sql_query) ? $sql_query : '';
|
||||||
|
$sql_file = (!empty($sql_localfile) && $cfg['UploadDir']!='') ? $cfg['UploadDir'].$sql_localfile : $sql_file;
|
||||||
$sql_file = !empty($sql_file) ? $sql_file : 'none';
|
$sql_file = !empty($sql_file) ? $sql_file : 'none';
|
||||||
|
|
||||||
|
|
||||||
@@ -227,8 +228,8 @@ if (!empty($id_bookmark)) {
|
|||||||
*/
|
*/
|
||||||
// Gets the query from a file if required
|
// Gets the query from a file if required
|
||||||
if ($sql_file != 'none') {
|
if ($sql_file != 'none') {
|
||||||
if (file_exists($sql_file) && is_uploaded_file($sql_file)) {
|
if ((file_exists($sql_file) && is_uploaded_file($sql_file))
|
||||||
|
|| file_exists($cfg['UploadDir'].$sql_localfile)) {
|
||||||
$open_basedir = '';
|
$open_basedir = '';
|
||||||
if (PMA_PHP_INT_VERSION >= 40000) {
|
if (PMA_PHP_INT_VERSION >= 40000) {
|
||||||
$open_basedir = @ini_get('open_basedir');
|
$open_basedir = @ini_get('open_basedir');
|
||||||
|
Reference in New Issue
Block a user