Posted 13 сентября, 20177 yr comment_136276 Доброго времени суток. У меня есть сайт дле, на нем своя бд. Я поставил ips, настроил так, что бы он подключался к бд с юзерами, но вот беда. В ips формат кодировки пароля md5, а мне нужен двойной md5. Подскажете, что сделать? Link to comment https://ipbmafia.ru/topic/18290-md5md5/ Share on other sites Больше вариантов
14 сентября, 20177 yr Author comment_136283 Я в 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; } } Но не помогло. Подскажите, пожалуйста. Link to comment https://ipbmafia.ru/topic/18290-md5md5/?&do=findComment&comment=136283 Share on other sites Больше вариантов
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.