While configuring FLOW3 on mac, I modified the php.ini in terms of setting magic_quotes_gpc = off and on restarting server I get the magic_quotes_gpc = off by browsing http://localhost:8888/MAMP/phpinfo.php
But on running:
$ ./flow3 kickstart:package Acme.Demo
I get the following error message:
FLOW3 requires the PHP setting "magic_quotes_gpc" set to Off. (Error #1224003190)
Can anyone have an idea whats going wrong with it?
You call phpinfo() through a browser, right? But kickstart uses the PHP
CLI binary. I bet you have another binary and/or another configuration for
that one.
Try php -i and look at the path for the config file(s) and the values of
the relevant settings.
Make sure any config file you edit is actually used by the PHP binary you call!