why does manually setting $_COOKIE not work (for using Flash upload utility) |
[eluser]Chillahan[/eluser]
I am trying to use this Flash upload utility: http://www.element-it.com/multiple-file-...oader.aspx It seems great, even supposedly reads the cookies set and passes them in a POST input. So it comes with this sample code. I've tried putting it in the index bootstrap file, but it still doesn't seem to work. Code: if(isset($_POST['MultiPowUpload_browserCookie'])) Looking in Session library, it does this: Code: $session = $this->CI->input->cookie($this->sess_cookie_name); And all that does is this: Code: function cookie($index = '', $xss_clean = FALSE) So why wouldn't this simple solution of re-writing $_COOKIE in the bootstrap when that special POST field is set work? I know it's getting to the if condition. Next I'll try e-mailing the value it's setting to see what it's getting. |
Messages In This Thread |
why does manually setting $_COOKIE not work (for using Flash upload utility) - by El Forum - 07-04-2011, 08:47 AM
why does manually setting $_COOKIE not work (for using Flash upload utility) - by El Forum - 07-04-2011, 08:55 AM
why does manually setting $_COOKIE not work (for using Flash upload utility) - by El Forum - 07-04-2011, 09:08 AM
why does manually setting $_COOKIE not work (for using Flash upload utility) - by El Forum - 07-04-2011, 09:11 AM
why does manually setting $_COOKIE not work (for using Flash upload utility) - by El Forum - 07-04-2011, 09:15 AM
why does manually setting $_COOKIE not work (for using Flash upload utility) - by El Forum - 07-04-2011, 10:21 AM
why does manually setting $_COOKIE not work (for using Flash upload utility) - by El Forum - 07-04-2011, 10:22 AM
why does manually setting $_COOKIE not work (for using Flash upload utility) - by El Forum - 07-04-2011, 10:26 AM
|