Super-easy-to-use and professional backend for Yii 2 advanced. This extension is not a frontend + backend application. It is ONLY backend. You can leave it as is or adapt it to your needs.
Demo ¶
Click here for the demo User: admin / Password: 123456
Download ¶
https://github.com/ho96/yii2-advanced-admin
Features ¶
- Change password
- Edit messages of the frontend/messages folder with TinyMCE editor.
- Integration with Multilevel horizontal menu.
- Integration with Extplorer (using an iframe).
- Integration with PHPMyAdmin (using an iframe).
- Integration with PHP Lite Admin (using an iframe).
- PHP info.
- Multilanguage.
- Fully responsive.
- Powered by a SQLite database.
Requirements ¶
Yii 2 advanced
Usage ¶
Starting ¶
Download the files from github and replace the whole backend folder.
backend/data must be writable.
..............................
Menu ¶
You need to install Multilevel horizontal menu
..............................
Home button ¶
In order for the home button to work, you need to adjust this array in backend/config/main.php
'urlManagerFrontEnd' => [
'class' => 'yii\web\urlManager',
'baseUrl' => '/yii2advanced/frontend/web', // ADJUST THIS
'enablePrettyUrl' => true,
'showScriptName' => false,
],
..............................
Messages ¶
In order for this extension to work, messages in frontend/messages must be single quoted!!!
GOOD:
<?php
return array(
'message1' => 'Blah Blah Blah',
'message2' => 'Home',
?>
BAD:
<?php
return array(
"message1" => "Blah Blah Blah",
"message2" => "Home",
?>
Don't use escaped single quotes in messages:
GOOD:
<?php
return array(
'message1' => 'That's all',
?>
BAD:
<?php
return array(
"message1" => 'That\'s all',
?>
frontend/messages must be writable.
..............................
PHP Lite Admin ¶
With PHP Lite Admin you will be able to manage sqlite databases, like the very sqlite database that uses this module.
To log in: Password: 123456
Note: If you update the password in the Profile section, PHP Lite Admin password will be changed automatically too. Therefore, backend/web/lib/phpliteadmin must be writable.
..............................
Extplorer ¶
To log in Extplorer: admin / admin
..............................
PHPMyAdmin ¶
PHPMyAdmin is about 30 MB of size. If you feel that you won't use it, you can just delete the folder.
Donations ¶
Donations are welcome. Thanks for your support!!!
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.