PHPPDO and MD5() function
Greetings,
First of all let me express all my emotions - this software is far the best, so fresh. I am really in love now
Thanks for the solution. Tried to follow all the steps but it looks like it does not work for the latest available version correctly. I am trying the vanilla-core-2.0.17.8 and have this error:
FUNCTION DATABASE_NAME.md5 does not exist
insert GDN_User (Name, Password, Email, ShowEmail, Gender, DateOfBirth, DateFirstVisit, DateLastActive, DateInserted, DateUpdated, Admin, UserID) values (:Name, md5(:Password), :Email, :ShowEmail, :Gender, :DateOfBirth, :DateFirstVisit, :DateLastActive, :DateInserted, :DateUpdated, :Admin,
It looks like I don't have MD5 but I'm sure it exists as I have other scripts that use that MySQL function and it works fine. I have PHPPDO 1.4
Please advise if any solutions exist. Thanks a lot in advance
Edit:
I managed to fix this but that's not a way to go. I would like to fix this permanently for all md5() calls. Right now I just commented this line:
and add the following one below it:
That's in /applications/dashboard/models/class.usermodel.php file.
Please advise.
First of all let me express all my emotions - this software is far the best, so fresh. I am really in love now

Thanks for the solution. Tried to follow all the steps but it looks like it does not work for the latest available version correctly. I am trying the vanilla-core-2.0.17.8 and have this error:
FUNCTION DATABASE_NAME.md5 does not exist
insert GDN_User (Name, Password, Email, ShowEmail, Gender, DateOfBirth, DateFirstVisit, DateLastActive, DateInserted, DateUpdated, Admin, UserID) values (:Name, md5(:Password), :Email, :ShowEmail, :Gender, :DateOfBirth, :DateFirstVisit, :DateLastActive, :DateInserted, :DateUpdated, :Admin,
It looks like I don't have MD5 but I'm sure it exists as I have other scripts that use that MySQL function and it works fine. I have PHPPDO 1.4
Please advise if any solutions exist. Thanks a lot in advance
Edit:
I managed to fix this but that's not a way to go. I would like to fix this permanently for all md5() calls. Right now I just commented this line:
$Fields['Password'] = array('md5' => $Fields['Password']);
and add the following one below it:
$Fields['Password'] = md5($Fields['Password']);
That's in /applications/dashboard/models/class.usermodel.php file.
Please advise.
0
Comments
It's probably an apache plugin, just like PDO is.
PDO and MD5 are not related.
Here's what you should do to start with:
<?php phpinfo(); ?>
There was an error rendering this rich post.
I will send a PM to you with the link to phpinfo()
Edit:
I've just ran this query in my phpMyAdmin:
INSERT INTO `test` (`test_field`) VALUES(MD5('test'));
It worked fine also result is '098f6bcd4621d373cade4e832627b4f6'. Please advise.
PM sent.
Thanks for your help
Right now the forums work ok, but I think you really need to find a common solution for other members who might have the same problem.