Rumah > Soal Jawab > teks badan
Ini soalan pertama saya. Saya seorang pemula. Saya sedang mengusahakan projek WordPress dengan Sage. Apabila saya cuba menjalankan templat saya mendapat ralat:
Versi komposer okay, tetapi versi Lando ialah php7.4 dan saya perlukan versi php8.1.
Saya cuba menukar versi php dalam lando.yml dan kemudian menggunakan arahan lando rebuild tetapi ia tidak berjaya. Saya juga bekerja dengan manjaro. Sebarang bantuan dialu-alukan. Terima kasih!
P粉1455438722023-11-03 18:01:19
Anda boleh bermula dari lando init
$ lando init ? From where should we get your app's codebase? remote git repo or archive ? Please enter the URL of the git repo or tar archive containing your application code https://wordpress.org/latest.tar.gz ? What recipe do you want to use? wordpress ? Where is your webroot relative to the init destination? wordpress ? What do you want to call this app? my-wordpress-app
Kemudian anda akan mendapat versi php .lando.yml
,你需要在其中指定appserver
.
# .lando.yml name: my-wordpress-app recipe: wordpress config: webroot: wordpress services: appserver: type: php:8.1 #add these lines
Anda juga mungkin perlu memusnahkan dan membina semula selepas membuat perubahan php:
lando destroy -y && lando start
Sumber: