Download the PHP package mv/mv-blog-bundle without Composer

On this page you can find all versions of the php package mv/mv-blog-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package mv-blog-bundle

MvBlogBundle

Blog Bundle for symfony2 v2.3 (v2.2 are tagged 1.2.x and v2.1 are tagged 1.0.x)

If you're upgrading from 1.0.x, see "UPGRADE-1.2"

If you're upgrading from <= 1.2.1, see "UPGRADE-1.2.2"

If you're upgrading from <= 1.2.2, see "UPGRADE-1.2.3"

Build Status

Total Downloads

Latest Stable Version

Features include:

INSTALLATION with COMPOSER

You need have installed Symfony2 2.3 with Composer or have a composer.json file

1) Add to composer.json in the root require key

"mv/mv-blog-bundle": "~1.3.0@stable"

I deeply recommend to use symlinks for assets to non expose your images to be deleted

You can do it by adding this option to your "extra" key in composer.json

"symfony-assets-install": "symlink"

If you are using an exotic OS like Windows who don't support this option, you are wrong, framework made for you is .NET

2) Add to your AppKernel.php

new Mv\BlogBundle\MvBlogBundle(),
new Ivory\CKEditorBundle\IvoryCKEditorBundle(),
new Knp\Bundle\PaginatorBundle\KnpPaginatorBundle(),
new FM\ElfinderBundle\FMElfinderBundle(),

3) Add to routing.yml

For front pages

mv_blog:
    resource: "@MvBlogBundle/Resources/config/routing.yml"
    prefix: /blog

For admin pages

mv_blog_admin:
    resource: "@MvBlogBundle/Resources/config/routing_admin.yml"
    prefix: /badp

4) See Resources/Example/security.yml.example to configure access to the admin panel

This is for dev tests only.

Ensure you have in your AppKernel.php

new JMS\AopBundle\JMSAopBundle(),
new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),

5) See Resources/Example/config.yml.example

This bundle send mails, a parameter is required for the email from.

Ensure you have in your AppKernel.php

new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),

6) Import config bundle in your config.yml

imports:
    - { resource: "@MvBlogBundle/Resources/config/config.yml" }

Be carrefull, may be you have already the "imports" key

Run update with composer

php path/to/composer.phar update

Dump assetic (for production)

php app/console assetic:dump

In future it will be this script in root composer.json

"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::dumpAssetic"

VERY IMPORTANT

Read this "YUI Compressor" unless picture management won't work in production mode

7) You have to implement (if you don't have yet) an user management

You have access to admin panel in dev mode to see it, but you can't keep it in production mode. To have routes for dev mode, you have to add in your app routing_dev.yml:

mv_blog_secure:
    resource: "@MvBlogBundle/Resources/config/routing_dev.yml"
    prefix: /badp

ex: FOSUserBundle can help you.

Surcharge app/Resources/MvBlogBundle/views/_logout-link.html.twig to have your logout link.
See original in Mv/BlogBundle/Resources/views/_logout-link.html.twig

You can also surcharge base.admin-layout.html.twig & base.layout.html.twig to change CSS, JS or this templates inherit from (ex: to integrate your header, footer or what you need)

8) Build Database

ex:

app/console doctrine:schema:update

or to have dump sql:

app/console doctrine:schema:update --dump-sql

9) Blog is accessible on /blog and Admin panel on /badp

RSS version is on /blog/flux.rss

If you have an error when you try to access to image management, ensure your web/bundles/mvblog/images is writable by server

Enjoy...

To be continued


All versions of mv-blog-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.3
symfony/symfony Version ~2.3.0@stable
symfony/swiftmailer-bundle Version 2.3.*
symfony/assetic-bundle Version 2.3.*
doctrine/doctrine-bundle Version 1.2.*
jms/security-extra-bundle Version ~1.4
jms/di-extra-bundle Version >=1.3.0@dev
knplabs/knp-paginator-bundle Version 2.3.*
gedmo/doctrine-extensions Version 2.3.*
egeloen/ckeditor-bundle Version >=2.1.3
helios-ag/fm-elfinder-bundle Version >=1.0,<1.5
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mv/mv-blog-bundle contains the following files

Loading the files please wait ....