Nghe nói hay thử xài cho biết
assets/ contains assets definition
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 basic application
vendor/ contains dependent 3rd-party packages
views/ contains view files for the Web application
web/ contains the entry script and Web resources
The minimum requirement by this project template that your Web server supports PHP 5.6.0.
- Tải nguyên thư mục này về máy
- Tạo database và user cho database đó
- Sử dụng file createtables.sql để tạo các table cần thiết
- Cho Apache host thư mục web, không chép tất cả vào htdocs
- Thiết lập cấu hình database trong yii
Sửa file config/db.php
với các thông tin phù hợp, ví dụ:
return [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=yii2basic',
'username' => 'root',
'password' => '1234',
'charset' => 'utf8',
];
NOTES:
- Tự tạo database trước khi chạy các script tạo table,
- Thiết lập chính xác các thông số
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.