• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Plesk Control Panel shows empty page after 8.1 upgrade

hovik

New Pleskian
I upgraded my Plesk 8.0 to 8.1 and when I tried to open the admin control panel via the 8443 port (i.e. https://myhost:8443/) it redirected to login.php3 and showed an empty page.

I enabled PHP error reporting as described in your Knowledge Base and I got the following error:

Fatal error: Unsupported operand types in /usr/local/psa/admin/plib/locales/en-US/messages_en-US.php on line 7862

Thank you in advance your help.

--
hm
 
Ok, I've found the problem, it was a PHP bug in that file - messages_en-US.php. I can't believe you released this package without even testing whether it works with PHP 4+ or not.

The problem is that starting from PHP 4 (I believe) you can't merge arrays using +. What I see in that file is a an attempt to use += on an array. I fixed that and it worked. In fact it turned out that $lmsg_arr is not defined elsewhere so you can just use assignment instead of +=.
 
Back
Top