| Code: |
It appears that NSN Groups has not been configured correctly. The most common cause is that you either have an error in the syntax that is including includes/nsngr_func.php FROM your mainfile.php, or you have not added the NSN Groups code to your mainfile.php. This code must be placed immediately before the closing ?> tag in mainfile.php. So your first 7 lines in mainfile.php must look like this:
if(defined('FORUM_ADMIN')) {
include("../../../includes/nsngr_func.php");
} elseif(defined('INSIDE_MOD')) {
include("../../includes/nsngr_func.php");
} else {
include("includes/nsngr_func.php");
}
?> |