When I activate the module I just created and navigate to the page its on, the page is completely blank, no errors (even in debug mode). Its doing it right away at the line:
defined('_JEXEC') or die('Direct Access to this location is not allowed.');
I've removed that for testing purposes and it then dies at the next line:
require_once(dirname(__FILE__).DS.'helper.php');
I've included the helper file and checked the paths in my module XML config and everything looks good. I've even used the require_once with a direct path map and still have come up empty.
part of the XML:
<files>
<filename module="mod_stocks_data">mod_stocks_data.php</filename>
...
<filename>helper.php</filename>
<filename>tmpl/default.php</filename>
<filename>tmpl/index.html</filename>
What am I missing?
Thanks.