0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Mauticをコマンドラインで手動アップデートする

Last updated at Posted at 2023-02-21

Mauticのアップデートをコマンドラインで行う度に403エラーになる人向けの備忘録です。

アップデート手順

以下の方法で、コマンドラインからアップデートします。※事前にバックアップを忘れずに取りましょう。

アップデートの確認

su - /* 更新可能なユーザーに変更
cd [Mautic Root] /* Mauticのルートフォルダに移動
php bin/console mautic:update:find /* 更新の確認

アップデートの実行

php bin/console mautic:update:apply

--finishの実行

php bin/console mautic:update:apply --finish

これで完了。ただし、403になるケースがあり、フォーラムでもやり取りされています。
こちらの記事を参考に、.htaccessを修正します。

.htaccesの修正

# Deny access via HTTP requests to all PHP files.
<FilesMatch "\.php$">
    #Require all denied /* この行のコメントアウト
</FilesMatch>

キャッシュクリア

php bin/console cache:clear
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?