Sorry, a database error occurred.
'; goto last; } if($result['UserLevel'] < 100) { print 'Sorry, the authenticated agent does not have the necessary level to download OARs.
'; goto last; } $oar_path = '/var/lib/oar/'.$region.'/'.$region.'.oar'; if (file_exists($oar_path)) { header('Content-Description: File Transfer'); header('Content-Type: application/x-gzip-compressed'); header('Content-Disposition: attachment; filename='.basename($oar_path)); header('Content-Transfer-Encoding: binary'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header('Content-Length: '.filesize($oar_path)); readfile($oar_path); goto last; } echo 'Sorry, the OAR file is not available yet.
'; goto last; } echo 'Sorry, incorrect CAPTCHA. Please try again.
'; last: ?>