• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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