Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4117576
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T22:51:07+00:00 2026-05-20T22:51:07+00:00

This sounds like a stupid question but, after uploading a file the file isnt

  • 0

This sounds like a stupid question but, after uploading a file the file isnt in the location php said it would be.

First the simple test page:

<html><body> 
<h1><?=$_FILES['imgup']['tmp_name'];?></h1>
<?
        print_r($_FILES);
?>
<form enctype="multipart/form-data" method="post" action="upload.php">
<input type="file" name="imgup" id="imgup">
<input type="submit">
</form>
</body></html>

Now, the print_r in plain text:

Array ( [imgup] => Array ( [name] => ace.jpg [type] => image/jpeg [tmp_name] => /tmp/phpEdfBjs [error] => 0 [size] => 29737 ) )

So no error, standard looking path, but /tmp has no such file. Further, running a find on my whole system turns up bubkis.

FYI: php.ini has

max_execution_time = 120
file_uploads = On
upload_max_filesize = 2M

and the file I’ve been uploading is 29k

Any thoughts?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T22:51:08+00:00Added an answer on May 20, 2026 at 10:51 pm

    The temporary file is deleted when the PHP script that received it has finished running : it is just a temporary file.

    The PHP script to which you are posting the form — upload.php — should move the temporary file to a non-temporary location, using move_uploaded_file()

    Basically, the idea is :

    • The user uploads a file to your script,
      • That file is stored in a temporary lcoation.
    • Your script works on that file :
      • Checks if the file is OK (content-type, size, …)
    • And if the file is OK, your script moves it to the permanent storage directory (whereever you want)

    If the upload doesn’t finish successfully, or if you don’t move the file somewhere else, the temporary file is automatically deleted.

    As a reference, you should read the following section of the manual : Handling file uploads – POST method uploads

    Quoting the part of it which is related to your problem :

    The file will be deleted from the
    temporary directory at the end of the
    request if it has not been moved away
    or renamed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This sounds like a stupid question, but thought I would post anyway... I am
Sorry if this sounds like a really stupid question, but I need to make
Sounds like a weird question, but say I have something like this: $.post( /myajax.php,
This sounds like a stupid question (to me), but I've searched and I can't
This probably sounds like a stupid question, but I'm going to give it a
This sounds like a stupid question but i can't figure it out for the
This might sound like a stupid question, but google didn't help me. Is there
This sounds like a look-up-in-the-manual question to me, but I can't find it. Suppose
I know this sounds like a really obvious question, but it's proving harder to
I'm sure this sounds like a n00b question, but how do I add sub

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.