» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 55
0 members and 55 guests
No Members online
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
Web Hosting - web hosting, dedicated servers and web design services
Online Degree - search for 1000+ online degrees, online colleges & online universities.
Tattoo - we are a group of tattoo enthusiasts
Gexa Energy - your absolute best choice in electric service
Texas electricity - save on electric rates
Oral Chelation - initial cleansing of your veins & arteries

Register Now! Contact Us

About this Page
This is a discussion on login from phpbb2 to be disabled or to point other place within the Purged Topics forums, part of the NM Staff category; Hi, I modified my registration process to be done through a different module. http://web.sysrq.no/appolyon/21pzr/joinus....


Go Back   Nukemods Forum » NM Staff » Purged Topics

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-09-2003, 01:28 PM
Junior Member
 
Join Date: Jan 2003
Posts: 83
login from phpbb2 to be disabled or to point other place
Hi,

I modified my registration process to be done through a different module.
http://web.sysrq.no/appolyon/21pzr/joinus.php
Now i want to disable or not show at all the registration from phpbb or to point on another module...
something easy and quick?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 05-09-2003, 03:46 PM
Senior Member
 
Join Date: Sep 2002
Posts: 2,905
The registration link in the Forums is generated in two different files.

Look in:
includes/page_header.php
includes/page_header_review.php


for this:
Code:
'U_REGISTER' => append_sid('profile.'.$phpEx.'?mode=register'),
That line is in both of those files.
Example. IF you want the Register link in the Forusm to point to Nuke's registraiton, you would change that line to this
Code:
'U_REGISTER' => append_sid('modules.php?name=Your_Account&op=new_user'),
mikem
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 05-09-2003, 04:22 PM
Junior Member
 
Join Date: Jan 2003
Posts: 83
can you tell me now how to make ALL registrations to point to other module something like modules.php?name=JoinUS ?

I think after i make the modification to forum to point to Your_Account then to make Your_Account to point to modules.php?name=JoinUS when comes about Registration...right?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 05-09-2003, 05:39 PM
Senior Member
 
Join Date: Sep 2002
Posts: 2,905
Use what posted above to point to your new link to Users registration in the Forums. And then do this for the Your Account registraiton in Nuke

Open modules/Your_Account/index.php And Find this

Code:
    case "new_user": 
        new_user(); 
        break;
And Replace with

Code:
    case "new_user": 
        Header("Refresh: 0; url=modules.php?name=Join_Us");    
        break;
mikem
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 05-10-2003, 01:19 AM
Junior Member
 
Join Date: Jan 2003
Posts: 83
Originally Posted by mikem
The registration link in the Forums is generated in two different files.

Look in:
includes/page_header.php
includes/page_header_review.php
I could only find modules/Forums/includes/page_header.php and i made as you said but instead to redirect me to modules.php?name=JoinUS ... goes in
modules.php?name=Forums&file=modules&name=JoinUs&s id=.....


Originally Posted by mikem
Open modules/Your_Account/index.php And Find this

Code:
    case "new_user": 
        new_user(); 
        break;
in Your_Account my code was:
Code:
case "new user":
	confirmNewUser($uname, $email, $url, $user_avatar, $user_icq, $user_occ, $user_from, $user_intrest, $user_sig, $user_viewemail, $user_aim, $user_yim, $user_msnm);
	break;
I made the change as u told me but still didn't worked :cry:

You are talking about PhpNuke 6.0 with phpbbtonuke 2.0.6 (phpbb2.0.3) right? :cry:
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 05-10-2003, 02:39 AM
Junior Member
 
Join Date: Mar 2003
Location: Canada
Posts: 25
Send a message via MSN to WhyMan
hey there mikem

I just spent a the better part of the evening at PhpBB website going over email stuff and hacking at the emailer.php and had probs with the registry date?? Neway's I come here and in less than 5 mins I'm fixed
Code:
'U_REGISTER' => append_sid('profile.'.$phpEx.'?mode=register'),
Code:
'U_REGISTER' => append_sid('modules.php?name=Your_Account&op=new_user'),
Thank's

Cheers.. 8)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 05-11-2003, 08:57 PM
Junior Member
 
Join Date: Jan 2003
Posts: 83
the only problem which i have it still ...
is that after login the user is redirected to
/modules.php?name=Your_Account&op=userinfo&bypass=1 &uname=username
i want to be redirected to Forum profile.
Same for logining through block-User_Info.

Thank you
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 05-11-2003, 10:27 PM
Senior Member
 
Join Date: Sep 2002
Posts: 2,905
Um..hello..You changed the WRONG one in Your Account index.php

new_user NOT new user

Look further.
As for your other problem with changing the link in the Forums. Try changing it to this
Code:
'U_REGISTER' => ('modules.php?name=Your_Account&op=new_user'),
I just took out the append sid.
Make sure you are backing up your files when you edit them.

mikem
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 05-12-2003, 01:24 AM
Junior Member
 
Join Date: Jan 2003
Posts: 83
yeap...it was fixed...
many thanks mikem ... my started to move a little bit thanks to you guys...

Keep up the good work
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP-Nuke 7.3 point to phpBB 2.0.6? bigdingle Nuke 7.x - General 1 12-01-2004 12:27 PM
Can the Theme selection be disabled for users? greaz Nuke 6.5 to 6.9 - General 5 08-22-2004 05:50 PM
I'm not sure if this is the right place to post this. ohl Other "stuff" 0 05-14-2003 10:26 AM
Problems with installing point hack genblink Open topics 1 05-07-2003 03:48 AM
Can login to PHP-Nuke, but won't transfer login to phpbb2 ehsanix Purged Topics 7 02-06-2003 10:20 AM


All times are GMT -5. The time now is 08:09 AM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31