How large is the file you're uploading? Maybe you're exceeding the limits of your php config. Here's a demo page that shows a vardump of the $_FILES object:
http://www.malsup.com/jquery/form/file/test.php Mike On 10/18/07, micha149 <[EMAIL PROTECTED]> wrote: > > I have the same Problem to.... The Plugin loads the file succesfully > to the server. I can trac it with the php modul "upload progress" to. > But it doesent appear in $_FILES. All other form fields are listet in > $_POST corectly. > > Best regards > Mike > > > On 17 Okt., 04:08, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > dgt, this all looks fine. Do you have an demo page that shows the > > problem in action? > > > > > <script type="text/javascript"> > > > $(document).ready(init); > > > > > function init(){ > > > $("#addImage").ajaxForm(function(){alert("Submit Success");}); > > > } > > > > > </script> > > > > > <form action = "node/add/image" method="post" id = "addImage"> > > > > > <label for="edit-title">Title: </label> > > > <input type="text" maxlength="128" name="title" id="edit-title" > > > size="60" value="" class="form-text required" /> > > > > > <label for="edit-image">Image: </label> > > > <input type="file" name="files[image]" class="form-file" id="edit- > > > image" size="40" /> > > > > > <label for="edit-body">Body: </label> > > > <textarea cols="60" rows="5" name="body" id="edit-body" class="form- > > > textarea"></textarea> > > > > > <input type="submit" name="op" id="edit-submit" value="Submit" > > > class="form-submit" /> > > > </form> > >