Jump to content

Recommended Posts

In file uploading (through a form usig browse button)

It is not possible to access the temporary folder where tmp file is created.

The file doesnt get uploaded and hence cannot see the uploaded file in the directory.

An error appears as the file doesnot exists in the folder.

i couldnt set the permission also

I use php 4 version. It works fine in local test server. But in main server it doesnt.

 

$file=$_FILES['file_cv']['name'];

$tmpfile=$_FILES['file_cv']['tmp_name'];

if(!empty($file))

{

$uploaddir = "accountantscv/$file";

move_uploaded_file($_FILES["file_cv"]["tmp_name"], $uploaddir);

Link to comment
https://forums.phpfreaks.com/topic/48436-php-file-upload/
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.