Welcome Guest, Not a member yet? Register   Sign In
Overriding config.php ?
#1

[eluser]Unknown[/eluser]
This is my config.php file xss filtering setting.
Code:
$config['global_xss_filtering'] = TRUE;
I would like to change it on runtime as
Code:
$config['global_xss_filtering'] = FALSE;
This function is not working.
Code:
$this->config->set_item('global_xss_filtering', FALSE);
Is it possible? How?
#2

[eluser]Clooner[/eluser]
You will probably have to set the config item before you load the desired library. E.g. when the input library is loaded it sets its own xss flag and works according to that and not the config. Therefor overwrite the setting of the library or change the config setting before loading the library!




Theme © iAndrew 2016 - Forum software by © MyBB