I'm trying to set up a CRON job to make some database changes on a CodeIgniter install and having issues with the host that are stopping it from working. The host's CRON setup only allows you to execute a PHP file rather than calling a URL.
What I've tried:
Curl, wget, file_get_contents, fopen, http_get
from a static PHP file - all not allowed by the host
/path/to/php /path/to/index.php
controller method - to use the command line interface
After unfruitful conversations with the host I'm out of ideas. Does anyone know how I could call a controller method from a static PHP file without the above?