Export files between GIT commits for windows
February 28, 2013Optimize MySQL all tables
July 24, 2013I hit this error using console of cakephp 2.3.8 but you can encounter this issue on other versions as well.
The solution is to edit (command line arguments are not seen)
app/Console/cake and on on the line:
exec php -q "$CONSOLE"/cake.php -working "$APP" "$@"
after -q add
-d register_argc_argv=1
so the line will look like:
exec php -q -d register_argc_argv=1 "$CONSOLE"/cake.php -working "$APP" "$@"