Saya memiliki Magento CE 1.9.2.4 diinstal bersama dengan tambalan (5377.1533.478 dll. Hampir semua tambalan).
Pertanyaan ini juga mengungkapkan masalah yang mungkin / pasti terjadi dalam modul khusus apa pun yang melibatkan unggahan Gambar di bagian khusus mereka, bukan hanya masalah inti magento.
- Sekarang setelah saya menginstal patch 8788 terbaru melalui command-line, saya tidak dapat membuka halaman "Tambah / Edit" pada modul kustom saya, yang berfungsi dengan baik sebelum instalasi 8788.
Saya mendapatkan kesalahan di bawah ini ketika saya mencoba membuka halaman "Tambahkan Banner Baru" dari modul saya:
Kesalahan fatal: Panggil ke fungsi anggota setUrl () pada non-objek di /home/site_user/public_html/app/code/community/My/Module/Block/Adminhtml/Banner/Add/Tab/Image.php di baris 57
Garis penyebabnya adalah sebagai berikut:
$this->getUploader()->getConfig()->setUrl(Mage::getModel('adminhtml/url')->addSessionParam()->getUrl('*/*/image'))
- Juga saya tidak dapat melihat gambar produk yang sudah diunggah di
Catalog > Manage Products > Any product > Images
bagian admin .
Di bawah ini adalah Mage_Adminhtml_Block_Media_Uploader
kelas inti yang dipanggil.
<?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');
}
}
Siapa pun beri tahu saya cara memperbaikinya dengan perubahan kode sesedikit mungkin.
getUploader
metode ini?