自定义错误消息不显示错误,它只显示空白页而不是错误消息
这是我的控制器:
public function daftar(){
$this->form_validation->set_rules('email','Email','required');
$this->form_validation->set_rules('nama','Nama','required');
$this->form_validation->set_rules('pass','Password','required');
$this->form_validation->set_rules('passconf','PasswordConf','required|matches[pass]');
if($this->form_validation->run()==FALSE){
$this->form_validation->set_message('passconf','the password doesnt match');
}
else{
redirect('lowongan/daftar_employer');
}
}
}