Jump to content

md5(md5)


Aleksand

Recommended Posts

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

Link to comment
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
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
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Ваша ссылка была автоматически строена.   Отображать как обычную ссылку

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...