Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mzaini30/personal-blog
Website personal blog sederhana
https://github.com/mzaini30/personal-blog
blade codeigniter mysql php
Last synced: 12 days ago
JSON representation
Website personal blog sederhana
- Host: GitHub
- URL: https://github.com/mzaini30/personal-blog
- Owner: mzaini30
- License: mit
- Created: 2019-05-12T12:43:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-12T12:44:37.000Z (almost 6 years ago)
- Last Synced: 2024-12-01T02:11:31.472Z (2 months ago)
- Topics: blade, codeigniter, mysql, php
- Language: PHP
- Size: 2.56 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: license.txt
Awesome Lists containing this project
README
# Upload
- Upload semua file ini ke hosting
- Upload `blog.sql` ke database# Setting
- Menyesuaikan alamat domain
- Buka `application/config/config.php`
- Perhatikan pada```php
$config['base_url'] = 'http://localhost/blog/';
```Bagian tersebut disesuaikan dengan alamat domain
- Menyesuaikan database
- Buka `application/config/database.php`
- Perhatikan pada```php
$db['default'] = array(
'dsn' => '',
'hostname' => 'localhost',
'username' => 'root', // username database
'password' => 'mysql', // password database
'database' => 'blog', // nama database
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);
```