• 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!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.

Resolved Urgent can´t access to any panel Onix with Debian 8

SalvadorS

Regular Pleskian
Hello,

Today in all my plesk onyx panels with Debian 8 (php 7.3 max) I received this error:

Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 7.4.0"

And I can´t access to the panels. php version in these servers are 7.3 as it is impossible to install 7.4

Wait an answer

Regards
 
Hi, I ran into de same issue today, here's how I fixed it.

- SSH to the server
- Make yourself root ("sudo su -")
- Type "cd /var/log/plesk"
- Type "cat panel.log"
- Look for something like this

"[2023-06-22 09:20:01.898] ERR [panel] PHP User Error: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 7.4.0". You are running 7.3.25.; File: /opt/psa/admin/plib/modules/sectigo/vendor/composer/platform_check.php, Line: 24"

- Edit the file "/opt/psa/admin/plib/modules/sectigo/vendor/composer/platform_check.php" and comment line 8

"
if (!(PHP_VERSION_ID >= 70400)) {
// $issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0". You are running ' . PHP_VERSION . '.';
}
"

Hope this helps
 
I fixed the issue following this steps:

this time is due to sectigo extension

/usr/local/psa/admin/plib/modules/sectigo/vendor/composer/platform_check.php
just changed (!(PHP_VERSION_ID >= 70400)) to (!(PHP_VERSION_ID >= 70100))
 
Back
Top