I have a file called x509_keys.php which I am using to generate the public/private key pair. Just trying to require it in the module.
<?php
//ini_set( 'error_reporting', E_ALL );
//ini_set( 'display_errors', true );
defined("_VALID_ACCESS") || die('Direct access forbidden'); // - security feature
require_once 'x509_keys.php';
class Custom_XeroConnect extends Module { // - notice how the class name represents its path
...
without the require_once line the module runs fine. With it it stops dead with no visible error message but none of the usual output.
The file is in the same folder as the module. Does the Epesi Autoloader do something to change the normal path searched for modules?
Regards
Glenn