<!DOCTYPE html>
<html lang="en">

<head>
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta charset="utf-8">
  <meta http-equiv="cleartype" content="on">

  <!-- Mobile settings http://t.co/dKP3o1e -->
  <meta name="HandheldFriendly" content="True">
  <meta name="MobileOptimized" content="320">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Installer - Fork CMS</title>
  <link rel="shortcut icon" href="/src/Backend/favicon.ico" />
  <link rel="stylesheet" type="text/css" media="screen" href="/src/Backend/Core/Layout/Css/screen.css" />
    <link rel="stylesheet" type="text/css" media="screen" href="/css/244a296.css" />
    <script type="text/javascript" src="/bower_components/jquery/dist/jquery.min.js"></script>
  <script type="text/javascript" src="/bower_components/jquery-migrate/jquery-migrate.min.js"></script>
    <script type="text/javascript" src="/js/e586e00.js"></script>
  </head>
<body id="installer">
<div id="genericBox" class="container">
  <div class="row">
    <div class="col-md-10 col-md-offset-1">
      <div id="genericBoxTitle" class="page-header text-center">
        <h2>Install Fork CMS</h2>
      </div>
    </div>
  </div>
  <div class="row">
    <div class="col-md-10 col-md-offset-1">
        <div class="row fork-module-messages">
    <div class="col-md-12">
                    <div class="alert alert-warning">
          <p>Your server might not run Fork CMS properly.</p>
        </div>
          </div>
  </div>
  <form action="index.php" method="get" id="step2" class="forkForms submitWithLink">
    <div class="row fork-module-content">
      <div class="col-md-12">
        <input type="hidden" name="step" value="2" />
        <div class="panel panel-default">
          <div class="panel-body">
            <div id="requirementsInformation">
              <div class="list-group">
                <div class="list-group-item list-group-item-success">
                  <h3 class="list-group-item-heading">PHP version</h3>
                  <p class="list-group-item-text">
                    PHP version must be at least 5.5.0, Before using Fork CMS, upgrade your PHP installation, preferably to the latest version.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h3 class="list-group-item-heading">Fork CMS can't be installed in subfolders</h3>
                </div>
              </div>
              <h3>PHP Extensions</h3>
              <div class="list-group">
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">cURL</h4>
                  <p class="list-group-item-text">
                    cURL is a library that allows you to connect and communicate to many different type of servers. More information
                    can be found on: <a href="http://php.net/curl">http://php.net/curl</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">libxml</h4>
                  <p class="list-group-item-text">
                    libxml is a software library for parsing XML documents. More information
                    can be found on: <a href="http://php.net/libxml">http://php.net/libxml</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">DOM</h4>
                  <p class="list-group-item-text">
                    The DOM extension allows you to operate on XML documents through the DOM API with PHP 5. More information
                    can be found on: <a href="http://php.net/dom">http://php.net/dom</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">SimpleXML</h4>
                  <p class="list-group-item-text">
                    The SimpleXML extension provides a very simple and easily usable toolset to convert XML to an object that can be
                    processed with normal property selectors and array iterators. More information can be found on:
                    <a href="http://php.net/simplexml">http://php.net/simplexml</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">SPL</h4>
                  <p class="list-group-item-text">
                    SPL is a collection of interfaces and classes that are meant to solve standard problems. More information can be found
                    on: <a href="http://php.net/SPL">http://php.net/SPL</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">PDO</h4>
                  <p class="list-group-item-text">
                    PDO provides a data-access abstraction layer, which means that, regardless of which database you're using, you use the
                    same functions to issue queries and fetch data. More information can be found on:
                    <a href="http://php.net/pdo">http://php.net/pdo</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">PDO MySQL driver</h4>
                  <p class="list-group-item-text">
                    PDO_MYSQL is a driver that implements the PHP Data Objects (PDO) interface to enable access from PHP to MySQL databases.
                    More information can be found on:
                    <a href="http://www.php.net/manual/en/ref.pdo-mysql.php">http://www.php.net/manual/en/ref.pdo-mysql.php</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">mb_string</h4>
                  <p class="list-group-item-text">
                    mb_string provides multibyte specific string functions that help you deal with multibyte encodings in PHP. In addition to
                    that, mb_string handles character encoding conversion between the possible encoding pairs. mb_string is designed to handle Unicode-based
                    encodings. More information can be found on:
                    <a href="http://php.net/mb_string">http://php.net/mb_string</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">iconv</h4>
                  <p class="list-group-item-text">
                    This module contains an interface to iconv character set conversion facility. With this module, you can turn a string
                    represented by a local character set into the one represented by another character set, which may be the Unicode
                    character set. More information can be found on:
                    <a href="http://php.net/iconv">http://php.net/iconv</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">GD2</h4>
                  <p class="list-group-item-text">
                    PHP is not limited to creating just HTML output. It can also be used to create and manipulate image files in a variety of
                    different image formats. More information can be found on:
                    <a href="http://php.net/gd">http://php.net/gd</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">json</h4>
                  <p class="list-group-item-text">
                    This extension implements the JavaScript Object Notation (JSON) data-interchange format. The decoding is handled by a parser
                    based on the JSON_checker by Douglas Crockford. More information can be found on:
                    <a href="http://php.net/json">http://php.net/json</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">PCRE (8.0+)</h4>
                  <p class="list-group-item-text">
                    The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5,
                    with just a few differences (see below). The current implementation corresponds to Perl 5.005. More information can be found on:
                    <a href="http://php.net/pcre">http://php.net/json</a>. We require at least 8.0.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">PCRE (8.0+)</h4>
                  <p class="list-group-item-text">
                    The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5,
                    with just a few differences (see below). The current implementation corresponds to Perl 5.005. More information can be found on:
                    <a href="http://php.net/pcre">http://php.net/json</a>. We require at least 8.0.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">">
                  <h4 class="list-group-item-heading">Intl</h4>
                  <p class="list-group-item-text">
                    Internationalization extension (Intl) is a wrapper for ICU library,
                    enabling PHP programmers to perform UCA-conformant collation and date/time/number/currency formatting in their scripts.
                    More information can be found on:
                    <a href="http://php.net/intl">http://php.net/intl</a>.
                  </p>
                </div>
              </div>
              <h3>PHP ini-settings</h3>
              <div class="list-group">
                <div class="list-group-item list-group-item-warning">
                  <h4 class="list-group-item-heading">Open Basedir</h4>
                  <p class="list-group-item-text">
                    For forward compatibility we highly recommend you not to use open_basedir.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">date.timezone</h4>
                  <p class="list-group-item-text">
                    date.timezone setting must be set. Make sure your default timezone is supported by your installation of PHP. Check for typos in your php.ini file and have a look at the list of deprecated timezones at
                    <a href="http://php.net/manual/en/timezones.others.php">http://php.net/manual/en/timezones.others.php</a>.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">json_encode</h4>
                  <p class="list-group-item-text">
                    json_encode() must be available, install and enable the JSON extension.
                  </p>
                </div>
              </div>
              <h3>Functions</h3>
              <div class="list-group">
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">json_encode</h4>
                  <p class="list-group-item-text">
                    json_encode() must be available, install and enable the JSON extension.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">session_start</h4>
                  <p class="list-group-item-text">
                    session_start() must be available, install and enable the session extension.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">ctype_alpha</h4>
                  <p class="list-group-item-text">
                    ctype_alpha() must be available, install and enable the ctype extension.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">token_get_all</h4>
                  <p class="list-group-item-text">
                    token_get_all() must be available, install and enable the Tokenizer extension.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">simplexml_import_dom</h4>
                  <p class="list-group-item-text">
                    simplexml_import_dom() must be available, install and enable the SimpleXML extension.
                  </p>
                </div>
              </div>
              <h3>Web server</h3>
              <div class="list-group">
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">mod_rewrite</h4>
                  <p class="list-group-item-text">
                    Fork CMS will not be able to run if mod_rewrite can not be applied. Please make sure that the .htaccess file is present (the file
                    starts with a dot, so it may be hidden on your filesystem), being read (AllowOverride directive) and the mod_rewrite module is
                    enabled in Apache. If you are installing Fork CMS on another web server than Apache, make sure you have manually configured your
                    web server to properly rewrite urls. More information can be found in our
                    <a href="http://www.fork-cms.com/knowledge-base/detail/fork-cms-and-webservers" title="Fork CMS and web servers">knowledge base</a>.
                    If you are certain that your server is well configured, you may proceed the installation despite this warning.
                  </p>
                </div>
              </div>
              <h3>Required permissions and/or files</h3>
              <div class="list-group">
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/src/Backend/Cache/*</h4>
                  <p class="list-group-item-text">
                    In this location all files created by the backend will be stored. This location and all subdirectories must be writable.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/src/Backend/Modules/</h4>
                  <p class="list-group-item-text">
                    In this location modules will be installed. You can continue the installation, but installing a module will then require a manual upload.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/src/Frontend/Cache/*</h4>
                  <p class="list-group-item-text">
                    In this location all files created by the frontend will be stored. This location and all subdirectories must be writable.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/src/Frontend/Files/*</h4>
                  <p class="list-group-item-text">
                    In this location all files uploaded by the user/modules will be stored. This location and all subdirectories must be writable.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/src/Frontend/Modules/</h4>
                  <p class="list-group-item-text">
                    In this location modules will be installed. You can continue the installation, but installing a module will then require a manual upload.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/src/Frontend/Themes/</h4>
                  <p class="list-group-item-text">
                    In this location themes will be installed. You can continue the installation, but installing a theme will then require a manual upload.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/library</h4>
                  <p class="list-group-item-text">
                    This location must be writable for the installer, afterwards this folder only needs to be readable.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/library/external/</h4>
                  <p class="list-group-item-text">
                    This location must be writable for the installer, afterwards this folder only needs to be readable.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/app/cache/</h4>
                  <p class="list-group-item-text">
                    In this location the global cache will be stored.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/app/logs/</h4>
                  <p class="list-group-item-text">
                    In this location the global logs will be stored.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/app/config/</h4>
                  <p class="list-group-item-text">
                    In this location the global configuration will be stored.
                  </p>
                </div>
                <div class="list-group-item list-group-item-success">
                  <h4 class="list-group-item-heading">/var/www/vhosts/denkpass.de/httpdocs/app/config/parameters.yml.dist</h4>
                  <p class="list-group-item-text">
                    This file is used to create the global configuration file.
                  </p>
                </div>
              </div>
            </div>
          </div>
          <div class="panel-footer">
                          <div class="btn-toolbar">
                <div class="btn-group pull-right" role="group">
                  <a href="/install/2" id="installerButton" class="btn btn-primary">
                    <span class="fa fa-download"></span> Install anyway
                  </a>
                </div>
              </div>
                      </div>
        </div>
      </div>
    </div>
  </form>
    </div>
  </div>
</div>
</body>
</html>
