Total Pageviews

Sunday 6 November 2016

pimcore

Content & Product Management Framework
THE OPEN-SOURCE ENTERPRISE CMS/CMF, PIM, DAM, ECOMMERCE-SUITE
Software License Current Release Build Status Gitter

Getting started

Download the latest release and extract the archive in document root. Create a database for pimcore (charset: utf8). If you have a website_example (empty installation) or a website_demo (boilerplate) folder please rename one of them to website (only if cloning from git). Run the pimcore installation by accessing the URL where you uploaded the pimcore files in a browser.
cd /your/document/root
wget https://www.pimcore.org/download/pimcore-latest.zip
unzip pimcore-latest.zip

mysql -u root -p -e "CREATE DATABASE pimcore charset=utf8;"

# now launch http://yourhostname.tld/install
from https://github.com/pimcore/pimcore
------------

Server Requirements

For production we highly recommend a *nix based system.

Webserver

  • Apache >= 2.2
    • mod_rewrite
    • .htaccess support (AllowOverride All)
  • Nginx

PHP >= 5.5

Both mod_php and FCGI (FPM) are supported.
HHVM should work quite well even though it's not tested.

Required Settings and Modules & Extensions

  • imagick (if not installed gd is used instead, but with less supported image types)
  • curl (required if Google APIs are used)
  • phpredis (recommended cache backend adapter)

MySQL / MariaDB >= 5.5.3

Features

  • InnoDB / XtraDB storage engine
  • MyISAM storage engine (only if InnoDB full-text indexes are not supported)
  • MEMORY storage engine

Permissions

All permissions on database level, specifically:
  • Select, Insert, Update, Delete table data
  • Create tables
  • Drop tables
  • Alter tables
  • Manage indexes
  • Create temp-tables
  • Lock tables
  • Execute
  • Create view
  • Show view

Additional Server Software

  • FFMPEG (>= 3)
  • Ghostscript (>= 9.16)
  • LibreOffice (>= 4.3)
  • wkhtmltoimage / wkhtmltopdf (>= 0.12)
  • xvfb
  • html2text (mbayer)
  • timeout (GNU core utils)
  • pdftotext (poppler utils)
  • inkscape
  • zopflipng
  • pngcrush
  • jpegoptim
  • pngout
  • advpng
  • cjpeg (MozJPEG)
  • exiftool
Please visit Additional Tools Installation for additional information.

Browser Requirements

Pimcore supports always the latest 2 versions of all 4 major browsers at the time of a release.
  • Google Chrome (Recommended)
  • Mozilla Firefox
  • Microsoft Internet Explorer / Edge
  • Apple Safari
from https://www.pimcore.org/docs/latest/Installation_and_Upgrade/System_Requirements.html