CodeIgniter - Unable to access an error message corresponding to your field name Password.(pword_check)

后端 未结 6 1805
予麋鹿
予麋鹿 2020-12-09 21:53

I am a new to codeIgniter and I just got stuck in the very beginning. I am using HMVC extention and while validating I am getting the following error:

Unable

6条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-09 22:01

    before going to the helper security check on the file application/config/autoload.php add form_validation in librariies

    $autoload['libraries'] = array('form_validation');
    

    and don't forget to add security

    $autoload['helper'] = array('security');
    

    try it

提交回复
热议问题