Jump to content

[SOLVED] Upload Script Directory Change


biwerw

Recommended Posts

I'm using the following script to upload files. I can not figure out how to change the directory...

 

The folder is called "lgl-up" and is inside the folder where the script is located. I tried using chdir but couldn't get it to work correctly.

 

<?php
   // Edit upload location here
   $destination_path = getcwd().DIRECTORY_SEPARATOR;

   $result = 0;
   
   $target_path = $destination_path . basename( $_FILES['myfile']['name']);

   if(@move_uploaded_file($_FILES['myfile']['tmp_name'], $target_path)) {
      $result = 1;
   }
   
   sleep(1);
?>

<script language="javascript" type="text/javascript">window.top.window.stopUpload(<?php echo $result; ?>);</script>   

 

Any help appreciated.

 

Thanks.

Link to comment
Share on other sites

If you are trying to upload to the same directroy or a derectory below the current php file you are in you can just use it's name:

 

   // Edit upload location here

   $result = 0;
   
   $target_path = getcwd()."/lgl-up/". basename( $_FILES['myfile']['name']);
   // This can also just be "lgl-up/" . basename( $_FILES['myfile']['name']);

   if(@move_uploaded_file($_FILES['myfile']['tmp_name'], $target_path)) {
      $result = 1;
   }
   
   sleep(1);

 

try that.

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.