Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 741 Bytes

Installation.md

File metadata and controls

38 lines (26 loc) · 741 Bytes

Installation

Composer

composer require cakedc/cakephp-forum

Creating Required Tables

bin/cake migrations migrate --plugin=CakeDC/Forum

You can also seed the database with some sample data:

bin/cake migrations seed --seed=EverythingSeed --plugin=CakeDC/Forum

Loading the Plugin

Ensure the Users Plugin is loaded in your config/bootstrap.php file

Plugin::load('CakeDC/Forum', ['bootstrap' => true, 'routes' => true]);

Now your Forum index pages should be available under /forum URL. Admin interface under /forum/admin.

Configuration

Check the Configuration page for more details.