Ben Magento CE 1.9.2.4 ile birlikte yüklü (5377,1533,4788 vs neredeyse tüm yamalar) yamalar.
Bu soru aynı zamanda, temel magento sorunlarından ziyade, özel bölümlerinde Resim yüklemelerini içeren herhangi bir özel modülde / kesin olarak meydana gelebilecek sorunları ortaya çıkarır.
- Komut satırı üzerinden en son 8788 yamasını yükledikten sonra, 8788 kurulumundan önce iyi çalışan özel modülümün "Ekle / Düzenle" sayfasını açamıyorum.
Modülümün "Yeni Başlık Ekle" sayfasını açmaya çalıştığımda aşağıdaki hatayı alıyorum:
Önemli hata: 57. satırdaki /home/site_user/public_html/app/code/community/My/Module/Block/Adminhtml/Banner/Add/Tab/Image.php içindeki bir nesne üzerinde setUrl () işlevini çağırın
Suçlu hattı aşağıdaki gibidir:
$this->getUploader()->getConfig()->setUrl(Mage::getModel('adminhtml/url')->addSessionParam()->getUrl('*/*/image'))
- Ayrıca önceden yüklenen ürün resimlerini yönetici
Catalog > Manage Products > Any product > Images
bölümünde göremiyorum .
Aşağıda çekirdek Mage_Adminhtml_Block_Media_Uploader
sınıf denilmektedir.
<?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');
}
}
Herkes bunu mümkün olan en az kod değişikliği ile nasıl düzeltebilirim.
getUploader
Lütfen yöntemin içeriğini gönderebilir misiniz ?