Multiple files upload problem to Centos using PHP

General support questions
Post Reply
chrisrih
Posts: 1
Joined: 2018/03/16 09:50:15

Multiple files upload problem to Centos using PHP

Post by chrisrih » 2018/03/16 09:52:17

Hello to Everyone!

I'm trying to upload multiple files via php to a folder of a DataBase application. I am using Centos 6.9.
So my problem is the following..
When i'm trying to upload a single file the process succeeds! In further details the file goes to a temporary folder and when i press the "confirm" button, the file goes to the "/upload/" folder of my application, as expected!
When on the other hand, i'm trying to upload multiple files, then the files upload to the temporary folder as before, but after pressing the confirm button (of the application), the files does not goes to the "/upload/" folder.

I have to notice that the php code is OK, because the whole process is working perfectly when i'm using Xampp (for Apache and MySQL Server) and Windows!

Thanks for any help...!!

P.S.
The configuration of my php.ini file is

File Uploads ;
;;;;;;;;;;;;;;;;

file_uploads = On

upload_tmp_dir = /var/www/html/neda/tempfolder

upload_max_filesize = 20M

max_file_uploads = 20

Post Reply