Logging in/out problem.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Leon Calder
    Senior Member
    • Apr 2006
    • 193
    • 3.6.x

    Logging in/out problem.

    I have a friend coding my skin and in the banner area we have another search box, it works however... when we log out of our skin we cannot log back in. It just goes to a blank white page.

    We end up going back to the default VB skin, logging in and then it works, we just can't logout then log back in.

    (When we try and login it points to 'search.php?do=process')

    How can i fix this?
    Gaming Forums: http://www.gamernade.com/
    Xbox360 Gamercards: http://www.360sigs.com/
    Portfolio: http://www.leoncalder.com/
  • Jake Bunce
    Senior Member
    • Dec 2000
    • 46598
    • 3.6.x

    #2
    It sounds like your HTML forms are crossed. Make sure the two forms are not nested.

    Good:

    Code:
    <form ...>
    
    </form>
    
    <form ...>
    
    </form>
    Bad:

    Code:
    <form ...>
    
    <form ...>
    
    </form>
    
    </form>

    Comment

    widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
    Working...