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?
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?
I found a way but its not really efficient...
In index.php of memberlist
Code:$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
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/");