Saya tidak yakin cara memperbarui modul khusus agar berfungsi dengan tambalan SUPEE-6788 , petunjuknya tidak begitu jelas.
Berdasarkan tutorial Alan Storm , saya membuat modul sederhana di generator www.silksoftware.com/magento-module-creator/ untuk pengujian. Ini memiliki halaman khusus di admin yang berfungsi dengan baik, tetapi ketika saya menerapkan perbaikan yang diperlukan di SUPEE-6788, halaman admin menunjukkan 404 kesalahan.
URL dari halaman admin khusus adalah:
localhost / index.php / admin / admin_adminhello / adminhtml_adminhellobackend / index / key / 83f08ec4bddff37e47412e16acc8d3f6 /
Berikut konfigurasi modul:
<config>
<modules>
<Pulsestorm_Adminhello>
<version>0.1.0</version>
</Pulsestorm_Adminhello>
</modules>
<global>
<helpers>
<adminhello>
<class>Pulsestorm_Adminhello_Helper</class>
</adminhello>
</helpers>
<blocks>
<adminhello>
<class>Pulsestorm_Adminhello_Block</class>
</adminhello>
</blocks>
</global>
<admin>
<routers>
<adminhello>
<use>admin</use>
<args>
<module>Pulsestorm_Adminhello</module>
<frontName>admin_adminhello</frontName>
</args>
</adminhello>
</routers>
</admin>
...
Ini controllernya:
/app/code/local/Pulsestorm/Adminhello/controllers/Adminhtml/AdminhellobackendController.php
class Pulsestorm_Adminhello_Adminhtml_AdminhellobackendController extends Mage_Adminhtml_Controller_Action
{
public function indexAction()
{
$this->loadLayout();
$this->_title($this->__("My Test Page Title"));
$this->renderLayout();
}
}
Larutan
Saya mengganti <routers>
bagian berdasarkan instruksi dari tambalan seperti ini (mungkin salah):
<routers>
<adminhtml>
<args>
<modules>
<admin_adminhello after="Mage_Adminhtml">Pulsestorm_Adminhello_Adminhtml</admin_adminhello>
</modules>
</args>
</adminhtml>
</routers>
Tetapi sekarang URL hanya menunjukkan 404 error
:
localhost / index.php / admin / admin_adminhello / adminhtml_adminhellobackend / index / key / 83f08ec4bddff37e47412e16acc8d3f6 /
Bagaimana cara memperbaiki modul dengan benar untuk tambalan baru itu? Apakah saya hanya perlu memperbarui config.xml
atau apakah saya juga perlu mengubah URL halaman admin setelah menerapkan tambalan ini?