General

  eZ Systems Website
  Editor documentation


  Developer documentation

  Back to the top

Skip to end of metadata
Go to start of metadata

1. Install a LAMP Stack (*NIX, Apache, MySQL, PHP5+)

Depending on your selected *NIX distribution, you may need to install part or all of the LAMP stack required to run eZ Platform or eZ Enterprise. Before getting started, make sure you review our requirements page to see the systems we support and use for testing. You can try using an unsupported configuration, but your results may vary.

Please not that, while OS X is a *NIX-based system, it has its own unique requirements listed in our Installation Guide for OS X. Developer-maintained installation notes are kept in our GitHub repository at this location as well: https://github.com/ezsystems/ezplatform/blob/master/INSTALL.md

You may use your system's package manager (yum, apt-get, etc.) to obtain a copy of Apache, MySQL, and PHP, or download the latest versions from the official websites and install manually:

For Debian 8.5, for example, we'd recommend using apt-get to install apache2, mysql-server, mysql-client, and php5-* (all the packages listed in the requirements), as well as git for version control. If the system on which you're doing the install has only 1 or 2 GB of RAM, be sure to set up swap so you don't run out of RAM when running the composer scripts later on.

2. Get Composer

You'll need Composer, the PHP command line dependency manager.

a. Install Composer by running the following command on the terminal of the machine upon which you're installing eZ Platform:

b. Move the downloaded composer.phar file to a globally-available path:

3. Download the desired version of eZ Platform or eZ Enterprise

Expand the archive into /var/www/ezplatform or the folder name or your choosing.

For developers interested in working with the latest version of eZ Platform, you may also clone the latest from our GitHub repository:

You can rename the destination folder to whatever you like. This is where eZ Platform will live, and you'll point your virtual host to this folder to use as its root. You may choose to download an archive file from share.ez.no/downloads instead of cloning from GitHub, and extract the eZ Platform archive to a similar directory. The subsequent steps are identical, regardless of the method you choose to obtain eZ Platform.

4. Create a new database for eZ Platform

Create new database (you can substitute ezplatform with the database name you want to use, but keep it in mind as you run the installation script):

5. Run the Installation Scripts

Composer will look inside the composer.json file and install all of the required packages to run eZ Platform. There's a script in the app folder called console that will install eZ Platform for your desired environment as well (dev/prod).

This is the step where you want to make sure you have swap configured for your machine if it does not have an abundance of RAM.

a. Run composer install:

Once the installer gets to the point that it creates app/config/parameters.yml, you will be presented with a few decisions. The first asks you to choose a secret; choose any random string you like, made up of characters, numbers, and symbols, up to around 32 characters. This is used by Symfony when generating CSRF tokens, encrypting cookies, and for creating signed URIs when using ESI (Edge Side Includes).

Next, you'll be asked to specify a database driver. You may press return to accept the default for this option, as well as the next several (database_host, database_port, database_name, database_user) unless you have customized those values and need to enter them as configured on your installation. If you set a password for your database user, enter it when prompted for database_password. The installer should continue once you've completed this manual portion of the installation process.

b. Run eZ Platform's installer:

Don't forget to substitute any custom folder name you may have chosen in place of ezplatform/ after /var/www/ in the examples above. As you can see, this example shows a clean production installation. We're telling PHP to run Symfony's console to execute the ezplatform install script. You can get an informative output to learn more about the console script's capabilities by swapping in these parameters:  config:dump-reference ezpublish

If Composer asks you for your token, you must log in to your GitHub account and edit your profile. Go to the Personal access tokens link and Generate new token with default settings. Be aware that the token will be shown only once, so do not refresh the page until you paste the token into the Composer prompt. This operation is performed only once when you install eZ Platform for the first time.

Please note that a clean install of eZ Platform doesn’t include the DemoBundle anymore.

6. Setup the folder rights (*NIX users)

Like most things, Symfony documentation applies here, meaning app/cache and app/logs need to be writable by cli and web server user.

Furthermore, future files and directories created by these two users will need to inherit those access rights. For security reasons, there is no need for web server to have access to write to other directories.

Then, go to the Setup folder rights page for the next steps of this settings.

7. Set up a Virtual Host

For our example, we'll demonstrate using Apache2 as part of the traditional LAMP stack.

Option A: Scripted Configuration

Instead of manually editing the vhost.template file, you may instead use the included shell script: /var/www/ezplatform/bin/vhost.sh to generate a configured .conf file. Check out the source of vhost.sh to see the options provided. Additional information is included in our Web Server documentation here as well.

Option B: Manual Edits

a. Copy the vhost template file from its home in the doc folder:

b. Edit the file, substituting the %placeholders% with the appropriate values for your desired config:

For a DEV environment, you can change

    • <VirtualHost %IP_ADDRESS%:%PORT%>
      to
      <VirtualHost *:80>
    • ServerName %HOST_NAME%
      to
      ServerName localhost
    • ServerAlias %HOST_ALIAS%
      ...that can simply be deleted.
    • DocumentRoot %BASEDIR%/web
      to
      DocumentRoot /var/www/ezplatform/web
    • LimitRequestBody %BODY_SIZE_LIMIT%
      to
      LimitRequestBody 0
    • TimeOut %TIMEOUT%
      to
      TimeOut 42
      to avoid waiting longer than 42 seconds for all the things.

Be sure to specify /var/www/ezplatform/web as the DocumentRoot and Directory. Uncomment the line that starts with #if[SYMFONY_ENV] and set the value, something like this:

8. Server Configuration (Apache as example)

Make sure you've got the libapache2-mod-php5 module installed for Apache2 to use PHP5.x, and have the rewrite module enabled:

a. You'll need the web user set as the owner/group on all your files to avoid a 500 error:

b. With your vhost file properly prepared and located in /etc/apache2/sites-available/ezplatform.conf, enable the VirtualHost and disable the default:

9. Restart server (Apache)

In this topic:

 

 

  • No labels