Re: [PHP] Can´t upload files bigger than 50KB

2011-03-18 Thread Gotzon Astondoa
I could not find the solution to the problem. I've finally solved by using an applet that uploads the files by FTP. In case anyone needs it, the applet I've used is http://sourceforge.net/projects/zupload For me it was the solution! 2011/3/9 Jim Lucas li...@cmsws.com On 3/9/2011 6:28 AM, Gotzon

Re: [PHP] Can´t upload files bigger than 50KB

2011-03-18 Thread Negin Nickparsa
if i'm not in mistake u can go 2 php.ini n fix it On Fri, Mar 18, 2011 at 6:24 PM, Gotzon Astondoa gaston...@gmail.com wrote: I could not find the solution to the problem. I've finally solved by using an applet that uploads the files by FTP. In case anyone needs it, the applet I've used is

RE: [PHP] Can´t upload files bigger than 50KB

2011-03-09 Thread Jay Blanchard
[snip] 50KB [/snip] Have you checked the upload form itself for max_file_size? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can´t upload files bigger than 50KB

2011-03-09 Thread Gotzon Astondoa
Upload form is OK, I can upload 5MB files in development server. 2011/3/9 Jay Blanchard jblanch...@pocket.com [snip] 50KB [/snip] Have you checked the upload form itself for max_file_size?

Re: [PHP] Can´t upload files bigger than 50KB

2011-03-09 Thread Adam Richardson
Hi Gotzon, I'm wondering if your javascript is timing out. On the development server, is everything local so it's happening close to instantly? If so, it's possible that the latency of your production environment is causing the issue, as it's taking longer to process the request than the ajax

Re: [PHP] Can´t upload files bigger than 50KB

2011-03-09 Thread Gotzon Astondoa
Thank you for your interest Lucas. 2011/3/9 Jim Lucas li...@cmsws.com On 3/9/2011 6:28 AM, Gotzon Astondoa wrote: Hi all: On my website I have an Ajax form. From this form user can upload files. My guess would be that you have an HTML form. Not AJAX OK. The code is

Re: [PHP] Can´t upload files bigger than 50KB

2011-03-09 Thread Jim Lucas
On 3/9/2011 6:28 AM, Gotzon Astondoa wrote: Hi all: On my website I have an Ajax form. From this form user can upload files. My guess would be that you have an HTML form. Not AJAX Server side is a PHP script. This form works properly on my development server. Is this on localhost or is

Re: [PHP] Can´t upload files bigger than 50KB

2011-03-09 Thread Gotzon Astondoa
Hi Adam: I don´t understand well your point. I do some time tests (production environment) uploading files from 1KB to 47 KB, in all of the cases the time is the same (more or less), about 4,5 seconds. The magic size is 48KB, can´t upload files bigger that this :-( 2011/3/9 Adam