RE: ok the dumbest person ever.
dreamscape <[email protected]> 13 Sep 2003 06:11:15 -0000
| Newsgroups | gmane.comp.web.oscommerce.features |
|---|---|
| Message-ID | <685f42f4df07c2760b752f16de481f25@osCommerce-Forums> |
This message was sent from: Features
http://forums.oscommerce.com/viewtopic.php?p=228785#228785
----------------------------------------------------------------
I think what the script means is you have to surround your password with PASSWORD('') when you put it into the database (PASSWORD is a mySQL encrypt function).
IE, replace the ... with what password you want.
for example if you wanted the username admin and password root, you would just do it like:
[code]INSERT INTO administrators SET admin_user='admin', admin_pass=PASSWORD('root');[/code]