No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: If you don't have time to change your server configs, why don't you try sending the requests in a staggered manner, one at a time. Each request's callback can initiate the next request in the sequence, which would mean your server only has to respond to one request at a … | |
Re: I'll try to be clear as well - The only thing I'm not going to post is an AJAX library. You can find one by searching Google for "AJAX function". Once you have your AJAX library included, everything else is nearly copy+paste. You will have to change the AJAX interaction … | |
Re: The error is due to the "/" before "images", which causes PHP to look in another directory. You should use: [code] chmod("./images",0755); [/code] Also, almostbob is correct, 755 is sufficient to run your image upload script (unless you're using some non-standard means of transferring the image, in which case you … | |
Re: It looks like the HTML you are outputting for your form must be incorrect Check that you are successfully outputting: [code] <input type="file" name="cfile[1]" /> <input type="file" name="cfile[2]" /> <input type="file" name="cfile[3]" /> <input type="file" name="cfile[4]" /> <input type="file" name="cfile[5]" /> [/code] ![]() |
The End.