PHPNuke to phpBB integration Question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Leave Me Alone

    PHPNuke to phpBB integration Question

    Hey folks... I have a standalone phpBB forums and just recently installed
    PHPNuke on my website. I know phpnuke comes with it's own version of phpBB.

    How can I make it possible for members who register through phpnuke to
    automatically be register with my standalone phpBB?

    If this is not possible, how can I transport my standalone phpbb to the one
    that is included with PHPNuke?

    (I've visited both phpbb forums and phpnuke forums and have not had any
    success in obtaining an answer).


  • Margaret MacDonald

    #2
    Re: PHPNuke to phpBB integration Question

    Leave Me Alone wrote:
    [color=blue]
    >Hey folks... I have a standalone phpBB forums and just recently installed
    >PHPNuke on my website. I know phpnuke comes with it's own version of phpBB.
    >
    >How can I make it possible for members who register through phpnuke to
    >automaticall y be register with my standalone phpBB?
    >
    >If this is not possible, how can I transport my standalone phpbb to the one
    >that is included with PHPNuke?
    >
    >(I've visited both phpbb forums and phpnuke forums and have not had any
    >success in obtaining an answer).
    >[/color]

    write a program that is auto-called when phpnuke registration ends.
    The program should read the important parts of the phpnuke
    registration (select * from thephpnukemembe rtable where
    thenewid=whatev eritis) and copy them into a new record in the phpbb
    database (insert into phpbbmember table set fieldname=phpnu kevalue,
    nextfieldname=n extphpnukevalue , etc). That's all registration is:
    creating and populating a member record. phpbb doesn't care what does
    the creating and populating, so it can be your little transfer
    program.

    hth,
    Margaret
    --
    (To mail me, please change .not.invalid to .net, first.
    Apologies for the inconvenience.)

    Comment

    Working...