Content & Product Management Framework, http://www.pimcore.org/
THE OPEN-SOURCE ENTERPRISE CMS/CMF, PIM, DAM, ECOMMERCE-SUITE
- Documentation
- Homepage: http://www.pimcore.org/ - Learn more about pimcore
- Like us on Facebook
- Twitter: @pimcore - Get the latest news
- Issue Tracker: - Issues - Report bugs here
- Help translating pimcore
- Google Group - Discussions
- StackOverflow - Questions / Support
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.
HHVM should work quite well even though it's not tested.
Required Settings and Modules & Extensions
memory_limit
>= 128Mupload_max_filesize
andpost_max_size
>= 100M (depending on your data)- pdo_mysql or mysqli
- iconv
- dom
- simplexml
- gd
- exif
- file_info
- mbstring
- zlib
- zip
- bz2
- openssl
- opcache
- CLI SAPI (for Cron Jobs)
- Composer (added to
$PATH
)
Recommended 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