Troubleshooting OpenPanel UI Errors
500 Errorâ
If a 500 error occurs in the OpenPanel UI, a unique error code will be displayed on the page.
â ď¸ This error code is specific to your machine. Only the server administrator can access detailed information about it.
To view the full error details, run the following command in your terminal:
opencli error ERROR_ID_HERE
Check the output for the error message. If you need assistance, you can copy the message to our support forums or Discord channel for help troubleshooting.
UI Not Respondingâ
If a feature isnât working as expected (like clicking a button with no response) it is likely a front-end issue.
To troubleshoot:
- Open your browserâs Developer Tools (usually
F12orCtrl+Shift+I/Cmd+Option+I). - Navigate to the Network tab.
- Repeat the action thatâs not working.
- Check for requests in the Network tab and any errors in the Console log.
- Selecting a request in the Network tab allows you to view the response returned by the backend.
- If the response doesnât contain enough information to diagnose the issue, enable dev_mode on the server and check the Docker logs.
Dev Modeâ
Enabling dev_mode allows OpenPanel and OpenAdmin interfaces to log detailed debugging information for every request. This helps administrators see the exact commands run by the panel and the responses received.
To enable dev_mode:
opencli config update dev_mode true
Then restart the panel.
When dev_mode is enabled, detailed logs for the user panel are available via:
docker logs -f openpanel
These logs provide verbose debugging information for troubleshooting.