Receiving 403 error on Admin Console after successful login #68
-
Hi team, Here are the details from the response: The error message within the response body states: "YWRtaW5Db2525zb2xl' Client(application) disable". It looks like something related to the client application being disabled. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @Annawu0301 , Thanks for providing such detailed information. The error message This typically happens if the SQL If the SQL After executing this ● If you still have other user accounts that can log into the Admin Console, you can log in with one of those accounts and navigate to the client management section to enable the Let us know if this solves your problem! |
Beta Was this translation helpful? Give feedback.
Hi @Annawu0301 ,
Thanks for providing such detailed information. The error message
"YWRtaW5Db2525zb2xl' Client(application) disable"
is indeed the key here. This specific 403 error indicates that the defaultadminConsole
client (application) used for accessing the Admin Console has been disabled.This typically happens if the
adminConsole
client's status was changed to disabled.Here's how to check and resolve it:
First, you can execute the following SQL query to check the current status of the
adminConsole
client in your database:SQL
select * from tsmp_client tc where client_name ='adminConsole';
If the
CLIENT_STATUS
returned in the query result is2
, then it confirms that this is indeed …