Hi, I have set up the install as per the documentation and all appears to work as expected. No errors are thrown, I am using the process.php method to transport files. The progress bar indicates 100% completion but the files do not actually upload to the destination directory. If I change the process.php to debud_process.php I have a log file that is created in the directory but no files that I selected for upload.
Does anyone have any thoughts on what may be causing this?
I am using php5, apache 2.2.x on a windows server and the latest version of java runtime on the client.
JFileUpload not transfering filesRe: JFileUpload not transfering filesHow large is the file you upload ?
Try with a small file first. If it fails then open your php.ini on make sure $file_upload is enabled. If you cannot update your php.ini then try to upload with PUT request. To enable it: <param name="param5" value="httpmethod" /> <param name="value5" value="put" /> |