Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/andhikayuana/rental-motor
- Owner: andhikayuana
- Created: 2015-10-29T13:53:22.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-11T09:14:34.000Z (about 9 years ago)
- Last Synced: 2023-02-27T12:01:59.532Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 1.61 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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