Concrete CMS Installation and Setup

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
Concrete CMS Installation and Setup
Simple
from 1 business day to 3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Concrete CMS Installation and Setup

Concrete CMS requires PHP 7.4–8.2, MySQL 5.7+/MariaDB 10.2+ or PostgreSQL, Apache/Nginx. Official support is for Composer installation — the preferred method for projects.

Installation via Composer

composer create-project -n concrete5/composer mysite
cd mysite

# Web installer: open http://yourdomain.com/index.php/install
# Or CLI installation:
./vendor/bin/concrete5 c5:install \
  --db-server=localhost \
  --db-username=myuser \
  --db-password=secret \
  --db-database=mysite_db \
  --site="My Site" \
  [email protected] \
  --admin-password=StrongPass123 \
  --starting-point=elemental_blank

Starting points: elemental_blank (clean), elemental_full (with demo content).

Directory Structure

mysite/
  application/          # customizations (in git)
    config/
    files/
    single_pages/
    views/
  concrete/             # CMS core (don't touch, updated via composer)
  packages/             # installed packages (in git)
  public/               # web root (document root)
    application/
    packages/
    index.php
  vendor/               # composer dependencies (not in git)

Server document root must point to public/ directory.

Nginx Configuration

server {
    listen 80;
    server_name mysite.com;
    root /var/www/mysite/public;
    index index.php;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
    }

    location ~ \.php$ {
        fastcgi_pass unix:/run/php/php8.1-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    # Close application/
    location ~* ^/application/ {
        deny all;
    }
}

Environment Configuration

// application/config/app.php
return [
    'debug'     => false,
    'url'       => 'https://mysite.com',
    'charset'   => 'UTF-8',
    'timezone'  => 'Europe/Minsk',
    'locale'    => 'ru_RU',
];

// application/config/database.php
return [
    'default-connection' => 'concrete',
    'connections'        => [
        'concrete' => [
            'driver'   => 'c5_pdo_mysql',
            'server'   => 'localhost',
            'database' => 'mysite_db',
            'username' => 'myuser',
            'password' => 'secret',
            'charset'  => 'utf8mb4',
        ],
    ],
];

Environment Variables (.env)

CONCRETE5_DB_SERVER=localhost
CONCRETE5_DB_DATABASE=mysite_db
CONCRETE5_DB_USERNAME=myuser
CONCRETE5_DB_PASSWORD=secret
CONCRETE5_URL=https://mysite.com

Core Update

composer update concrete5/core
./vendor/bin/concrete5 c5:update
./vendor/bin/concrete5 c5:cache:clear

CLI Administration Commands

# Clear cache
./vendor/bin/concrete5 c5:cache:clear

# Install package
./vendor/bin/concrete5 c5:package:install my-package

# Create user
./vendor/bin/concrete5 c5:user:add admin2 [email protected] Password123

# Rebuild search index
./vendor/bin/concrete5 c5:index:sites

Dashboard: Initial Setup

After installation via Dashboard → System & Settings:

  • Cache & Speed — enable Full Page Caching in production
  • SEO & Statistics — configure canonical URL, robots.txt
  • Files — max upload size, allowed types
  • Email — SMTP settings (required before forms launch)
  • API — enable REST API if headless mode needed