<the beef>
So, I finally figured out what the scoop is -- (and this relates to another thread on this forum about commenting out header.php and mainfile.php) -- when you allow Roster to generate your config file it "COPIES" your page layout into the config file. I like fricken just sucks it down and into it so you can't really tell the difference. "THIS IS BAD" since you have to be the admin to actually install this module in the first place, thus it sucks down your admin layout of the page and makes everyone think they're logged in as the admin and they're like wtf.
<the fix>
DO NOT COMMENT OUT YOUR header.php OR mainfile.php REFERENCES! These are there for a reason (as I suspected). Instead, open your conf.php and remove "EVERYTHING" except for the following section of code:
- Code: Select all
<?php
/******************************
* AUTO-GENERATED CONF FILE
* DO NOT EDIT !!!
******************************/
$db_host = "server";
$db_name = "database";
$db_user = "databaseuser";
$db_passwd = "databasepassword";
$db_prefix = "roster_";
$module_name = basename(dirname(__FILE__));
$roster_dir = "modules/" . $module_name;
define('ROSTER_INSTALLED', true);
?>
That's all folks, should work like a charm after this. Though sadly, it still does not solve the damn web-based guildprofile upload issue.... =\
Cheers!