• 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.

Issue composer version and php version

TheFreeman

New Pleskian
Hello,

following Problem:

1608401931088.png

Installed and working PHP 7.4.13
Plesk Composer-Extension 1.10.5

But why composer tells me something abaout PHP 7.2.24 ???
How can i fix this?
Thank you in advance!

LG
 
I'm unexperienced with this but woud like to ask you if you could please explain the special string "laravel/laravel:^8.0" in your prefer-dist argument. I've never seen a carot ^ in such a string. What does that mean? Is it the correct syntax?
 
I presume that in your virtual host, where you are trying to install laravel, you have php 7.2, not 7.4
You can check and swith PHP version in Plesk -> subscriptions -> domain.com -> PHP settings

The command
Code:
php -v
is not relevant in the virtual host context in Plesk.
 
I'm unexperienced with this but woud like to ask you if you could please explain the special string "laravel/laravel:^8.0" in your prefer-dist argument. I've never seen a carot ^ in such a string. What does that mean? Is it the correct syntax?
:8.0 means, you expect exactly this version.
:^8.0 means, this version but if existing the highest subversion.
In my case it was the 8.19.0
I presume that in your virtual host, where you are trying to install laravel, you have php 7.2, not 7.4
You can check and swith PHP version in Plesk -> subscriptions -> domain.com -> PHP settings

The command
Code:
php -v
is not relevant in the virtual host context in Plesk.
OK...But they are both the same versions.
 
always cal composer with the php version you want to use and pretend the native php does not exist eg

/opt/plesk/php/7.4/bin/php composer update
 
Back
Top