Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CodeIgniter - disallowed key characters [duplicate]

Tags:

codeigniter

Possible Duplicate:
CodeIgniter Disallowed Key Characters

I have a bit of an issue with a form I'm trying to submit, its dynamic and the checkbox values come from the database, only problem is that one of the fields has a # and when I try to submit the form, it returns 'disallowed key characters'.

How do i make it ok to submit a # ?

like image 670
BigJobbies Avatar asked May 08 '26 18:05

BigJobbies


2 Answers

It's hardcoded into the Input class in the function _clean_input_keys().

Just create a MY_Input class and override the function.

/**
* Clean Keys
*
* This is a helper function. To prevent malicious users
* from trying to exploit keys we make sure that keys are
* only named with alpha-numeric text and a few other items.
*
* @access   private
* @param    string
* @return   string
*/
function _clean_input_keys($str)
{
    // if ( ! preg_match("/^[a-z0-9:_\/-]+$/i", $str)) <---- DEL
    if ( ! preg_match("/^[#a-z0-9:_\/-]+$/i", $str)) // <----INS
    {
        exit('Disallowed Key Characters.');
    }

    // Clean UTF-8 if supported
    if (UTF8_ENABLED === TRUE)
    {
        $str = $this->uni->clean_string($str);
    }

    return $str;
}
like image 197
Wesley Murch Avatar answered May 10 '26 12:05

Wesley Murch


As per your question it seems that you are using get as a method in the form and because of that it is giving disallowed key characters error.

To allow the character # just add it in the following in your CONFIG file -

$config['permitted_uri_chars'] = '\#';

And now the character # will be allowed in the url.

like image 39
Alpesh Avatar answered May 10 '26 11:05

Alpesh