Just an update.
I see in database.tform.php:
Quote:
'database_password' => array (
'datatype' => 'VARCHAR',
'formtype' => 'PASSWORD',
'encryption' => 'MYSQL',
'default' => '',
'value' => '',
'width' => '30',
'maxlength' => '255'
),
|
However, there is no "encryption" type of "MYSQL" here in remoting_lib.inc.php:
Quote:
if($field['formtype'] == 'PASSWORD') {
if($field['encryption'] == 'CRYPT') {
$record[$key] = $app->auth->crypt_password(stripslashes($record[$key]));
} else {
$record[$key] = md5($record[$key]);
}
$sql_update .= "`$key` = '".$record[$key]."', ";
}
|
First time i've looked at the actual coding of ISPConfig so i may be wrong but i assume the lib file is missing an elseif encryption == "MYSQL"? Please advise
Recent comments
7 hours 30 min ago
8 hours 30 min ago
12 hours 17 min ago
13 hours 31 min ago
17 hours 7 min ago
1 day 22 min ago
1 day 9 hours ago
1 day 10 hours ago
2 days 1 hour ago
2 days 4 hours ago