Aleksand Posted September 13, 2017 Share Posted September 13, 2017 Доброго времени суток. У меня есть сайт дле, на нем своя бд. Я поставил ips, настроил так, что бы он подключался к бд с юзерами, но вот беда. В ips формат кодировки пароля md5, а мне нужен двойной md5. Подскажете, что сделать? Quote Link to comment Share on other sites More sharing options...
Aleksand Posted September 14, 2017 Author Share Posted September 14, 2017 Я в External.php Поставил код: protected function encryptedPassword( $password ) { switch ( $this->settings['db_encryption'] ) { /** case 'md5': return md5( $password ); */ case 'sha1': return sha1( $password ); case 'md5': return md5( md5 ($password) ); default: return $password; } } Но не помогло. Подскажите, пожалуйста. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.