Welcome Guest, Not a member yet? Register   Sign In
set_cookie not setting cookie
#12

[eluser]Jim Higgins[/eluser]
Well, the xss clean is built into a few of the Code Igniter functions/classes. So, depending on how you end up setting and getting your cookie, you can run it several different ways. Here are some examples from the User Guide...

Code:
// Example 1
$this->input->cookie('cookie_name', TRUE); // <-- the TRUE optional parameter means you want CI to run xss_clean on it

// Example 2
$data = $this->input->xss_clean($data); // <-- here you could pass a variable containing your cookie data

// Example 3
$my_cookie = get_cookie('some_cookie', TRUE); // <-- the TRUE optional parameter means you want CI to run xss_clean on it

So, as you can see there are a few ways to run xss clean. You can also set CI to run it automatically globally throughout the site...

If you want the filter to run automatically every time it encounters POST or COOKIE data you can enable it by opening your application/config/config.php file and setting this:

Code:
$config['global_xss_filtering'] = TRUE;


There is some info on xss clean in the CI documentation in a few places...

http://ellislab.com/codeigniter/user-gui...input.html
http://ellislab.com/codeigniter/user-gui...urity.html
http://ellislab.com/codeigniter/user-gui...elper.html


Messages In This Thread
set_cookie not setting cookie - by El Forum - 03-12-2008, 08:30 AM
set_cookie not setting cookie - by El Forum - 03-12-2008, 08:34 AM
set_cookie not setting cookie - by El Forum - 04-01-2008, 07:17 PM
set_cookie not setting cookie - by El Forum - 04-01-2008, 08:14 PM
set_cookie not setting cookie - by El Forum - 04-01-2008, 08:49 PM
set_cookie not setting cookie - by El Forum - 04-01-2008, 08:55 PM
set_cookie not setting cookie - by El Forum - 04-01-2008, 09:02 PM
set_cookie not setting cookie - by El Forum - 04-01-2008, 09:04 PM
set_cookie not setting cookie - by El Forum - 06-26-2008, 05:38 PM
set_cookie not setting cookie - by El Forum - 06-26-2008, 05:59 PM
set_cookie not setting cookie - by El Forum - 06-26-2008, 07:12 PM
set_cookie not setting cookie - by El Forum - 06-26-2008, 09:29 PM
set_cookie not setting cookie - by El Forum - 06-26-2008, 09:40 PM
set_cookie not setting cookie - by El Forum - 02-02-2009, 02:14 AM
set_cookie not setting cookie - by El Forum - 02-02-2009, 02:20 AM
set_cookie not setting cookie - by El Forum - 02-02-2009, 02:51 AM
set_cookie not setting cookie - by El Forum - 02-04-2009, 06:09 AM
set_cookie not setting cookie - by El Forum - 06-07-2009, 06:27 AM
set_cookie not setting cookie - by El Forum - 06-08-2009, 12:32 PM
set_cookie not setting cookie - by El Forum - 06-29-2009, 02:12 AM
set_cookie not setting cookie - by El Forum - 08-20-2009, 10:05 PM
set_cookie not setting cookie - by El Forum - 08-31-2010, 01:20 AM
set_cookie not setting cookie - by El Forum - 08-31-2010, 01:38 AM
set_cookie not setting cookie - by El Forum - 08-31-2010, 10:10 AM
set_cookie not setting cookie - by El Forum - 03-04-2011, 09:15 AM
set_cookie not setting cookie - by El Forum - 06-28-2012, 08:25 AM
set_cookie not setting cookie - by El Forum - 06-28-2012, 10:01 AM
set_cookie not setting cookie - by El Forum - 06-28-2012, 12:10 PM



Theme © iAndrew 2016 - Forum software by © MyBB