不能上传大于75kb的图片


Cannot upload image above 75 kb

我成功上传了一张小于70kb的图片到服务器上。管理服务器cpanel视图已经设置php.ini文件

      max_upload =2000mb 
      max-exe-time = 300  
     max input time =600 

n php.ini文件一切正常

我的问题是70kb以上的图像无法移动临时目录我不能理解我使用zend框架和Java脚本使用

服务器错误日志显示如下错误

[Thu Jun 20 20:53:32 2013] [error] [client 59.164.48.115] PHP Fatal error:  Uncaught exception 'Zend_Controller_Response_Exception' with message 'Cannot send headers; headers already sent in /home/indepet/application/modules/cms/controllers/ProductController.php, line 1' in /home/indepet/library/Zend/Controller/Response/Abstract.php:321'nStack trace:'n#0 /home/indepet/library/Zend/Controller/Response/Abstract.php(148): Zend_Controller_Response_Abstract->canSendHeaders(true)'n#1 /home/indepet/library/Zend/Controller/Action/Helper/Redirector.php(223): Zend_Controller_Response_Abstract->setRedirect('/index/home', 302)'n#2 /home/indepet/library/Zend/Controller/Action/Helper/Redirector.php(301): Zend_Controller_Action_Helper_Redirector->_redirect('/index/home')'n#3 /home/indepet/library/Zend/Controller/Action/Helper/Redirector.php(381): Zend_Controller_Action_Helper_Redirector->setGotoSimple('home', 'index', NULL, Array)'n#4 /home/indepet/library/Zend/Controller/Action/Helper/Redirector.php(502): Zend_Controller_Action_Helper_Redirector->gotoSimple('home', 'index', NULL, Array)'n#5 [internal fun in /home/indepet/library/Zend/Controller/Response/Abstract.php on line 321, referer: my site name

有时100和100 KB以上的图像文件再次上传成功我是尝试图像上传以下错误显示

另一个疑问

这个错误与上传大小无关,相反,Zend试图在已经呈现的内容之后打印标题(可能是因为存在错误并且它试图重定向)。检查视图控制器中可能输出的任何东西。文件末尾的空白很容易被忽略——实际上,由于这个原因,最好不要在文件末尾使用结束PHP标记?>