From e82490018cfe221d413458195065fbc4f6104a13 Mon Sep 17 00:00:00 2001 From: schrom01 Date: Tue, 26 Sep 2023 00:05:49 +0200 Subject: [PATCH] fixing E-Mail --- taskExecuter.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/taskExecuter.php b/taskExecuter.php index d772bab..e94045e 100644 --- a/taskExecuter.php +++ b/taskExecuter.php @@ -21,8 +21,6 @@ if(!is_dir($downloadDir)){ function doRequest($data, $filename, $username, $password) { - echo "doing Request: ".json_encode($data); - echo "
"; $response = sendAPICompanySearchRequest($username, $password, $data); $companyArray = json_decode($response, true); $companyData = array(); @@ -111,8 +109,6 @@ while($latesEndTime - time() > 60){ // if there are any requests to do, do the first if(count($task['requests']) > 0) { doRequest($task['requests'][0], str_replace(".json", ".csv", $downloadDir.'/'.$taskfiles[0]), $username , $password); - echo "Request done"; - echo "
"; array_shift($task['requests']); $taskString = json_encode($task); $taskfile = fopen($taskDir.'/'.$taskfiles[0], 'w');