Topic: Redirecting my domain

I got a forum and i want to redirect my old domain to it but when i do it says im not logged on, then i log on and it says Logged in successfuly, redirecting... then it takes me back to the page before the login page and says im still not logged in! can anyone help please as i payed money for this domain and i dont want it to go to waste

Re: Redirecting my domain

just to add some more information...
the domain is www.runecc.co.uk and its being redirected to runecc05.mypunbb.com and login works for me

Re: Redirecting my domain

the problem with what your doing is that it is using frames. of what Rickard said in the FAQ, IE doesnt support cookies through frames.

instead of doing

<FRAMESET ROWS="*,0">
<FRAME SRC="http://runecc05.mypunbb.com/index.php" NORESIZE>
<NOFRAMES>
Your browser does not support frames.
</NOFRAMES>
</FRAMESET>

try doing

<script language="JavaScript" type="text/JavaScript">
<!--
document.location.href = 'http://runecc05.mypunbb.com/'
//-->
</script>
Indocron
$theQuestion = (2*b) || !(2*b);

Re: Redirecting my domain

i have done what it says in - http://punbb.org/forums/viewtopic.php?id=4967 which should fix the login on IE

the best way to do it i think is

<HTML>
<HEAD>
<TITLE>runecc.co.uk</TITLE>
</HEAD>
<FRAMESET ROWS="*,0">
<FRAME SRC="http://runecc05.mypunbb.com/index.php" NORESIZE>
<NOFRAMES>
<BODY>
<script language="JavaScript" type="text/JavaScript">
<!--
document.location.href = 'http://runecc05.mypunbb.com/'
//-->
</script>
</BODY>
</NOFRAMES>
</FRAMESET>
</HTML>