Trying to attach a file to a folder and the following error cames up: Command could not be executed(error 403 Upload Error)
On the log event I got:
Event Details
Type: Errors
Severity: Error
Date: 23/06/2010 9:46 pm
Message: Unhandled Server_Error: 403 Upload Error in /home/e-smith/files/ibays/webissues/html/server/webissues/handler.php on line 108
Stack trace:
#0 /home/e-smith/files/ibays/webissues/html/server/application.inc.php(41): Server_WebIssues_Handler->parseCommand()
#1 /home/e-smith/files/ibays/webissues/html/system/core/application.inc.php(195): Server_Application->execute()
#2 /home/e-smith/files/ibays/webissues/html/system/bootstrap.inc.php(114): System_Core_Application->run()
#3 /home/e-smith/files/ibays/webissues/html/server/webissues/handler.php(242): System_Bootstrap::run('Server_Applicat...', 'Server_WebIssue...')
#4 {main}
User name: Administrator
Host name: 10.1.1.2
Any help will be great. Thanx in advance
Flávio Veras
- Log in to post comments
There are three most likely reasons why a file upload can fail:
- the file size is greater than upload_max_filesize
- the temporary folder doesn't exist
- the temporary folder doesn't have write access
See http://www.php.net/manual/en/features.file-upload.errors.php for more information.
Regards,
Michał
Hi Michał,
You were absolutily right. After I added a /tmp folder to it, WebIssues started to work like a charm.
Thank you very much
Regards,
Flávio Veras
Thanks, this helped me, I had to set limit in the php.ini file of the apcache server.