Jump to content

Submitting a form in the background? Possible???


lip9000

Recommended Posts

I have a site that is integrated with phpBB forum and at the moment, when a user logs into my site, they then have to go into the forum and click login, re-enter their username and password, and click login to be logged into the forum.

 

The form to login to the phpBB forum is like this:

 

<form action="./forum/ucp.php?mode=login" method="post">
    <h3><a href="./forum/ucp.php?mode=login">Login</a>  •   <a href="./ucp.php?mode=register">Register</a></h3>
    <fieldset>
        <label for="username">Username:</label> 
        <input type="text" name="lg_name" id="lg_name" size="10" title="Username" />
        <label for="password">Password:</label> 
        <input type="password" name="lg_pass" id="lg_pass" size="10" title="Password" />
        <input type="submit" name="login" value="Login" />
    </fieldset>
</form>

 

Is there a way to somehow submit this form with the same username and password that the users enter on my sites homepage, at the same time?

 

So for example when the user logs in, it also logs into the forum, since the username and password is the same.

 

I've tried to include forum/ucp.php and insert the post variables but I can't get it right.

Link to comment
Share on other sites

Yes they are, but I have found the solution, but have run into another problem.

 

I have just found out that there is already a login function for the forum that gets activated on site login, but the only problem is that the session id needs to be in the URL in order for you to be logged into the forum.

 

So if I go to forum.mysite.net once I am logged in, it will say that I am not logged in, but if I go to forum.mysite.net/?sid=thisisthelongsessionid, then it shows me logged in. Is there a way to change it so that users can just go to forum.mysite.net without having to enter the session id into the url?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.