LoginSignup
1
1

More than 3 years have passed since last update.

EC-CUBE4のプラグインインストールでエラーが出るときの対処法

Posted at

EC-CUBE4のプラグインをインストールするときに、サーバーによってはうまく行かない場合がある(というか大半うまく行かない)

様々な記事を参照してきたため、他に記載がなかった手法を明記する

○使用環境
- MAMP
- VSCODE
- php7.3.1
- macbook pro 2016

○php.iniを修正してみる。
MAMP⁩ ▸ ⁨bin⁩ ▸ ⁨php⁩ ▸ ⁨php7.3.1⁩(使用バージョン) ▸ ⁨conf ⁩▸ php.ini

zend_extension="/Applications/MAMP/bin/php/php7.3.1/lib/php/extensions/no-debug-non-zts-20180731/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_autostart=1
xdebug.remote_port=9000
xdebug.max_nesting_level=10000
xdebug.remote_enable=false
xdebug.profiler_enable=0

xdebug.max_nesting_level=100 → 10000にあげてます。

プラグインをインストールし終わった後は、その行を削除するか、小さくしてあげてくださいね。

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