FOSCKEditorBundle icon indicating copy to clipboard operation
FOSCKEditorBundle copied to clipboard

There are no commands defined in the "ckeditor" namespace

Open dennis1906 opened this issue 5 years ago • 2 comments

Hi there, I am using Symfony 5.2.4 and wanted to integrate the FOS CKEditor Bundle in my project.

Unfortunately the command php bin/console ckeditor:install causes the following error:

There are no commands defined in the "ckeditor" namespace.

Does anyone have an idea what to do?

dennis1906 avatar Apr 03 '21 19:04 dennis1906

Run the following

composer require friendsofsymfony/ckeditor-bundle

Arielblues avatar Jun 22 '21 16:06 Arielblues

Hi @dennis1906

I had the same problem and I realized that I didn't have it into the config/bundle.php

config/bundles.php:

return [
    // ...
    FOS\CKEditorBundle\FOSCKEditorBundle::class => ['all' => true],
];

I had the above line of code, then I run again php bin/console ckeditor:install and it works.

MarcoValeri avatar Oct 16 '21 06:10 MarcoValeri