codeigniter - Unable to access an error message corresponding to your field name captcha.(captchacheck) -
i ve used solution found here http://www.mahbubblog.com/php/form-validation-callbacks-in-hmvc-in-codeigniter/comment-page-2/#comment-5996 . , working on ci 3.0 on mac, when tried deploying site ubuntu server produces "unable access error message corresponding field name captcha.(captchacheck)". please help... thanks function index(){ $this->load->library('form_validation'); $this->form_validation->set_rules('username', 'user name', 'trim|required|min_length[4]|xss_clean'); $this->form_validation->set_rules('firstname', 'first name', 'trim|required|min_length[4]|xss_clean'); $this->form_validation->set_rules('lastname', 'last name', 'trim|required|min_length[4]|xss_clean'); $this->form_validation->set_rules('email', 'your email', 'trim|required|valid_email'); $this->form_validation->set_rules('password', 'pa...