The Yii 2 Practical-B Application Template is a skeleton Yii 2 application 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.
The template has some security preconfigured for users with Apache web servers. It has a default .htaccess
security configuration setup.
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.
Not seeing the updated content on this page! Hard refresh your browser to clean cache for this page (e.g. SHIFT-F5 on Windows Chrome)
After installing a app
, in the yii2-basic application you normally would access the
frontend by: https://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: https://domain/app
The yii2-app-practical-b
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: https://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.
/ contains the entry script and web resources assets/ contains 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
The minimum requirement by this application template is that your Web server supports PHP 5.4.0.
Extract the archive file downloaded from GitHub to
a directory named practical-b
or your app name, that is directly under the Web root.
practical-b
directory).
After this is complete, follow the instructions given in the Getting Started section.
The preferred way to install this application template is through composer. If you do not have Composer, you may install it by following the instructions at getcomposer.org. You can then install the application using the following command:
php composer.phar create-project --prefer-dist --stability=dev kartik-v/yii2-app-practical-b practical-b
Edit the file config/db.php
with real data, for example:
return [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=localhost;dbname=yii2practicalb', 'username' => 'root', 'password' => '1234', 'charset' => 'utf8', ];
NOTE: Yii won't create the database for you, this has to be done manually before you can access it.
Also check and edit the other files in the config/
directory to customize your application.
yii2-practical-b is released under the BSD-3-Clause
License. See the bundled LICENSE.md for details.
Comments & Discussion
Note
You can now visit the Krajee Webtips Q & A forum for searching OR asking questions OR helping programmers with answers on these extensions and plugins. For asking a question click here. Select the appropriate question category (i.e. Krajee Plugins) and choose this current page plugin in the question related to field.
The comments and discussion section below are intended for generic discussions or feedback for this plugin. Developers may not be able to search or lookup here specific questions or tips on usage for this plugin.