|
10-10-2006, 07:16 AM
Whenever users sends an email to support, user account is created in table "swusers" .
This happens when we enable email queue. The email id is updated in "swuseremails" table.
If the same user tries to login to eSupport or SupportSuite the login fails with message "Invalid Username or Password"
There are two ways to solve this problem:
1. Execute the below SQL commands. This you need to do regularly until they fix this problem. delete from swuseremails where userid in (select userid from swusers where loginapi_userid='0');
delete from swusers where loginapi_userid='0';
commit;
or
2. Open "swusers" table, select a record, find the full name, if you know the login id for that name, then update the same in "loginapi_userid" column. Then try to login, it will work. |