0
0

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 5 years have passed since last update.

XserverでNetCommons3の登録フォームからメールが送られてこない

Posted at

XserverにNetCommmons3をインストールして登録フォームを設置したんですが、メールが送られてこなくて「おや?」って一瞬思ったんでメモがてら残しておきます。

XserverのCLI はPHP5.4

ここが一番の原因。登録フォームからのメール送信は最終的にcakeコマンドを実行するようになっているので、cakeコマンドがPHP5.4で実行されると、メール送信に失敗します。(2020/09/12現在のNetCommons3はPHP7.0以上が必要なので)

cakeコマンド編集

Xserverの /usr/bin/php はPHP5.4ですが、ちゃんとPHP7系もインストールされてるので、そちらを使うようにcakeコマンドを書き換えちゃいます。

app/Console/cake:40行目あたり

exec php -q "$CONSOLE"/cake.php -working "$APP" "$@"

↑を↓にかきかえます

exec /usr/bin/php7.4 -q "$CONSOLE"/cake.php -working "$APP" "$@"

これでcakeコマンドがphp7.4で実行されるようになるので登録フォームからメールが送られるようになります。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?