Quote:
Originally Posted by Live Wire
If you want to use the header your using on your forums. can't you find in the portal/index.php something that is calling the index_header template? Should look something like.
PHP Code:
eval('$blah = "' . fetch_template('index_hader') . '";');
Just change to
PHP Code:
eval('$header = "' . fetch_template('header') . '";');
If that is what you are trying to do,
|
I did that...
The problem is that $THIS_SCRIPT only recognized php files in the directory of the forum. It doesn't work with things that are outside of the forum directory. That's why I was trying to figure out how to do something similar that recognizes php files in a different directory level.
What I'll do then, is just change the name of the vbAdvanced index page and place it in the same directory as the forum and use the server's Mod Rewrite feature to make it appear as if it's in my root directory. The $THIS_SCRIPT will work then.
~ Thanks for your help ~