PDA

View Full Version : Seperate Log In Page within vB?


ex-machina
07-01-2005, 06:12 PM
Hi,

This seems like it could be a really simple hack, but I'm stumped as to how to do it myself since I don't know PHP or vB very well and I'm surprised there isn't one already.

I've had a pretty thorough search, but unless I'm missing something...

I have 3.0.7 and I'm looking to install a seperate log in page that'll look similar to the permission denied page but actually allow users just to log into the forums and then redirects them back to wherever they where when they clicked the Log In link.

I know there's a log in box at the top of all forum pages, but I don't want to use that - I want to integrate the forums over the site and let them handle user registration and thus encourage users entering competitions and the like to post on the forums. So the register link is at the moment nothing more than a register link, but the log in is slightly harder because there's no page to link to. login.php just parses the form, it doesn't have its own.

Any ideas?

Andreas
07-01-2005, 06:35 PM
This is a FAQ and is being asked over and over and over again :)


<form action="http://www.yoursite.com/forums/login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password,vb_ login_md5password_utf)">
<script type="text/javascript" src="http://www.yoursite.com/forums/clientscript/vbulletin_md5.js"></script>
Username: <input type="text" name="vb_login_username" size="10" accesskey="u" tabindex="1" value="User Name" onfocus="if (this.value == 'User Name') this.value = '';" /><br />
<label for="cb_cookieuser"><input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser" accesskey="c" checked="checked" />Remember Me?</label><br />
Password: <input type="password" class="button" name="vb_login_password" size="10" accesskey="p" tabindex="2" />
<input type="submit" class="button" value="Log in" tabindex="4" title="Enter your username and password in the boxes provided to login" accesskey="s" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="vb_login_md5password" />
<input type="hidden" name="vb_login_md5password_utf" />
<input type="hidden" name="url" value="http://www.foobar.com" />
</form>


Replace http://www.foobar.com with whatever URL you want to redirect to.

ex-machina
07-02-2005, 10:53 AM
Wow it's that easy? I guess I'd been searching a more complicated solution...

Now to figure out how to put it into a generic vBulletin page! Thanks so much.

10sion
07-28-2005, 09:55 AM
how do i get rid of this: POST requests from foreign hosts are not allowed.
Since i have the site and the forum on different domains but both are on the same server.

Dys
09-01-2005, 08:33 PM
how do i get rid of this: POST requests from foreign hosts are not allowed.
Since i have the site and the forum on different domains but both are on the same server.

I get the same error, but not from all that use the login

POST requests from foreign hosts are not allowed

Any answers on how to fix this?

Andreas
09-01-2005, 09:04 PM
Yes, put the other Hosts on the Whitelist.

Dys
09-02-2005, 06:32 PM
Yes, put the other Hosts on the Whitelist.

Hate to sound stupid here... but what is it you consider a whitelist?

I see nothing like that in the code above.

MariaCM1
04-12-2006, 06:38 PM
I'm looking for a logout link complementary to this script.

Can anyone help, I'm stuck!

Mr. Burns
09-26-2008, 04:02 PM
I have made a separate homepage and added the form coding above. When I click login it brings me to the mainpage of the forum but has not logged me in, what have i done wrong? :(

--------------- Added 1222450163 at 1222450163 ---------------

The coding from this thread works great: https://vborg.vbsupport.ru/showthread.php?t=107292