gecko-dev/webtools/survey/webroot/unavailable.php
mike.morgan%oregonstate.edu 6ee2c247ce Added failover when db is unavailable, changed default values for htaccess.default.
If the app is installed in a DocumentRoot, you won't have to edit the htaccess.default.  Just copy it to webroot/.htaccess and make sure webroot is the DocRoot and you're fine.
2006-03-10 17:42:07 +00:00

17 lines
372 B
PHP

<?php
/**
* Thank you page on survey completion.
* Since the input is all optional, on any submit they will see this.
* @package survey
* @subpackage docs
*/
require_once(HEADER);
echo <<<THANKS
<h1>Survey Temporarily Unavailable</h1>
<p>We're sorry, the uninstall survey is not available at this time. Please try again later.</p>
THANKS;
require_once(FOOTER);
?>