Resolving Empty Settings Panel Issue in Docker
TLDR devin.cl experienced an issue with a blank settings panel after upgrading their Docker self-hosted platform. With the help of sojan_official, it was determined that the CE images did not contain a feature management section, but specific features could be enabled using a migration code from the rails console.
1
Nov 07, 2022 (13 months ago)
devin.cl
06:27 PMNov 08, 2022 (13 months ago)
sojan_official
07:13 AMdevin.cl
05:39 PMsojan_official
10:37 PMif you want to convert and existing admin user to super admin do the following from console.
user = User.find_by(email: 'email')
user.update(type: 'SuperAdmin')
Nov 09, 2022 (13 months ago)
devin.cl
09:05 PM
31 CSML_BOT_API_KEY
30 CSML_BOT_HOST
29 ENABLE_MESSENGER_CHANNEL_HUMAN_AGENT false
27 ENABLE_ACCOUNT_SIGNUP false
24 DISABLE_USER_PROFILE_UPDATE false
23 LOGOUT_REDIRECT_LINK /app/login
22 HCAPTCHA_SERVER_KEY
21 HCAPTCHA_SITE_KEY
20 DIRECT_UPLOADS_ENABLED false
15 CHATWOOT_INBOX_HMAC_KEY
14 CHATWOOT_INBOX_TOKEN
13 INSTALLATION_EVENTS_WEBHOOK_URL
12 CREATE_NEW_ACCOUNT_FROM_DASHBOARD false
11 MAILER_SUPPORT_EMAIL
10 MAILER_INBOUND_EMAIL_DOMAIN
This might be unrelated, but I noticed when trying to view /super_admin/access_tokens/1, I get this rendering error:
ActionView::Template::Error (uninitialized constant SuperAdminDashboard)
devin.cl
09:10 PMNov 10, 2022 (13 months ago)
sojan_official
12:39 AM- could you mention the Chatwoot version which you are using
devin.cl
05:08 PMNov 16, 2022 (13 months ago)
sojan_official
03:44 PMNov 17, 2022 (13 months ago)
devin.cl
12:16 AMimage: chatwoot/chatwoot:latest-ce
Nov 18, 2022 (13 months ago)
sojan_official
10:09 AMfor accessing rails console .. refer : https://www.chatwoot.com/docs/self-hosted/deployment/docker/#running-rails-console
Account.find_in_batches do |account_batch|
account_batch.each do |account|
account.enable_features(
'agent_management',
'automations',
'canned_responses',
'custom_attributes',
'inbox_management',
'integrations',
'labels',
'team_management',
'voice_recorder'
)
account.save!
end
devin.cl
05:09 PMChatwoot
Indexed 2221 threads (46% resolved)
Similar Threads
Troubleshooting Error during 3.0.0 Update
patrickvandenhoek experienced an error while upgrading software to 3.0.0. ziekbaboon advised a backup and shared a guide to resolve git problems. After applying the solution, patrickvandenhoek reported successful update.
Superadmin Console Lockout and File Download Issues
tannerdsilva faced superadmin console lockout and file download issues. sojan_official suggested storage configuration adjustments. File issue was resolved, but superadmin console lockout remains unresolved.
Setting up Self-hosted Chatwoot with Docker and MailJet Integration Queries
code1111. was having issues with self-hosted Chatwoot via Docker and inquired about Mailjet compatibility. sojan_official assisted with troubleshooting steps and referred code1111. to setup guides and product documentation.
Troubleshooting Chatwoot Compilation Errors
Chungus experienced compilation issues with Chatwoot. sojan_official guided them through steps to rectify the problem, which ended up being a lack of sufficient RAM.
Troubleshooting Chatwoot Installation and Setup
lauuu faces issues while setting up Chatwoot. v_shnu provides troubleshooting strategies such as commenting out a line in the script, passing a variable to the script, and creating a new VM, but the problems persist.