ฉันมีMagento CE 1.9.2.4ติดตั้งพร้อมกับแพทช์ (5377,1533,4788 ฯลฯ แพทช์เกือบทั้งหมด)
คำถามนี้ยังแสดงให้เห็นถึงปัญหาที่อาจเกิดขึ้น / แน่นอนในโมดูลที่กำหนดเองใด ๆ ที่เกี่ยวข้องกับการอัปโหลดภาพในส่วนที่กำหนดเองของพวกเขามากกว่าปัญหาวีโอไอพีหลัก
- ตอนนี้หลังจากฉันติดตั้งแพ็ตช์ล่าสุด 8788 ผ่านบรรทัดคำสั่งฉันไม่สามารถเปิดหน้า "เพิ่ม / แก้ไข" ของโมดูลที่กำหนดเองซึ่งทำงานได้ดีก่อนการติดตั้ง 8788
ฉันพบข้อผิดพลาดด้านล่างเมื่อฉันพยายามเปิดหน้า "เพิ่มแบนเนอร์ใหม่" ของโมดูลของฉัน:
ข้อผิดพลาดร้ายแรง: การเรียกใช้ฟังก์ชันสมาชิก setUrl () บนวัตถุที่ไม่ใช่ใน /home/site_user/public_html/app/code/community/My/Module/Block/Adminhtml/Banner/Add/Tab/Image.php ที่บรรทัดที่ 57
บรรทัดผู้ร้ายดังต่อไปนี้:
$this->getUploader()->getConfig()->setUrl(Mage::getModel('adminhtml/url')->addSessionParam()->getUrl('*/*/image'))
- นอกจากนี้ฉันไม่เห็นภาพผลิตภัณฑ์ที่อัปโหลดแล้วใน
Catalog > Manage Products > Any product > Images
ส่วนผู้ดูแลระบบ
ด้านล่างเป็นMage_Adminhtml_Block_Media_Uploader
ชั้นแกนที่ถูกเรียกว่า
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magento.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magento.com for more information.
*
* @category Mage
* @package Mage_Adminhtml
* @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Adminhtml media library uploader
*
* @category Mage
* @package Mage_Adminhtml
* @author Magento Core Team <core@magentocommerce.com>
*/
/**
* @deprecated
* Class Mage_Adminhtml_Block_Media_Uploader
*/
class Mage_Adminhtml_Block_Media_Uploader extends Mage_Uploader_Block_Multiple
{
/**
* Constructor for uploader block
*/
public function __construct()
{
parent::__construct();
$this->getUploaderConfig()->setTarget(Mage::getModel('adminhtml/url')->addSessionParam()->getUrl('*/*/upload'));
$this->getUploaderConfig()->setFileParameterName('file');
}
}
ทุกคนแจ้งให้เราทราบวิธีแก้ไขปัญหานี้โดยมีการเปลี่ยนแปลงรหัสน้อยที่สุด
getUploader
วิธีการได้ไหม?