MyBB Community Forums

Full Version: Posting any Form on front end leads to blank members.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
MyBB 1.4.11

https://secure.arrowquick.com/grmc/physforum

test user
u:test
pw:abcd123

I have no problem logging in and out. However when I try to post a new forum/thread/message I get a blank members page. I have checked a number of threads and found cookie issues are often the problem. My cookie settings seem to be correct and I don't have issues logging in.

Cookie settings are as follows

cookie_domain: .secure.arrowquick.com
cookie_path: /grmc/physforum/

Any ideas or tips would certainly be appreciated.

Rob
For some reason you've got your whole forum in a form, you've got this in your header template:

<form action="member.php" method="post">

When anything's submitted, this will mean it's sent to member.php
(2010-08-30, 09:12 PM)MattRogowski Wrote: [ -> ]For some reason you've got your whole forum in a form, you've got this in your header template:

<form action="member.php" method="post">

When anything's submitted, this will mean it's sent to member.php

OMG! Thanks for a second pair of eyes. I have been looking and looking. This is the dangers of allowing outsiders to manipulate templates.

THANKS AGAIN!