本帖最后由 bbangry 于 2017-9-15 14:36 编辑
服务器:windows server 2008环境:APACHE2.4 PHP5.3 Mysql5.6
操作:上传图片提示以下错误!
Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at admin@example.com to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log. ==============================================
PS:不知道为什么不能回复此主题,内部错误。
只好在这里写解决方案了。
==============================================
APACHE2.4上传大小限制默认值为128KB,需要手动设置。
解决方案:编辑APACHE的httpd.conf文件,添加一行:MaxRequestLen 10240000即可。意为上传文件最大限制为10M。可以根据需求调大或调小。
|