I quote this from the msql site:
Quote:
To use SET PASSWORD on Windows, do this:
shell> mysql -u root
mysql> SET PASSWORD FOR ''@'localhost' = PASSWORD('newpwd');
mysql> SET PASSWORD FOR ''@'%' = PASSWORD('newpwd');
|
A) Ok, but where do I type them?
I tried setting password in phpmyadmin under privileges tab for 'root' user. The query is successful but yet it continues to display that password is not set. I have entered the same password in change/login information too.
B) What should be ideally selected for these options?
... keep the old one.
... delete the old one from the user tables.
... revoke all active privileges from the old one and delete it afterwards.
... delete the old one from the user tables and reload the privileges afterwards.
C) Even if I manage to develop the application on my system, can I "install" it on my customer/client's computer? If yes, how...what is the requirement & procedure?
D) Is an active internet connection MUST/Compulsory for wampserver to work? Should the client's computer too have internet connection?