Attachment Upload Error on Windows starting in 2.4.0

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
tonylacey
Posts: 1
Joined: Mon Sep 10, 2012 8:34 pm

Attachment Upload Error on Windows starting in 2.4.0

Post by tonylacey »

Script URL: Intranet
Version of script: 2.4.1
Hosting company: Internal
URL of phpinfo.php: internal
URL of session_test.php: internal
What terms did you try when SEARCHING for a solution: hesk attachment error file upload failed try smaller

Write your message below:

Hi,
Running on a Windows 2008 R2 Standard.
HESK version: 2.4.1 - HESK is up to date
PHP version: 5.3.6
MySQL version: 5.1.52-community
/hesk_settings.inc.php Exists, Writable
/attachments Exists, Writable

Getting an error when either Admin or outside users try to upload files...
"File upload failed, try with a smaller or no file attachment."
Version 2.3.9 worked fine. Just started happening with upgrade to 2.4.0. I tried increasing Max upload settings in php, I opened up all directories in hesk to everyone with full permissions. Still gave me this error.

Finally tracked it down to /inc/attachments.inc.php, these lines that were added in 2.4.0 I believe:

Code: Select all

    // Does the temporary file exist? If not, probably server-side configuration limits have been reached
    if ( ! file_exists($_FILES['attachment']['tmp_name'][$i]) )
    {
		return hesk_fileError($hesklang['fnuscphp']);
    }
I commented all this out and everything works again. If you need anything else from me please let me know and thank you very much for an excellent product!

Tony
Klemen
Site Admin
Posts: 10147
Joined: Fri Feb 11, 2005 4:04 pm

Re: Attachment Upload Error on Windows starting in 2.4.0

Post by Klemen »

Looks like your server either doesn't set $_FILES['attachment']['tmp_name'] paths correctly or doesn't allow PHP to check if the temporary file exists.

Thanks, will keep this in mind if anyone else has similar problems.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Post Reply