Help, I don't now what I must do when the logon pannel coms up, what is the userid and the password, or what must a do that I can make a userid and a password ?
Thanks for answers
Andreas fromSwitzerland
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Every time when I point my webbrowswer to the index.php of this applikation a popup coms up that required a input of a userid and a password, when I put in my userid and pw of my database the panel coms pack (result is logon failed)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Help, I don't now what I must do when the logon pannel coms up, what is the userid and the password, or what must a do that I can make a userid and a password ?
Thanks for answers
Andreas fromSwitzerland
The login should be whatever you have in your mysql user database (the "mysql" database).
Type:
$> mysql -p mysql
Then you admin password.
Once inside, query the defined users with:
mysql> select * from user;
This will list the currently defined users and their rights.
Please do ask if you have problems with this...
Every time when I point my webbrowswer to the index.php of this applikation a popup coms up that required a input of a userid and a password, when I put in my userid and pw of my database the panel coms pack (result is logon failed)
Could you try to log into the mysql as root?
$> mysql -u root -p mysql
password: (your root password)
If that succeeds, then try login in as root in the phpMyBuilder using the same password.
If this fails, then SOMETHING is wrong and I'll send you a version with some more debugging information.
<b>Make SURE register_globals options is turned ON!</b> in your php.ini file.
I think the default setting for php 4.2.x is OFF,
which will not work with the current version phpMyBuilder. I will post a feature request.
.:Mads:.