Muat turun CodeIgniter.
Letak dalam folder htdocs/
Ubah autoload.php
- Masukkan 'url', 'file' ke dalam $autoload['helper'] = array('url', 'file');
Ubah config.php
- buang index.php dalam $config['index_page'] = '';
- gantikan $config['base_url'] = ''; dengan
Muat turun Twitter Bootstrap.
http://www.andyhawthorne.co.uk/codeigniter-and-twitter-bootstrap/
Letak dalam folder htdocs/
Ubah autoload.php
- Masukkan 'url', 'file' ke dalam $autoload['helper'] = array('url', 'file');
Ubah config.php
- buang index.php dalam $config['index_page'] = '';
- gantikan $config['base_url'] = ''; dengan
if ($_SERVER['SERVER_PORT'] == '443' OR $_SERVER['SERVER_PORT'] == '80')
{
$_base_path = $_SERVER['SERVER_NAME'].str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
if ($_SERVER['SERVER_PORT'] == '443')
{
$config['base_url'] = "https://".$_base_path;
}
else
{
$config['base_url'] = "http://".$_base_path;
}
}
else
{
$config['base_url'] = "http://".$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT'].str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
}
Muat turun Twitter Bootstrap.
http://www.andyhawthorne.co.uk/codeigniter-and-twitter-bootstrap/