benabook
Karma: 0
|
Re:This File was Unspecified - when uploading thumbs - 2008/06/20 18:34
Registered just to let you know I found this when I had the same error (hope it helps):
If you get an error message about "file unspecified" when you attempt an upload, this means that the basic file upload mechanism in your web server is not working correctly. The most likely cause is that the file was larger than the maximum size configured in PHP. You may be able to change your PHP configuration, or you may need to consult your host.
http://forum.mamboserver.com/showthread.php?t=5444
Basically, you need to change the following entries in /etc/php.ini
upload_max_filesize and post_max_size
Make sure your upload size is not larger than your max size.
My original post_max_size was set to 2M and I had to change it to:
post_max_size = 16M
Post edited by: benabook, at: 2008/06/20 18:58
|