requireAuth(); header('Content-Type: text/plain; charset=utf-8'); echo("OK\n"); } catch (Exception $e) { header('HTTP/1.0 500 Internal Server Error'); header('Content-Type: text/plain; charset=utf-8'); echo("ERROR\n"); echo($e->getMessage() . "\n"); }