Jump to content

Help in File copy/uploading to Internal Web Application


yumico23

Recommended Posts

Hi,

Can anyone advise me on file upload or copying to internal web-application?

I have internal office leave management system for staff to do up their leaves.
Problem is I can't perform a file upload.
I browse any file from my local server and upload it to our LMS webserver and couldn't work.
I tried both --> move_uploaded_file and copy function but couldnt work still.

Is there any other functions that I could try?
Currently the folder permission is drwxr-xr-x
Owner: Root
Group: Root

Please advise..thank you so much!

The codes are:
$numoffile = 5;
// $file_dir = "/var/www/html/gsy/office/doculms/"; to web intranet
// $file_dir = "./doculms/"; to web intranet
//$file_dir = "/home/gsyglobal/htdocs/uploads/"; to web internet


if ($_POST) {
for ($i=0;$i<$numoffile;$i++) {
if (trim($_FILES['myfiles']['name'][$i])!="") {
$newfile = $file_dir.$_FILES['myfiles']['name'][$i];
echo "Nwe File:". $newfile;
move_uploaded_file($_FILES['myfiles']['tmp_name'][$i], $newfile);
$j++;
}
}
}
if (isset($j)&&$j>0) print "Your file(s) has been uploaded.<br>";
print "<form method='post' enctype='multipart/form-data'>";
for($i=0;$i<$numoffile;$i++) {
print "<input type='file' name='myfiles[]' size='30'><br>";
}
print "<input type='submit' name='action' value='Upload'>";
print "</form>";
Link to comment
Share on other sites

[code]// $file_dir = "/var/www/html/gsy/office/doculms/"; to web intranet
// $file_dir = "./doculms/"; to web intranet
//$file_dir = "/home/gsyglobal/htdocs/uploads/"; to web internet[/code]

Have you commented $file_dir just for this post or have you done it in your code too ?
Link to comment
Share on other sites


[code]// $file_dir = "/var/www/html/gsy/office/doculms/"; to web intranet
// $file_dir = "./doculms/"; to web intranet
//$file_dir = "/home/gsyglobal/htdocs/uploads/"; to web internet[/code]

Have you commented $file_dir just for this post or have you done it in your code too ?
[/quote]


HI,

I commented $file_dir after doing the testing.

Also added this code but returned failed. It seems like can't change
the folder permission. Can please advise me what to do?

[code]

  if (!chmod($file_path,0777))
       $message = "change permission to 777 failed.";
  else
    $message = ($result)?"$file_name uploaded successfully." :
               "Somthing is wrong with uploading a file.";

[/code]

Thanks alot!
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.