/dev/null &");
}
// Process ready (lenght data > 0)?
else if (strlen($background_process[0]['data'])) {
// Remove process entry from database
db_store_data("DELETE FROM session WHERE id='" . $_POST['background_id'] . "'");
// Echo result
echo $background_process[0]['data'];
}
}
else {
// Log abuse!!!
DBG("MTinfo abuse, Someone is trying to abuse MTinfo!!" . $_POST['background_id']);
// Display error page
echo _("An error occured, please contact") . " " . "Dual Inventive!";
exit;
}
}
// Handle "normal" pages and call second stage
else {
require_once("index_st.php");
}
?>