나는이 젠토 CE 1.9.2.4가 함께 설치 (5377,1533,4788 등 거의 모든 패치) 패치.
이 질문은 또한 핵심 magento 문제가 아닌 사용자 정의 섹션에 이미지 업로드와 관련된 모든 사용자 정의 모듈에서 발생할 수있는 문제를 보여줍니다.
- 이제 명령 줄을 통해 최신 패치 8788을 설치 한 후 8788 설치 이전에 제대로 작동하던 사용자 지정 모듈의 "추가 / 편집"페이지를 열 수 없습니다.
모듈의 "새 배너 추가"페이지를 열려고하면 아래와 같은 오류가 발생합니다.
치명적인 오류 : 57 행의 /home/site_user/public_html/app/code/community/My/Module/Block/Adminhtml/Banner/Add/Tab/Image.php에있는 비 객체에서 멤버 함수 setUrl () 호출
범인 선은 다음과 같습니다.
$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
방법 의 내용을 게시 할 수 있습니까?