Added debugging of string piped to , written to /tmp/pred_log

pull/73/head
jonsowman 2010-07-29 08:04:22 +00:00
rodzic 73295075c0
commit af19c69b37
2 zmienionych plików z 8 dodań i 2 usunięć

Wyświetl plik

@ -3,6 +3,8 @@
$c_admin_email = "jon@hexoc.com";
$c_location_save_enable = true;
define("DEBUG", true);
$c_preds_path = "preds/";
$c_scenario_file = "scenario.ini";

Wyświetl plik

@ -5,6 +5,8 @@
* Jon Sowman 2010
*/
require_once("config.inc.php");
function createModel($post_array) {
$pred_model = array();
@ -82,11 +84,13 @@ function runPred($pred_model) {
// use `at` to automatically background the task
$ph = popen("at now", "w");
fwrite($ph, "cd /var/www/hab/predict/ && ./predict.py -v --latdelta="
$sh = "./predict.py -v --latdelta="
.$pred_model['delta_lat']." --londelta=".$pred_model['delta_lon']
." -p1 -f5 -t ".$pred_model['timestamp']
." --lat=".$predictor_lat." --lon=".$predictor_lon." " . $use_hd
. $pred_model['uuid']);
. $pred_model['uuid'];
if (DEBUG) shell_exec("echo " . $sh . " > /tmp/pred_log");
fwrite($ph, "cd /var/www/hab/predict/ && " . $sh );
fclose($ph);
}