-
Notifications
You must be signed in to change notification settings - Fork 27
Settings Management System ?
Abed Putra edited this page Jan 4, 2020
·
1 revision
Please check this video, how to install the system https://www.youtube.com/watch?v=s8pZl5UoT40
- Settings Database go to (application\config\database.php)
'hostname' => 'localhost', // your hostname
'username' => '', // your username DB
'password' => '', // your password DB
'database' => '', // your DB name
- Settings Config go to (application\config\config.php)
//Link URL
$config['base_url'] = 'http://adminweb.com/admin/';
// Sent email from:
$config['register'] = '[email protected]';
$config['forgot'] = '[email protected]';
- Settings ReCAPTCHA.php (application\libraries\Recaptcha.php)
private $dataSitekey = ""; //Your SiteKey`
private $lang = "en"; //Lang ReCAPTCHA
public $secret = ''; //Secret
- Finished