mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 15:05:33 +00:00
Move files to recipe-core
This commit is contained in:
parent
e32b1bbd07
commit
64211f1b1d
@ -15,11 +15,8 @@
|
|||||||
"project-files": [
|
"project-files": [
|
||||||
"assets/*",
|
"assets/*",
|
||||||
"mysite/_config/*",
|
"mysite/_config/*",
|
||||||
"index.php",
|
|
||||||
"install.php",
|
|
||||||
".env.example",
|
".env.example",
|
||||||
"favicon.ico",
|
"favicon.ico"
|
||||||
"install-frameworkmissing.html"
|
|
||||||
],
|
],
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"4.x-dev": "4.0.x-dev",
|
"4.x-dev": "4.0.x-dev",
|
||||||
|
@ -1,34 +0,0 @@
|
|||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>The SilverStripe Framework is missing</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="BgContainer">
|
|
||||||
<div id="Container">
|
|
||||||
<div id="Header">
|
|
||||||
<h1>SilverStripe CMS Installation</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="Navigation"> </div>
|
|
||||||
<div class="clear"><!-- --></div>
|
|
||||||
|
|
||||||
<div id="Layout">
|
|
||||||
<div class="typography">
|
|
||||||
<p><strong>The SilverStripe Framework is missing</strong> - To run the installer, at least the <strong>framework</strong> module is required.</p>
|
|
||||||
|
|
||||||
<p>If you downloaded a pre-packaged zip or tar.gz, something might have gone wrong with the packaging
|
|
||||||
process. Please try re-downloading, or try an older version.</p>
|
|
||||||
|
|
||||||
<p>If you downloaded this from <a href="https://github.com/silverstripe">GitHub</a>, you need to install the <strong>framework</strong> module. You can do this manually, or by running the tools/new-project script from the command line.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="clear"><!-- --></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="Footer">
|
|
||||||
<div class="footerTop"><!-- --></div>
|
|
||||||
<p><a href="http://silverstripe.org">SilverStripe Open Source CMS</a> | Copyright © 2008-2011 SilverStripe Limited</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
16
install.php
16
install.php
@ -1,16 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/************************************************************************************
|
|
||||||
************************************************************************************
|
|
||||||
** **
|
|
||||||
** If you can read this text in your browser then you don't have PHP installed. **
|
|
||||||
** Please install PHP 5.6.0 or higher. **
|
|
||||||
** **
|
|
||||||
************************************************************************************
|
|
||||||
************************************************************************************/
|
|
||||||
|
|
||||||
if (!file_exists(__DIR__ . '/vendor/silverstripe/framework') || !file_exists(__DIR__ . '/vendor/silverstripe/framework/_config.php')) {
|
|
||||||
include 'install-frameworkmissing.html';
|
|
||||||
} else {
|
|
||||||
include './vendor/silverstripe/framework/src/Dev/Install/install.php';
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user