spoonx / sxblog
Blog Module for ZF2
Requires
- php: >=5.3.6
- doctrine/doctrine-orm-module: 0.*
- zendframework/zendframework: 2.*
- zf-commons/zfc-user: 0.*
- zf-commons/zfc-user-doctrine-orm: ^1.0
This package is auto-updated.
Last update: 2024-10-22 23:35:22 UTC
README
This is a very simple blog module. It should suffice for those with simple wishes.
Installation
-
add the requirement to your composer.json file by either...
... Adding it through the command line,
./composer.phar require spoonx/sxblog When asked for a version, type: "dev-master"
or, adding it manually to your composer.json file and then running ./composer.phar install to install the dependencies
{ "require": { "spoonx/sxblog": "dev-master" } }
-
Enable the newly added modules in
config/application.config.php
<?php return array( 'modules' => array( /* ... */ 'ZfcUser', 'ZfcUserDoctrineORM', 'DoctrineModule', 'DoctrineORMModule', 'SxBlog', /* ... */ ), );
-
Copy the config files to your autoload dir
cp vendor/spoonx/sxblog/config/database.local.php.dist config/autoload/database.local.php
cp vendor/spoonx/sxblog/config/sxblog.global.php.dist config/autoload/sxblog.global.php
Next up, open the files and change the params to fit your needs.
-
Update the database
./vendor/bin/doctrine-module orm:schema-tool:update --force
-
Make sure cache dir is writable
If you're running into problems, try making the cache dir writable by executing
chown -R :www-data data; sudo chmod -R 775 data
(www-data
being your apache user.)
Questions / support
If you're having trouble with the module there are a couple of resources that might be of help.
- RWOverdijk at irc.freenode.net #zftalk.dev
- Issue tracker. (Please try to not submit unrelated issues).
- By mail