Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End User to login into their page…

  • This topic is empty.
Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #26073

    Hi,

    I’m trying to build a client login page so they can login to their web site before publishing. I have followed the following guide:
    http://www.phpeasystep.com/workshopview.php?id=6

    What I would like to do, is when the user logs in, I want them to be redirected to their site on our server!

    Just getting to grips with MySQL with PHP. So any help with either will be much appreciated…

    Many thanks

    Smilinmonki666

    #63888
    cybershot
    Participant

    the tutorial has a redirect in it. it’s this line

    header("location:login_success.php");

    you need to change it to header("location:http://www.yourdomain.com");

    #63957
    mattvot
    Member

    redirect after logon to your website won’t work. the script creates a session which is not transferable.

    I would say to just have the actual html form’s action pointing to the login script on your server.

    #64046
    Capt Otis
    Member

    He is right, make the form submit to a page on your server. This can be a little dangerous, so keep that in mind if you are transferring important data. You should be ok from what I believe you want to do though.

    -T

    #64198
    ikthius
    Member

    what about if it is successful at loggin in, the do:
    print "<meta http-equiv="refresh" content="0;URL=http://www.thesite.com">";

    mind you never done log in stuff yet…..

    #64349

    Hey guys, just to let you know I’ve done it… after 3 days I managed to sort it out. It was simple.

    Code:

    I had already set myusername as Global & registered it to a session…

    #64351
    mattvot
    Member

    so what happens when I find out a user’s username and go to:

    http://www.domain.com/beta/mattvot

    Am I now logged in without using a password?

    #64361
    cybershot
    Participant

    this is one issue I have seen. I know of a few tutorials out there that do login pages, but they don’t have a good tutorial showing how to handle the actual login. If you used an html refresh code to redirect to a new page, then if someone viewed the source code, they could see that html. Also the page you are redirecting to wouldn’t be password protected would it?

    #64368

    This is where my problem lies.

    Is there a PHP script i can make which will be like the following:

    if username the allow to beta/$username

    else redirect to login page

    ???

    tried to use php to restrict but nothings working so far..?

    #64369
    mattvot
    Member
    #64372
    cybershot
    Participant

    why not just use cpanel to password protect your directory?

Viewing 11 posts - 1 through 11 (of 11 total)
  • The forum ‘Back End’ is closed to new topics and replies.