首頁  >  問答  >  主體

如何更改 Lando 8.1.2 中的 php 版本

這是我的第一個問題。我是初學者。我正在與 Sage 一起從事 WordPress 專案。當我嘗試運行模板時,出現錯誤:

composer版本還可以,但Lando版本是php7.4,我需要php8.1版本。

我嘗試更改lando.yml中的php版本,然後使用命令lando重建,但它不起作用。我也在和 manjaro 一起工作。歡迎任何幫助。謝謝!

P粉714844743P粉714844743375 天前758

全部回覆(1)我來回復

  • P粉145543872

    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 
    

    來源:

    #

    回覆
    0
  • 取消回覆