Skip to content
Gallery
CorePulse
Share
Explore

icon picker
Tutorials

Basic

Install CorePulse

Step 1: Get the Bundle

Run the command below
composer require corepulse/corepulse-bundle
note: if you get some error messages, try run with latest version
composer require corepulse/corepulse-bundle 1.0.beta
run-command.png

Step 2: Enable the Bundle

Adding below codes to config/bundles.php
<?php
return [
……
ValidatorBundle\ValidatorBundle::class => ['all' => true],
Rompetomp\InertiaBundle\RompetompInertiaBundle::class => ['all' => true],
Pentatrion\ViteBundle\PentatrionViteBundle::class => ['all' => true],
CorepulseBundle\CorepulseBundle::class => ['all' => true],
];
config-bundle.png

Step 3: Install Bundle

Run the command below
./bin/console pimcore:bundle:install CorepulseBundle
note: if you get some error messages, try uninstall this bundle firstly
install-command.png

Step 4: Config Firewall

Open file config/packages/security.yaml
...then add below code
security:
firewalls:
…………
corepulse_cms: '%corepulse_admin.firewall_settings%'
... and add below code in access_control section
security:
access_control:
- { path: ^/cms/login, roles: PUBLIC_ACCESS }
- { path: ^/cms, roles: ROLE_COREPULSE_USER }
config-security.png

Step 5: Initial config in the Admin Page & DONE 🚀

Reload the Admin Page, find the CorePulse config in left Sidebar and set the Corepulse Super Admin user
image.png
Don’t forget to config Appearance & Data Setup
image.png
image.png
Afterward, you can start using your new Pimcore CMS at [domain]/cms
image.png
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.