Jump to content

Featured Replies

Доброго времени суток.
У меня есть сайт дле, на нем своя бд.
Я поставил ips, настроил так, что бы он подключался к бд с юзерами, но вот беда. В ips формат кодировки пароля md5, а мне нужен двойной md5. Подскажете, что сделать?

Link to comment
https://ipbmafia.ru/topic/18290-md5md5/
Share on other sites

Я в 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.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.