Talk about writing modules and plugins for CMS Made Simple, or about specific core functionality. This board is for PHP programmers that are contributing to CMSMS not for site developers
The only reason method.install.php would not get executed is if you have an Install() method in your xxxx.module.php
file.
In mordern modules you should not have the following methods in your xxxxx.module.php file
Install()
Upgrade()
Uninstall()
if you take these methods out, the method..php files will be executed.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
-------------------- If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
There are methods for showing and displaying errors already in the module (though they aren't well documented).
I use die(__FILE__) statements everywhere when I need to test that the program is actually reaching my code.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
-------------------- If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.