"; echo gettext("Uploading..."); ob_flush(); flush(); if (is_array($files_to_upload)) { $resp = upload_crash_report($files_to_upload); array_map('unlink', glob("/var/crash/*")); // Erase the contents of the PHP error log fclose(fopen("/tmp/PHP_errors.log", 'w')); echo "
"; print_r($resp); echo "

" . gettext("Continue") . "" . gettext(" and delete crash report files from local disk.") . "

"; } else { echo gettext("Could not find any crash files."); } } else if ($_POST['Submit'] == "No") { array_map('unlink', glob("/var/crash/*")); // Erase the contents of the PHP error log fclose(fopen("/tmp/PHP_errors.log", 'w')); header("Location: /"); exit; } else { $crash_files = glob("/var/crash/*"); $crash_reports = $crash_report_header; if (count($php_errors) > 0) { $crash_reports .= "\nPHP Errors:\n"; $crash_reports .= implode("\n", $php_errors) . "\n\n"; } if (is_array($crash_files)) { foreach ($crash_files as $cf) { if (filesize($cf) < FILE_SIZE) { $crash_reports .= "\nFilename: {$cf}\n"; $crash_reports .= file_get_contents($cf); } } } else { echo gettext("Could not locate any crash data."); } ?>