silverstripe-installer/check-php.php
aoneil 62076389c3 Moved installer to open, the right copy this time!
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@39713 467b73ca-7a2a-4603-9d3b-597d59a354a9
2007-08-07 22:19:05 +00:00

22 lines
507 B
PHP

<?php
if(ini_get("short_open_tag")) {
header("Location: install.php");
} else {
echo "Please set the PHP option short_open_tag to true, restart your webserver, and then refresh your browser to continue.";
}
?>
<!--<?php /*-->
<html>
<head>
<title>No PHP Support</title>
</head>
<body>
<h1>No PHP Support</h1>
<p>
<p>Before I can install SilverStripe 2, you must add PHP support to your webserver.</p>
<p><a href="check-php.php">Try again</a></p>
</body>
</html>
<!--*/?>-->