Just thought I would mention I would get a blank gui after updating to proxmox 8
I looked at the brower console log and saw an error loading /PVE/StdWorkspace.js
Looking a little deeper I found syntax errors too, because my browser is old (can't update it at the moment)
It doesn't support these javascript operators:
value ??= ...
value ||= ...
value &&= ...
I changed these constructs like this:
value = value ?? ...
value = value || ...
value = value && ...
in these two files:
/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
/usr/share/pve-manager/js/pvemanagerlib.js
and the gui came up.
I'm not on a supported browser, but I thought it might help someone.
I looked at the brower console log and saw an error loading /PVE/StdWorkspace.js
Looking a little deeper I found syntax errors too, because my browser is old (can't update it at the moment)
It doesn't support these javascript operators:
value ??= ...
value ||= ...
value &&= ...
I changed these constructs like this:
value = value ?? ...
value = value || ...
value = value && ...
in these two files:
/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
/usr/share/pve-manager/js/pvemanagerlib.js
and the gui came up.
I'm not on a supported browser, but I thought it might help someone.
Last edited: