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?

CakePHPプロジェクト作成の備忘録

Last updated at Posted at 2024-10-14

記事作成の背景

Cake PHP公式サイトからコマンドでプロジェクトを作成しようとしたら、エラーが表示されてしまったので
備忘録として簡単に記載しようと思います。

結局原因は、何だったのか?

原因は、php.iniファイルでの設定(図1)がコメントアウトしたままであったことでした。

今回の箇所は、「Dynamic Extension」の箇所を更新していきます。

PHP設定ファイルの画像.png

extention=intlを有効にする

「extention=intl」はデフォルトだとコメントアウトのままであったので、こちらのコメントを外しましょう。

php.ini(更新前)
;extension=intl
php.ini(更新後)
extension=intl

extention=pdo_sqliteを有効にする

つづいて、「extention=pdo_sqlite」はデフォルトだとコメントアウトのままであったので、こちらのコメントを外しましょう。

php.ini(更新前)
;extension=pdo_sqlite
php.ini(更新後)
extension=pdo_sqlite

参考にさせていただいたサイト

CakePHP4.*の環境構築
【初心者用】CakePHPを学んでいこう②(インストール・動作確認)
cakephpを簡単に触ってみる
CakePHP - Quick Guide
CakePHP3でデータベースに接続できなくて困った

以上です。

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?