Hi,

Recently Linux server hosting wordpress users are receiving error message “Missing a Temporary Folder”. I have found the solution to voercome fromt his situation and described it here:

We can easily overcome this problem and for that need to edit php.ini file located in etc/ folder. Uncomment the line upload_tmp_dir and pointing the variable to a folder using an absolute path. In Linux possible steps are:

1) Login into the commnad line to the server as an administrator.
2) create a temporary folder for all apache tasks in your user folder and grant all right to all users:

mkdir mytmp && chmod 777 mytmp

3) Edit php.ini with text editor and set the temporary folder:

upload_tmp_dir = /home/username/mytmp/

save the file and restart apache.

Thanks,

Shane G.

Popularity: 1%

Related posts:
  1. Case Study: Parse error: parse error, unexpected T_STRING in comments.php Case Study: Parse error: parse error, unexpected T_STRING in /home/user/public_html/wp-admin/includes/comments.php...
  2. Case Study – PHP Fatal Error: Out Of Memory Hi, Problem Summary: I am receiving this error message on...
  3. Case Study: Fatal error: Allowed memory size of xxxxxxxx bytes exhausted Hi, I am trying to upload image/video to the post...
  4. Case Study: MySQL Error 28 In wordpress blog Hi, Problem Description: I am running with wordpress 2.7.1 and...
  5. Case Study: HTTP Error: Crunching Error On WordPress Blog Hi, I am receiving HTTP Error – Crinching error on...

Leave a Reply

You must be logged in to post a comment.