Questions tagged «gd2»

4
1.9.2.0中新的Varien_Image_Adapter_Gd2析构函数的ImportExport问题
有人可以解释一下,Magento CE 1.9.1.0和1.9.2.0之间引入的以下代码有什么用吗? class Varien_Image_Adapter_Gd2: public function __construct() { // Initialize shutdown function register_shutdown_function(array($this, 'destruct')); } /** * Destroy object image on shutdown */ public function destruct() { @imagedestroy($this->_imageHandler); } 添加这两个功能后,我们使用ImportExport接口导入产品库图像的操作停止。该错误是由于内存限制(结果是最大打开文件大小限制)引起的。 我的想法是,导入将无法正确关闭打开的文件。 我还看到destruct()引入了一些空函数(Mage_ImportExport_Model_Import_Adapter_Abstract)-但是扩展这些函数以匹配父级逻辑无济于事。

4
如何解决:“ HEADER ALL SENTY SENT”和GD2?
这是有关如何调试的问题的后续内容:HEADER ALREADY SENT和GD2。具体来说,如何解决以下错误(请注意,第一行已使用以前的调试建议来添加,以跟踪源): 2014-02-04T14:26:06+00:00 DEBUG (7): Cannot send headers; headers already sent in /home/.../lib/Varien/Image/Adapter/Gd2.php, line 133 2014-02-05T16:14:32+00:00 DEBUG (7): HEADERS ALREADY SENT: < pre > [0] /home/.../app/code/core/Mage/Core/Controller/Response/Http.php:52 [1] /home/.../lib/Zend/Controller/Response/Abstract.php:766 [2] /home/.../app/code/core/Mage/Core/Controller/Response/Http.php:83 [3] /home/.../app/code/core/Mage/Core/Controller/Varien/Front.php:188 [4] /home/.../app/code/core/Mage/Core/Model/App.php:354 [5] /home/.../app/Mage.php:683 [6] /home/.../public_html/index.php:87 </ pre > 这个问题是关于如何调试这个问题的。这个问题是关于如何解决它。根据我对该问题的“答案”,并在一个普通的Magento安装上进行了进一步的测试,我可以确认这确实是Magento的核心错误(v1.7.0.2)。 使用标准的Magento页面/块图像管理器仅管理页面或静态块上的图像会导致这些日志。要重现,请打开页面上有图像。页面上每个图像将记录其中之一。打开图像管理器并查看上传的图像-每个显示的图像都会有另一个。 问题似乎出在此功能上,从我的阅读中可以肯定,每当获取CMS图像以在仪表板中显示时,该功能都会导致此错误。 public function display() { header("Content-type: …
8 image  header  gd2 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.