I met a php issue when uploading folder or files on the xampp's apache of ubuntu server:
I created a specify FTP group and user with the folder:
Group:User = ABC:abc_user the root folder of the group = /htdocs/ABC/uploads
Put the program to the folder:
/htdocs/ABC/upload.php
And chown-ed:
sudo chown -R abc_user:ABC /htdocs/ABC
The main program will upload the create sub-folders and files on the /uploads:
function create_folders($dir) {
return is_dir($dir) or ( create_folders(dirname($dir)) and mkdir($dir));
}
move_uploaded_file($tmp_filename, $fileLocation)
The program works and can be uploaded the folders and files :).
However, I found the folders and files, they are under the group:user(1:1).
I tried google the solutions and run some script to do self-test.
Added a test.php on the folder and chown-ed again:
Got the result:
I was confused why it was 'daemon' and group:user was 1:1, not my group:user.
So I tried in another way to seek any things in the server side, the xampp setting part,
and found out a some kind of things on the httpd.conf:
Then I tried to change group:user:
Finally,I uploaded again and the group:user under the ABC:abc_user!!!!
But.....There was a problems that XAMPP said it cannot not save session if I'm using session for some programs :(....
Any talent have good idea? :)
Thanks & Regards.