Marcin Soltysiak wrote:
Warning: Access denied for user: 'L1mhCcwlUe5l6@localhost' (Using
password: YES) in ROOT(797) : eval()'d code on line 87
No Database Selected
Anyone can help me??
Nadmin is known to create too long usernames and passwords (more than 12
chars AFAIR). Find /hklc_adminsite_host/argv0/dbsetup/dbsetup snippet and
replace lines:
25: // new user!
26: $sguser = eregi_replace("[^A-z0-9]","",crypt($sgguid));
27: $sgpasswd = eregi_replace("[^A-z0-9]","",crypt($sguser));
with
25: // new user!
26: $sguser = substr(eregi_replace("[^A-z0-9]","",crypt($sgguid)), 0, 12);
27: $sgpasswd = substr(eregi_replace("[^A-z0-9]","",crypt($sguser)), 0,
10);
Solt
PS. Aegir has this code changed. Now you can state your company's db owner
and password. :-)
Thank you very much for that change!
--
Vincent Stoessel
Linux Systems Developer
vincent xaymaca.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]