Question : File Uploads with jQuery Form and jQuery Validation

I am using two plugins for this page: http://www.higherwork.com/featured-job.html

1. jQuery form - http://jquery.malsup.com/form/
2. jQuerry validation - http://bassistance.de/jquery-plugins/jquery-plugin-validation/

One first link I posted, I am using a file upload being sent via AJAX. I have been reading the docs here:

http://jquery.malsup.com/form/#file-upload

When you fill out the form and hit submit, it just seems like it gets sent, but nothing happens. No page response or info pops up on the Console tab of firebug.

Any ideas?

Thanks,

Ryan

Answer : File Uploads with jQuery Form and jQuery Validation

In the form upload page you <input type="file" size="25" name="file" /> but the proccessing page was looking for resume so if you rename file to resume in the upload page and change the file to resume in the proccessing page you should have it.
All the best,
Ian
1:
 $path_info = pathinfo($_FILES['resume']['name']);
Random Solutions  
 
programming4us programming4us