Hi.
I am new to codeigniter. I developed one application with codeigniter and facebox. In the home page when I click the login, the the facebox will open the login view. Its everything working well on my laptop. When I insatall and try with my new physiacal server (windows 2008). The login view not loading into the facebox. The facebox gif files only loading. I just want to load the login view into the facebox. I have faced the same issue od windows server 2003 also. Can anyone please help me on this issue. Thanks
//mycode:
//controller:
function Authenticate()
{
parent::Controller();
}
function index()
{
}
function loginview()
{
$this->load->view(‘mapp_login’);
}
function login()
{
$data = array();
$data[‘user’] = $this->input->post(‘user’);
$data[‘password’] = $this->input->post(‘password’);
if ($data[‘user’])
{
$secure = $this->session->login($data[‘user’],$data[‘password’]);
if ($secure)
{
redirect(’/mapp/’);
}
else
{
show_error(‘Bad User Name or Password’);
}
}
else
{
redirect(’/mapp/’);
}
}
function logout(){
$this->session->logout();
redirect(’/mapp/’);
}
}
/* End of file authenticate.php /
/ Location: ./system/application/controllers/authenticate.php */
//——————————————————-
//view mapp_login
Login System
Login here if you’re a student or teacher
<label>User Name
<span class=“small”>Your NRIC Number</span>
</label>
<input type=“text” name=“user” id=“user” />
<label>Password
<span class=“small”>Your Date of Birth
(e.g. DDMMYY)
<button type=“submit” id=“login_btn”>Login</button>
<div class=“spacer”></div>
<?php echo form_close(); ?>
// home page
MAPP
config->item(‘base_url’) ?>www/” >
[removed][removed]
images/banner.jpg
<div>
<ul class=“TopNav”>
<li class=“Left”></li>
<li id=“LinkHome”><?php echo anchor(‘mapp/’,’<span>Home</span>’);?></li>
<li class=“Line”></li>
<li id=“LinkLogin”><span>Login</span></li>
<li class=“Right”></li>
</ul>
</div>
<div class=“Reset”></div>
</div>