PHP Applications
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsPHP RelatedPHP Applications

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
  #1  
Old February 27th, 2003, 09:43 PM
toomuch toomuch is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 4 toomuch User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
phpBB: Automatically login after registration?

In phpBB 2.0.1, I don't want users to have to (1) register and then (2) login. I'd like them to be automatically logged in after they register. I tried the Quick Register mod, but that doesn't let me do the 1-step register+login.

Thanks for any links to previous discussions! I've searched but couldn't find this exact topic.

Reply With Quote
  #2  
Old March 5th, 2003, 02:10 AM
l3vi l3vi is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 11 l3vi User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: phpBB: Automatically login after registration?

Have you tried something like a link?

You know something like:

Thank you for registering please click here to continue!

Thank you for registering please <a href="http://www.yournomain.com/SSL/login.php?user=myusername&pass=mypassword">click here</a> to continue!


You could also have the page auto forward them with the link.

Just a thought

Reply With Quote
  #3  
Old March 5th, 2003, 03:20 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
RE: phpBB: Automatically login after registration?

That helps, but it still requires two steps. If I n't find a better solution, this IS an improvement. Thanks for the idea.

Reply With Quote
  #4  
Old March 5th, 2003, 04:36 PM
h3rb h3rb is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Houston, TX
Posts: 34 h3rb User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 2
RE: phpBB: Automatically login after registration?

You could do something like this:

php Code:
Original - php Code
  1.  
  2. print "<meta http-equiv="refresh" content="3; url=login.php?user=myusername&pass=mypassword">";


So this way as soon as they register it will redirect them to the login page with their username and password.

Reply With Quote
  #5  
Old March 5th, 2003, 07:24 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
RE: phpBB: Automatically login after registration?

Again, that does help and I will do this for now. But I would just like to avoid the two-step process of registering, then logging in. Once you register, a lot of sites already automatically log you in. I like the convenience. (I am posting anon. because I lost my password, I am "toomuch").

Reply With Quote
  #6  
Old March 5th, 2003, 07:43 PM
h3rb h3rb is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Houston, TX
Posts: 34 h3rb User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 2
RE: phpBB: Automatically login after registration?

I don't understand your problem then. If when They click on Register. You put that code into the register.php, or whatever it is. And it will automatically log them in! They don't have to click on anything. It will just redirect them to the site logged in!

Reply With Quote
  #7  
Old March 5th, 2003, 07:45 PM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
RE: phpBB: Automatically login after registration?

Darn, why do I have to be such a moron? h3rb, I though you posted the same thing as l3vi. I will take more time to read things in the future. Thanks for not yelling at me. I appreciate your help. This has been bugging me for two weeks!

Reply With Quote
  #8  
Old March 6th, 2003, 11:42 AM
ElevenBravo ElevenBravo is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Texas, US
Posts: 33 ElevenBravo User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 2
Send a message via ICQ to ElevenBravo
RE: phpBB: Automatically login after registration?

Ok if you what users to login in from outside phpbb read this site. http://www.ajquick.com/programming/phpbb/tutorial/

Now is you are going to have your own register page outside of phpbb then just tie your register form to the phpbb users table. I did this on my site. If you need help email me theres a couple thing you got to watch out for like md5 ing the password and register the next user id.

Reply With Quote
  #9  
Old June 8th, 2006, 09:46 AM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
RE: phpBB: Automatically login after registration?

Hi.. the code can put on which file?

Thanks.

Reply With Quote
  #10  
Old July 4th, 2006, 03:20 AM
Anonymous Anonymous is offline
Registered User
Codewalkers God 35th Plane (22000 - 22499 posts)
 
Join Date: Apr 2007
Posts: 22,309 Anonymous User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
RE: phpBB: Automatically login after registration?

I understand what you are talking about. And i would also like this. On what im working on i want someone to register, the go directly to where they can edit there profile.

Reply With Quote
Reply

Viewing: Codewalkers ForumsPHP RelatedPHP Applications > phpBB: Automatically login after registration?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

 Free IT White Papers!
 
Accelerating Trading Partner Performance
One in five. That's how many partner transactions have at least one error. That is an amazing statistic, particularly given the extraordinary leaps in innovation across the global supply chain during the past two decades. Download this white paper to learn more.

 
Competing on Analytics
This Tech Analysis is designed to help identify characteristics shared by analytics competitors, and includes information about 32 organizations that have made a commitment to quantitative, fact-based analysis.

 
Cost Effective Scaling with Virtualization and Coyote Point Systems
An overview of the industry trend toward virtualization, how server consolidation has increased the importance of application uptime and the steps being taken to integrate load balancing technology with virtualized servers.

 
Five Checkpoints to Implementing IP Telephony
Implementation planning for IP PBX software and IP telephony has become vital as businesses replace discontinued legacy PBX phone systems. This informative whitepaper outlines five &quot;checkpoints&quot; for any implementation plan that will help make IP communications a successful proposition.

 
Hosted Email Security: Staying Ahead of New Threats
In the last two years, email has become a fierce battleground between the nefarious forces of spam and malware, and the heroes of messaging protection. The spam volumes increased alarmingly every month, bringing clever new forms of phishing and virus propagation attacks.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway