Error when uploading images

Permalink
Hi,

We've developed an error when uploading images to the file manager:

Concrete\Core\Error\UserMessageException: Missing a temporary folder. in /home/smoothstay/public_html/concrete/controllers/backend/file.php:492 Stack trace: #0 /home/smoothstay/public_html/concrete/controllers/backend/file.php(197): Concrete\Controller\Backend\File->handleUpload('file') #1 [internal function]: Concrete\Controller\Backend\File->upload() #2

Any idea what wrong here?

 
mnakalay replied on at Permalink Reply
mnakalay
When uploading files, PHP will first upload them to a temporary folder. It seems the temporary folder your PHP is set to use doesn't exist so it can't upload the file.

If you do a php_info() on your website, look for the value of upload_tmp_dir and check that it does exist on your server. If not, create it.

It should solve your problem