A simple Blog application for How Framework.
- Apache Web Server
- PHP 5.3.2 or above
- MySQL
-
storagefolder need to have writable permission.chmod -Rf 777 storage/ -
Copy and edit
application/config/application.sample.phptoapplication/config/application.php -
Copy and edit
application/config/database.sample.phptoapplication/config/database.php -
Create a new database, we suggest to use MySQL
create database howframework_laravel. -
Update database configuration based on you MySQL configuration in
application/config/database.php:'mysql' => array( 'driver' => 'mysql', 'host' => 'localhost', 'database' => 'howframework_laravel', 'username' => 'root', 'password' => '', 'charset' => 'utf8', 'prefix' => '', ), -
Run
php artisan migrate:installto run migration table installation. -
Run
php artisan migrateto update you're database to latest migration.
You can access the application from http://localhost/laravel/public/, change localhost/laravel to whatever you set in your environment.