elgorm/yii2-blogervk Yii 2 Practical-B Application BlogerVK

frameworkpracticalbasicpractical-bapplicationtemplateblogervk

Yii 2 BlogerVk

Latest Stable Version License Total Downloads Monthly Downloads Daily Downloads

The Yii 2 BlogerVk is a skeleton Practical-B Application Template by Kartik based on the yii2-basic template best for rapidly creating small projects. The template allows a practical method to directly access the application from the app root.

The template contains the basic features including user login/logout and a contact page. It includes all commonly used configurations that would allow you to focus on adding new features to your application.

BlogerVk with kartik/yii2-practical-b.

After installing a app, in the yii2-basic application you normally would access the frontend by:

http://domain/app/web

However, in many practical scenarios (especially on shared and single domain hosts) one would want their users to directly access the app as:

http://domain/app

The yii2-blogervk enables you to achieve just that by carefully moving and rearranging the bootstrap files and web components of frontend to work directly out of the app root. The web folder is entirely eliminated and one can directly access the application frontend this way:

http://domain/app

All other aspects of the app configuration remain the same as the yii2-basic app. The original assets folder in the approot is renamed to assets_b, while the web/assets folder moves to app root.

SOME KEY ADDITIONS

  1. The template has some security preconfigured for users with Apache web servers. It has a default .htaccess security configuration setup.
  2. The template has prettyUrl enabled by default and the changes have been made to .htaccess as well as urlManager component config in the config directory.

DIRECTORY STRUCTURE

    /                   contains the entry script and web resources
    assets/             contains the web runtime assets
    assets_b/           contains application assets such as JavaScript and CSS
    commands/           contains console commands (controllers)
    config/             contains application configurations
    controllers/        contains Web controller classes
    mail/               contains view files for e-mails
    models/             contains model classes
    runtime/            contains files generated during runtime
    tests/              contains various tests for the yii2-practical-b application
    vendor/             contains dependent 3rd-party packages
    views/              contains view files for the Web application

REQUIREMENTS

The minimum requirement by this application template that your Web server supports PHP 5.4.0.

INSTALLATION

Install from an Archive File

Extract the archive file downloaded from yiiframework.com to a directory named blogervk that is directly under the Web root.

Note: When using a archive file method, the vendor folder is not automatically created. You must extract the yii2-basic vendor folder from here. Then you must copy this folder directly under the app root (i.e. blogervk directory).

You can then access the application through the following URL:

http://localhost/blogervk/

Install via Composer

If you do not have Composer, you may install it by following the instructions at getcomposer.org.

You can then install this application template using the following command:

php composer.phar global require "fxp/composer-asset-plugin:1.1.*"
php composer.phar create-project --prefer-dist --stability=stable elgorm/yii2-blogervk blogervk

Now you should be able to access the application through the following URL, assuming blogervk is the directory directly under the Web root.

http://localhost/blogervk

CONFIGURATION

Database

Edit the file config/db.php with real data, for example:

return [
    'class' => 'yii\db\Connection',
    'dsn' => 'mysql:host=localhost;dbname=blogervk',
    'username' => 'root',
    'password' => '1234',
    'charset' => 'utf8',
];

Params

Edit the file config/params.php with real data, for example:

return [
    'adminEmail' => 'admin@example.com',
    'countFromGroup'=>5, //default count post from source
    'offsetFromGroup'=>1, //default offset post from source
    'pageSize'=>5, //page size for site
    'SiteName'=>'BlogerFromVK', // Site name
    'BrandName'=>'BlogerFromVK', // Barnd
    'SiteYear'=>Date('Y'), // Current Year in footer
    'showNullCategory'=>true, //Show null category in right block
    'pageSizeRss'=>20,
    'enableRss'=>true,
    'rssIcon'=>'<i class="fa fa-rss"></i>',
    'rssIconTitle'=>'<i class="fa fa-rss-square"></i>',
];

NOTE: Yii won't create the database for you, this has to be done manually before you can access it.

Migrations

File yii must have rights 777. Type in console:

./yii migrate/up

Admin User Password

In /models/User.php change 'username' and 'password'
private static $users = [
        '100' => [
            'id' => '100',
            'username' => 'admin',
            'password' => 'Borlsjlfsdf',
            'authKey' => 'test100key',
            'accessToken' => '100-token',
        ],
    ];

Auto added posts

Also check and edit the other files in the config/ directory to customize your application.

Changelog

Change Log

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

[1.4.2] - 2017-10-03

Changed

  • fix save gif images
  • This changelog

[1.4.1] - 2017-10-03

Changed

  • Support parse gif images
  • This changelog

[1.4.0] - 2017-09-21

Changed

  • Support token
  • Interface get token
  • New param appId from vk (id 6191945 - Bloger Vk Publisher)
  • Get access_token
  • This changelog

[1.3.3] - 2016-05-16

Changed

  • fix small bug in post url
  • This changelog

[1.3.2] - 2016-05-16

Changed

  • fix url for rss feed
  • This changelog

[1.3.1] - 2016-05-16

Changed

  • fix trnsliterate.js
  • This changelog

[1.3.0] - 2016-05-16

Changed

  • Add functional for slug alias for URL
  • Add automatic slug parse source (if extention Intl on)
  • fix code style
  • This changelog

[1.2.9] - 2016-04-20

Changed

  • Fixed negative number added post
  • This changelog
  • README.md

[1.2.8] - 2016-03-29

Changed

  • Fixed search and rss icon
  • This changelog

[1.2.7] - 2016-03-28

Changed

  • Changed Menu Administration
  • This changelog

[1.2.6] - 2016-03-21

Changed

  • Changed Masonry plugin apply after load page
  • This changelog

[1.2.5] - 2016-03-21

Changed

  • add rssLink in SiteController action index
  • This changelog

[1.2.4] - 2016-03-21

Changed

  • Fix small bug in views/site/index.php
  • This changelog

[1.2.3] - 2016-03-21

Changed

  • Fix title in category, rss link not inside tag

  • Add classes to rss link "rss-link" and "rss-link-{categoryName}" in category
  • Add class .inline in site.css
  • This changelog

[1.2.2] - 2016-03-18

Changed

  • Parse source auto title from content before first <br or full string
  • This changelog

[1.2.1] - 2016-03-18

Changed

  • Add file /views/site/_footer for footer part and changed in layouts main and blog
  • This changelog

Changed

  • README.md
  • This changelog

[1.2.0] - 2016-03-18

Added

  • Rss for all posts and rss for categories, params 'enableRss' and 'rssIcon' and 'rssIconTitle' and 'pageSizeRss'

Changed

  • README.md
  • This changelog

[1.1.2] - 2016-03-16

Changed

  • Fixed Undefined offset in /modules/admin/views/posts/_photos.php row 44
  • This changelog

[1.1.1] - 2016-03-16

Changed

  • File README.md
  • This changelog

[1.1.0] - 2016-03-15

Added

  • PhotoManager for post images

Changed

  • This changelog
  • File README.md

1.0.1 - 2016-03-14

Removed

  • Deleting PostController

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



1.4.2 is the latest of 22 releases



BSD-3-Clause license
Stats
0 github stars & 0 github forks
0 downloads in the last day
0 downloads in the last 30 days
27 total downloads