-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: add faq for fixing onboarding screen issue
- add faq for onboarding issue
- Loading branch information
1 parent
435ea29
commit 8da4734
Showing
1 changed file
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,4 +121,21 @@ mailer.mail(from: '[email protected]', to: '[email protected]', subject: 't | |
``` | ||
If the configuration is correct, You should receive the email in the recipient's Inbox. In other cases, Fix the config as per the returned error and reconfigure the values in Chatwoot Environment variables with the correct values. | ||
|
||
> Note: If you are still facing errors, Please check your Sidekiq worker logs or [Sidekiq UI](/docs/self-hosted/monitoring/super-admin-sidekiq/) for any errors. | ||
> Note: If you are still facing errors, Please check your Sidekiq worker logs or [Sidekiq UI](/docs/self-hosted/monitoring/super-admin-sidekiq/) for any errors. | ||
|
||
## How to Fix the Onboarding Screen Issue in Chatwoot? | ||
|
||
If you have deployed Chatwoot and the login page is shown instead of the onboarding screen, follow these steps to resolve the issue: | ||
|
||
1. Open a Rails shell and run the following command: | ||
```ruby | ||
Redis::Alfred.set(Redis::Alfred::CHATWOOT_INSTALLATION_ONBOARDING, true) | ||
``` | ||
|
||
2. Restart Chatwoot. | ||
|
||
This should resolve the issue, and the onboarding screen should be displayed as expected. | ||
|
||
|
||
|