Cron Info for Data Feed Addon

Does anyone know the exact command I need to put into cpanel to run an automated data feed export to my server?



I know CS-Cart provides the following command in the admin, but I do not know how to use it:



php /path/to/cart/admincp.php --dispatch=exim.cron_export --cron_password=MYPASS



Do I use that literally, or do I need to alter some part of it to match up with my store/feeds?



I tried using that, but received a 404 error email saying that no input file specified.



X-Powered-By: PHP/5.2.17

Content-type: text/html



Thanks for your help!

Literally except the /path/to/admin.php and obviously the correct password from your security settings within your store.

So:

–dispatch=exim.cron_export --cron_password=PASSWORD



Or a slight variation?

Assuming the root of my store is located in /home/me/public_html, my admin.php has been renamed to 'my_admin.php' and the password I have setup in my cart security settings is 'putty' then I'd use:



cd /home/me/public_html; php ./my_admin.php --dispatch=exim.cron_export --cron_password=putty



or alternatively you can use:



php /home/me/public_html/my_admin.php --dispatch=exim.cron_export --cron_password=putty