A simple Blog application for How Framework.
- Apache Web Server
- PHP 5.3.2 or above
- MySQL
-
storage
folder need to have writable permission.chmod -Rf 777 storage/
-
Copy and edit
application/config/application.sample.php
toapplication/config/application.php
-
Copy and edit
application/config/database.sample.php
toapplication/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:install
to run migration table installation. -
Run
php artisan migrate
to 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.