Register page

xaver19862687

New Member
YetiShare User
Jun 27, 2013
35
0
0
what is the coding in mysql for password ??

is not md5.

und wieso password deaktiviert ?? in account create ?

I want to enable password.

because the SMTP server does not work on the upload page

please help.
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
The user passwords are md5'd before inserting in to the database

Code:
$dbInsert->password = MD5($password);
You need to fix the smtp server to send emails or use php in built email functions.
 

xaver19862687

New Member
YetiShare User
Jun 27, 2013
35
0
0
i have testet register account page, i have mb5 aktive, I have registered account with mb5

and it does not work

can create account page (register.php) with password that works for me ??
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
The code $dbInsert->password = MD5($password); is in class.userpeer.php in the includes folder

php.ini on CentOS6.* is located in /usr/local/lib/php.ini

Create a file named phpinfo.php
Put this code into it

Code:
<?php
phpinfo();
?>
And look for:


If you remove the md5 hashing from the code and your server gets hacked, your users passwords will NOT be secure and in plain text. I do not recommend doing this.
 

Attachments

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
More secure than plain text, but in the past I have requested that the passwords are hashed using md5 and a salt

Something like this: md5(md5($salt).$md5_password);