Results 1 to 3 of 3

Thread: Member List

  1. Join Date
    Jun 2005
    Posts
    2

    Member List

    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?

  2. Join Date
    Jun 2005
    Posts
    2

    Member List

    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

  3. Join Date
    Aug 2004
    Posts
    781

    Member List

    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/");

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts