All Projects → contao → managed-edition

contao / managed-edition

Licence: other
Contao Managed Edition

Projects that are alternatives of or similar to managed-edition

check
Contao Check
Stars: ✭ 49 (+226.67%)
Mutual labels:  contao
api.symfony-3.crud
Symfony 3 and FOS REST Bundle - CRUD API
Stars: ✭ 15 (+0%)
Mutual labels:  symfony-application
symfony-docker
A template for new Symfony applications using Docker: ./install.sh && 🚀
Stars: ✭ 34 (+126.67%)
Mutual labels:  symfony-application
bzion
A League Management System designed for BZFlag leagues and tournaments.
Stars: ✭ 20 (+33.33%)
Mutual labels:  symfony-application
SemartSkeleton
Symfony Skeleton
Stars: ✭ 49 (+226.67%)
Mutual labels:  symfony-application
catalog-manager
Backend Module ohne Programmierkenntnisse erstellen.
Stars: ✭ 28 (+86.67%)
Mutual labels:  contao
contao-leads
No description or website provided.
Stars: ✭ 31 (+106.67%)
Mutual labels:  contao
contao-events subscriptions
Contao extension that allows members of your website to subscribe to the events
Stars: ✭ 12 (-20%)
Mutual labels:  contao
banditore
Banditore retrieves new releases from your starred GitHub repositories and generate an Atom feed with them.
Stars: ✭ 118 (+686.67%)
Mutual labels:  symfony-application
contao-cookiebar
Display the information about cookies on your Contao website
Stars: ✭ 27 (+80%)
Mutual labels:  contao
Part-DB-symfony
[WIP] A new Part-DB experience based on Symfony framework
Stars: ✭ 120 (+700%)
Mutual labels:  symfony-application
zusam
Private groups to share messages, photos, videos, links with friends and family.
Stars: ✭ 79 (+426.67%)
Mutual labels:  symfony-application
ResidenceCMS
Open Source Property Management System based on Symfony 6
Stars: ✭ 75 (+400%)
Mutual labels:  symfony-application
core
Bootstrap 4 Contao Core Component
Stars: ✭ 16 (+6.67%)
Mutual labels:  contao
firebase-php-examples
Example Firebase Symfony application using the Firebase PHP Admin SDK
Stars: ✭ 64 (+326.67%)
Mutual labels:  symfony-application
symfony-realworld-example-app
Symfony 5 codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.
Stars: ✭ 89 (+493.33%)
Mutual labels:  symfony-application
docker-symfony
Docker Symfony (PHP-FPM - NGINX - MySQL - MailHog - Redis - RabbitMQ)
Stars: ✭ 32 (+113.33%)
Mutual labels:  symfony-application
standard-edition
The "Symfony CMF Standard Edition" distribution
Stars: ✭ 117 (+680%)
Mutual labels:  symfony-application
contao-theme-framework
A new standardized and database-less way to build frontend themes in Contao.
Stars: ✭ 13 (-13.33%)
Mutual labels:  contao
physbook
Social extranet for Arts et Métiers ParisTech students
Stars: ✭ 18 (+20%)
Mutual labels:  symfony-application

Contao 4 Managed Edition

Contao is an Open Source PHP Content Management System for people who want a professional website that is easy to maintain. Visit the project website for more information.

System Requirements

  • Web server
  • PHP 7.3+ with GDlib and DOM
  • MySQL 5.5.7+
  • InnoDB with innodb_large_prefix enabled

InnoDB Large Prefix

MySQL versions prior to 5.7.7 do not have the innodb_large_prefix option enabled by default. To enable it in one of these versions, add the following to your my.cnf file:

innodb_large_prefix = 1
innodb_file_format = Barracuda
innodb_file_per_table = 1

If the option cannot be enabled on your server, please configure a different database engine and character set in your config/config.yml file:

doctrine:
    dbal:
        connections:
            default:
                default_table_options:
                    charset: utf8
                    collate: utf8_unicode_ci
                    engine: MyISAM

MySQL Strict Mode

It is recommended to run MySQL in "strict mode" to prevent corrupt or truncated data and to guarantee data integrity. As of Contao 4.12, the install tool shows a warning if the database server is not running in strict mode. To enable it, add the following to your my.cnf file or make sure that the setting is adjusted accordingly:

[mysqld]
…
sql_mode="TRADITIONAL"
…

If the setting cannot be enabled on your server, please configure the connection options in your config/config.yml file:

doctrine:
    dbal:
        connections:
            default:
                options:
                    # Depending on the DB driver, the option key is either 1002 (pdo_mysql) or 3 (mysqli)
                    1002: "SET SESSION sql_mode=(SELECT CONCAT(@@sql_mode, ',TRADITIONAL'))"

Browser Compatibility

Chrome, Firefox, Safari 12+, IE 11, Edge 17+, Opera, Chrome for Android, Safari for iOS 11.3+, Samsung Internet 8.2+

Installation

See the installation chapter of the user's manual.

Documentation

License

Contao is licensed under the terms of the LGPLv3.

Getting Support

Visit the support page to learn about the available support options.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].