Quote:
Originally Posted by Ipuck
Does any one know if I can use this mod on my site if the forums is in a subdomain? when I add: require_once('/path/to/your/forums/global.php'); the page goes blank.
|
/path/to/your/forums needs to be the actual path to your forum root.
if you need:
Open up a text editor and paste this in it:
PHP Code:
<?
echo getcwd();
?>
and name the file
path.php
make sure it's
path.php and not
path.php.txt or anything like that.
Upload that file to your forum root and point your browser to it.
example:
http://yourforum.org/forum/path.php
should show you what you need to replace
/path/to/your/forums with. delete that file when you're done with it.
Hope this helps.