There is small bit of code missing from your module
if you have a html or index.php file in that moldule folder open it and see if there any referance like this at the start
|
Code:
|
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
include("header.php");
$index = 0;
OpenTable(); |
Theres also more at the end, but for now let us know if you have that.