Re: [jQuery] Response converted to entities after file upload

2010-02-17 Thread Randall Morgan
You may want to remove the $header method. PHP should send the content-type text/html header by default. Randy On Wed, Feb 17, 2010 at 11:41 AM, Randall Morgan wrote: > A couple of things to try. First, run phpinfo() and look through the > output for anything that could be filtering the output.

Re: [jQuery] Response converted to entities after file upload

2010-02-17 Thread Randall Morgan
A couple of things to try. First, run phpinfo() and look through the output for anything that could be filtering the output. Second, try using double quotes or echo or print() in place of die() and follow with exit. die() does not escape html (at least not on my servers) so I suspect that phpinfo

Re: [jQuery] Response converted to entities after file upload

2010-02-17 Thread Lay András
Hello! On Wed, Feb 17, 2010 at 5:56 PM, Randall Morgan wrote: > Are you using a Php framework? If so, does it do output filtering? If > not, can you show me your Php code? It's a simple PHP code, without any framework. The source code visible, you can simply copy, and check it on your server. N

Re: [jQuery] Response converted to entities after file upload

2010-02-17 Thread Randall Morgan
Are you using a Php framework? If so, does it do output filtering? If not, can you show me your Php code? Randy 2010/2/17 Lay András : > Hi! > > If i have a file upload input in my form, after submit the html codes > in the response data converted to their entities: > > http://bogex.hu/jquery_upl

[jQuery] Response converted to entities after file upload

2010-02-17 Thread Lay András
Hi! If i have a file upload input in my form, after submit the html codes in the response data converted to their entities: http://bogex.hu/jquery_upload_test.php How can I prevent this? Thank you! Lay