I've read here on Stackoverflow that paths inside the file could be a problem, but it seems to fail at the first thing it read... Other than this I have no clue, even after checking many questions/answers here. At some point I thought it was because I used a shorthand version of PHP tag ("<? ?>" instead of "<?php ?>").
So basically, when I type the url in a browser "http://site.com/file.php" it runs fine (it's a mysql backup + send by email). But when I try to run the same file with cron, I get errors...
My server is on MediaTemple, the cron is:
php -c /home/xxxxxxx/domains/xxxxxxxxxxxxxx.com/html/777/fnc/filenamexxxxxx.php --'bckup=1'
Here is the error:
PHP: syntax error, unexpected '(' in /nfs/c08/h02/mnt/xxxxxxx/domains/xxxxxxxxxxxxxxx.com/html/777/fnc/filenamexxxxxx.php on line 2
Here's the first part of the code (as it is, no edit, except website address + emails):
<?php
// envoi un courriel de tous les rv des 7 prochains jours pour chaque clinique à toutes les 30min (cron script lancé par cpanel)
session_start();
$bypass = 1;
//$_SESSION['rep'] = "777/";
include_once("inc_includes_principaux.php");
//error_reporting(E_ERROR);
// to send an automated backup by email, just link to this file like this with CRON:
if ($_GET['bckup']){
// va chercher les infos de connection
include_once('inc_bd_connexion.php');
// get cliniques
$cliniques = _get_clinique_info();//_p($cliniques);_x();
$date = date('Ymd');
$date7jours = _get_x_days_before($date, 7, '+');//_e($date7jours);_x();
// iterate cliniques and send email
foreach ($cliniques as $cliniqueid => $v) {
$emailthis = _get_rv_printformat($date, $date7jours, $cliniqueid);// start, end, id
// send email to users
_email('emailaddressxxxxxxxx', $emailthis, 'LCJG - Horaire de '.$v['A29'].' du '._date_en_texte($date).' au '._date_en_texte($date7jours),'emailaddressxxxxxxxx');
sleep(1);//give a break to the server and let some other tasks execute
_email('emailaddressxxxxxxxx', $emailthis, 'LCJG - Horaire de '.$v['A29'].' du '._date_en_texte($date).' au '._date_en_texte($date7jours),'emailaddressxxxxxxxx');
unset($emailthis);
echo 'LCJG - Horaire de <b>'.$v['A29'].'</b> pour les 7 prochains jours envoyé par courriel.<br>';
}
}
?>`
