Quote:
Yesterday at 10:52 PM Gruntie said this in Post #167
replaced all occurances of $bburl to $homeurl, changed the global.php line to: require('forum/global.php');
and getting a blank page. Tried also : require('./forum/global.php'); with no luck
|
I think I had this problem once, and I had to add the path to get it to work:
PHP Code:
<?php
chdir('/home/jbear6/public_html');
require('/home/jbear6/public_html/global.php');
Please disregard if I am totally off base here....
Jbear6