I am following this tutorial from Alan Storm and am struggling with the setup part of the instructions.
My config file: app/code/local/Alan/Storm/etc/config.xml
<modules>
<Alan_Storm>
<version>0.1.0</version>
</Alan_Storm>
</modules>
<resources>
<storm_setup>
<setup>
<module>Alan_Storm</module>
<class>Alan_Storm_Model_Resource_Mysql4_Setup</class>
</setup>
<connection>
<use>core_setup</use>
</connection>
</storm_setup>
</resources>
I have also put the required code into app/code/local/Alan/Storm/sql/storm_setup/mysql4-install-0.1.0.php
echo 'Running this upgrade: ' . get_class($this) . "\n <br /> \n";
die("Exit for now");
The tutorial states that when loading a page the above file will run and display the echo command on the screen. This does not happen. I have looked in my database and have found storm_setup, so it has successfully ran, but can someone explain why I had no output on the screen?