call a php script through cron without using wget?

I have a customer on one of my freeBSD boxes who wants to use a command similar to the following in a cronjob:

wget -q -F -O - http://domain.com/whatever.php >/dev/null 2>&1

The problem is, I do not allow user access to wget, fetch, lynx, links etc. Is there any way I can make their cron work without giving them access to wget/fetch/lynx/links etc.?

From my experience, simply calling a php script using the PHP binary doesn't do what the customer needs.

 

 

 

 

Top