Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andhikayuana/rental-motor

aplikasi rental motor menggunakan panada
https://github.com/andhikayuana/rental-motor

Last synced: about 2 months ago
JSON representation

aplikasi rental motor menggunakan panada

Awesome Lists containing this project

README

        

# rental-motor
---------------------
1.create `.htaccess` on app/ directory
------------------------------------
```
RewriteEngine On
RewriteBase /your_root_web/app/
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
```
2.create `db_rental_motor` databse using phpmyadmin or whatever and import `db_rental_motor.sql` on `analisis/`
------------------------------------

3.create `database.php` on app/config directory
------------------------------------
```
array(
'driver' => 'mysqli',
'host' => 'your_host',
'port' => 3306,
'user' => 'your_username',
'password' => 'your_password',
'database' => 'db_rental_motor',
'tablePrefix' => '',
'charset' => 'utf8',
'collate' => 'utf8_general_ci',
'persistent' => false,
),
);
```
-----------------------------------
Created By Yuana, Andhika 2015