I have a problem with cron task creating. I created the task, and its working just fine on my server if I run the following command:
php symfony namespace:taskname
At the crontab I use the following command:
usr/bin/php /home/user/mysite/symfony namespace:taskname
If I run this command, I only get the symfony
commands list. In other words, it looks the same as if I type in just php symfony
. Somehow the namespace:taskname
part is not passed.
Any ideas?