Jump to content

mysql_pconnect, password problem


Recommended Posts

Hi,

 

I am using PHP and MySQL  5.0.19-nt -  I want to use mysql_pconnect("localhost", "user", "password") for connection, but I can use only blank passwords (like  mysql_pconnect("localhost", "user", "")  )    -> connection is OK. But when I use normal non-blank password -> I cant connect to database (error msg).  :confused:

 

what is the setting for enabling normal passwords ?

 

thanks

Link to comment
Share on other sites

yes, I set the password correctly in DB

 

persistent connection is used in example from the book I am just studying, so I need to know why default login / password combo doesnt work. It is because of password (password set to blank in DB works), but I dont know how to change it to accept also normal passwords (for correctly working example and for later use).

Link to comment
Share on other sites

You don't have to "change it" to make it work with passwords. It already does. If it doesn't like the password then it's MySQL that doesn't like it, not mysql_pconnect().

 

Either

a) You're not setting the password on the right user/host combination, or

b) The password change hasn't been applied (like through a restart or a FLUSH PRIVILEGES)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

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

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.