View Full Version : Member List
skyxliner
06-30-2005, 07:37 AM
I'm not sure if its just me, but the memberlist on phpnuke did not link to invision's member list?
can someone tell me how to do this?
skyxliner
06-30-2005, 07:41 AM
I found a way but its not really efficient...
In index.php of memberlist
$module_name = basename(dirname(__FILE__));
@require("http://website.com");
oh yeah i only get this because i removed the phpbb forum that came with nuke
Patrick
06-30-2005, 12:50 PM
You shouldn't ever include a site in that manner unless it is an external site.
EX: My site is somesite.com and I want to grab from othersite.com.
I suggest you use absolute or relative paths.
absolute example (linux server):
/home/user/public_html/forums/index.php
relative example, assuming forums is in folder forums:
forums/index.php
Oh, and if you are simply wanting to redirect to the forums:
header("LOCATION: http://www.site.com/forums/");
Powered by vBulletin™ Version 4.0.0 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.