How do I run a custom written utility script from PHP?
Hi,
I've written a utility script that I'd like to run through PHP CLI (php -f <file>), but that doesn't work at the moment. I get HTML output instead from one of the vB init functions.
My script starts like:
require_once('./global.php');
require_once('./includes/functions_bigthree.php');
require_once('./includes/functions_file.php');
What can I do to fix this?
|