You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 28, 2024. It is now read-only.
"GUI not loading" is one of the most common support requests we get, and it's usually caused by some PHP notice interfering with the REST API output (JSON parsing fails on the client).
We should improve the situation and load the UI even if there are some notices or other non-JSON output in the response. There are two levels on where we could improve things:
On the server side. There are tricks with output buffering available.
On the client side. This is probably where the focus should be because in the end, client must deal with the malformed response.