I've googled and looked all around the web for an answer to this, but without any success. I am getting this error:
Parse error: syntax error, unexpected T_REQUIRE_ONCE in /home/xxxinl5/public_html/xxx/content/.../.../submitter.php on line 1
And here's the code:
<?php
/*
* My Prog
*
*/
require_once(dirname(__FILE__) . '/config.php');
require_once(dirname(__FILE__) . '/log.php');
require_once(dirname(__FILE__) . '/export.php');
require_once(dirname(__FILE__) . '/submit.php');
require_once(dirname(__FILE__) . '/database.php');
require_once(dirname(__FILE__) . '/cron_job.php');
require_once(dirname(__FILE__) . '/extrafeed.php');
....
I checked config.php, all the matching parentheses, semicolons, and other minor stuff, but this still comes out. What can be wrong with this?
Also, can this be a server setup problem? I tried copying my script to another web server, and the error does not come out.
Any help would be much appreciated.
Thanks!
John