|
Posted by rob on 08/01/07 20:08
On Aug 1, 4:03 pm, ELINTPimp <smsi...@gmail.com> wrote:
> On Aug 1, 3:56 pm, rob <r...@rawb.net> wrote:
>
> > I'm running PHP 5.2.3 via fastcgi. When I upload one file via a form,
> > it works perfectly. When I try to upload two files, however, I get the
> > 'Connection Interrupted / The network link was interrupted while
> > negotiating a connection. Please try again.' message. The file sizes
> > aren't an issue as I checked the max post size, etc.
>
> > Anyone have any ideas what's wrong?
>
> Can I see your <form> code, please?
<form action="/my/url" method="post" enctype="multipart/form-data">
<label for="layout_name">Layout Name: *</label>
<input type="text" name="layout_name" value="" /><br />
<label for="file_thumbnail">Thumbnail Image: *</label>
<input type="file" name="file_thumbnail" /><br />
<label for="file_background">Background Image:</label>
<input type="file" name="file_bg" /><br />
<label for="file_contact_table">Contact Table Image:</label>
<input type="file" name="file_contact_table" /><br />
<label for="file_ext_network">Extended Network Image:</label>
<input type="file" name="file_ext_network" /><br />
<label for="layout_code">Layout CSS Code: *</label>
<textarea name="layout_code" rows="10" cols="40"></textarea>
<label for="submit"></label>
<input type="submit" name="submit" value="I'm done - submit my
layout!" />
</form>
[Back to original message]
|