![]() |
Swfupload with CI problem - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: Swfupload with CI problem (/showthread.php?tid=42193) |
Swfupload with CI problem - El Forum - 05-29-2011 [eluser]Bubiweb[/eluser] Hi there, I'm having problem with integrating SWFupload with CI. When I try to upload a file i get "search=Search..." in my url. I checked params that are passed with firebug and all I got is "search Search..." Can anyone told me what is a problem here? First of all do I need to enable GET method to work with SWFupload in CI? Swfupload with CI problem - El Forum - 05-30-2011 [eluser]alexaaaaaaaaaa[/eluser] the problem is that get it's not very secure if you work with ci use $this->input->post or if you want to get something from the url use $this->uri->segment(2) (index.php/message/dummy) where $this->uri->segment(2) is dummy and so on ... Swfupload with CI problem - El Forum - 05-30-2011 [eluser]Bubiweb[/eluser] Hay, I really don't need to get anything from the uri. Here is the demo page of the thing I want to insert into CI: SWFupload demo. Swfupload with CI problem - El Forum - 05-30-2011 [eluser]alexaaaaaaaaaa[/eluser] ohhh i think that you must use sessions it's kinda hard to remember how i've managed to do that i've been working with a jquery multiple files upload and i can share the code if that will help you somehow. and btw if you get that search=search in the url you must check the url that you'r pointing to the controller where you have the function to upload things. Please share the code here Swfupload with CI problem - El Forum - 05-31-2011 [eluser]Bubiweb[/eluser] Hey I switched to uploadify jquery script with progress bar and it works now. I didn't have to mess around with sessions or anything like that... Swfupload with CI problem - El Forum - 05-31-2011 [eluser]alexaaaaaaaaaa[/eluser] [quote author="Bubiweb" date="1306873681"]Hey I switched to uploadify jquery script with progress bar and it works now. I didn't have to mess around with sessions or anything like that...[/quote] swf upload it was the one with sessions. Great work then try to use also fancyupload from mootools i think it's also a great tool that i use with zend framework. |