CakeBlog is an open source blogging software. Written by George Whitcher in PHP with the CakePHP framework. CakeBlog like CakePHP requires Composer and PHP 5.6+.
- Download and copy contents to your root folder.
- Install Composer.
- Run
composer update
to install CakePHP. - Rename and configure the following files in your /config/ directory.
app.default.php
toapp.php
,cakeblog-config.default.php
tocakeblog-config.php
,cakeblog-functions.default.php
tocakeblog-functions.php
, androutes.default.php
toroutes.php
- Create MySQL database and user and enter information in your app.php.
- Run migrations by running
bin/cake migrations migrate
. - Mark the migration completed by running
bin/cake migrations mark_migrated
- You are now setup! A default user
admin
and passwordadmin
is created by default. Please login by visiting http://domain.com/admin and change this immediately.
- Login to your CakeBlog administration.
- Go to
Update
on the menu and download the files automatically from the latest GIT repository. - Open terminal and run
bin/cake migrations migrate
. It is also suggested you update your CakePHP installation as wellcomposer update
.
NOTE: It is important NOT to make changes to the core CakeBlog files as they will be overwritten when updated.
Issues - Got issues? Please tell me! CakeBlog - CakeBlog Homepage.