logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: odbc authorization using phpass password encryption?
Author
grglaz



Joined: 08 Aug 2012
Posts: 1
Location: Greece

PostPosted: Wed 08 Aug '12 18:23    Post subject: odbc authorization using phpass password encryption? Reply with quote

Hello

I have correctly configured my odbc authorization using simple mysql login/register script without any password encryption..

Now i want to connect to a wordpress database that uses phpass encryption.

My code without encryption is

Code:
DBDriver odbc
DBDParams "DATASOURCE=mysql"

DBDMin  4
DBDKeep 8
DBDMax  20
DBDExptime 300

<Directory "path_to_directory">
 AuthType Basic
 AuthName "Protected Directory"
 AuthBasicProvider dbd
 Require valid-user
 AuthDBDUserPWQuery "SELECT user_pass FROM wp_users WHERE user_login = %s"
</Directory>


could be that possible?anyone has tried it?

http://www.openwall.com/phpass/
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7288
Location: Germany, Next to Hamburg

PostPosted: Fri 10 Aug '12 13:51    Post subject: Reply with quote

There is an tutorial on this forum about this
http://www.apachelounge.com/viewtopic.php?t=2545

if you still have a question please ask again.
Back to top


Reply to topic   Topic: odbc authorization using phpass password encryption? View previous topic :: View next topic
Post new topic   Forum Index -> Apache