這是我的第一個問題。我是初學者。我正在與 Sage 一起從事 WordPress 專案。當我嘗試運行模板時,出現錯誤:
composer版本還可以,但Lando版本是php7.4,我需要php8.1版本。
我嘗試更改lando.yml中的php版本,然後使用命令lando重建,但它不起作用。我也在和 manjaro 一起工作。歡迎任何幫助。謝謝!
P粉1455438722023-11-03 18:01:19
您可以從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
然後你會得到一個.lando.yml
,你需要在其中指定appserver
的php版本。
# .lando.yml name: my-wordpress-app recipe: wordpress config: webroot: wordpress services: appserver: type: php:8.1 #add these lines
您可能還需要在進行 php 變更後銷毀並重建:
lando destroy -y && lando start
來源:
#