Hi, The problem seems to be your "step 11" :
step 11. INSERT INTO ocp_admin_privileges (username,password,ha1,available_tools,permissions) values ('admin','admin','admin:admin','all','all');
You must encode the *ha1* field. So, I believe that the correct query would be :
INSERT INTO ocp_admin_privileges (username,password,md5(ha1),available_tools,permissions) values ('admin','admin','admin:admin','all','all');
Anyway, you can always check the INSTALL file (I think the query is located on line 102 or 103).
Regards, Alex On 3/12/2010 12:41, Do Nguyen Ha wrote:
step 11. INSERT INTO ocp_admin_privileges (username,password,ha1,available_tools,permissions) values ('admin','admin','admin:admin','all','all');
-- Alex Ionescu www.voice-system.ro
_______________________________________________ Users mailing list [email protected] http://lists.opensips.org/cgi-bin/mailman/listinfo/users
