-
-
@ghodgeon that is expected. There are two separate binaries:
php
andphp8.0
. The latter is php 8.0. What thePHP_VERSION
does is to switch the apache php version (not the cli php version). What do you see in the index.php (the default one?) ? Or you can try atest.php
like this and load the page via the browser and not the CLI:<html> <body> <h1>Cloudron LAMP App (PHP <?php echo PHP_VERSION ?>)</h1> </body> </html>
-
@girish said in LAMP PHP Set to 8.0. Doesn't update:
@ghodgeon that is expected.
Oh?
I was hoping to install PimCore using composer
COMPOSER_MEMORY_LIMIT=-1 composer create-project pimcore/demo my-project
Only, I get the error my PHP version is 7.4
Problem 1
- pimcore/pimcore[v10.0.0-BETA1, ..., 10.x-dev] require php ^8.0 -> your php version (7.4.23) does not satisfy that requirement.
-