Im tring to get joshpets generic page mod to work in another folder but the links are not working right. I assume its something as simple as changing the paths but I tried several variants and still cant get it to work.
as it is now, the generic.php file has to go in the main forum folder. and then the generic.tmpl file goes in the templates folder. What I want to do is place the generic.php file in forum/halo2/members folder and the generic.tmpl file in forum/halo2/membertemps. so if someone went to myforum/halo2/members/generic.php it would bring up a working page.
The path in the generic.php file is
// Require the library
require ("$threadspath/includes/main.inc.php");
and the path for that to call the .tmpl file is
if (!$debug) {
include("$thispath/templates/$tempstyle/drchaos.tmpl");
I did change the path to call the tmpl file to
include("$thispath/halo2/membertemps/generic.tmpl");
what should I try?