views:

87

answers:

1

Hello

i know that this is a famous question and have been asked many times. but i want to ask if there is any new solution for uplodify and codeigniter problem when we use codeigniter session library. i know that flash doesn't forward browser cookies with its request. and i saw many solutions to send the session data as a parameter with uploading request. but it doesn't seems a real solutions for me.

any help ?

+1  A: 

In application/config/config.php

Set this to false:

$config['sess_match_useragent'] = FALSE;

This will prevent codigniter from attempting to match the Useragent (since flash uses a different useragent to the browser).

DRL