So, I am trying to run setup script with my module. (Magento 1.7) I have my config.xml modules
<?xml version="1.0" encoding="UTF-8"?> <config> <modules> <Sulman_Custompermissions> <version>1.0.0.0</version> </Sulman_Custompermissions> </modules> <global> <resources> <mymodule_setup> <setup> <module>Sulman_Custompermissions</module> </setup> </mymodule_setup> </resources> </global> </config>
This is my file structure for installing the script: / app / code / local / Sulman / Custompermissions / sql / mymodule _setup / install-1.0.0.0.php
Then in my install-1.0.0.0.php script the following just executes:
die('here');
The problem is that the installation of the script never starts (nothing dies). but there is a row correctly inserted into the core_resource table ... Any hints? Thanks
(ps if there is an entry in the core_resource table, it is deleted before I try to run the script)
source share