Have you noticed

I walk into that trap every day, never learn.
 
I have the caf saved on a firefox tab so i havent run into that, but in other forums i have encountered this problem, so it's a software thing i think.
 
Today I noticed a man with poo on his head and I shouted "oh look there's a man with poo on his head"

funny-pictures-poo-head-099.jpg
 
It's because http://redcafe.net doesn't redirect to http://www.redcafe.net, while http://redcafe.net/$1 redirects to https://www.redcafe.net/$1. So when you log in at http://redcafe.net, it stores cookies for http://redcafe.net but when it redirects (http://redcafe.net/login.php => https://www.redcafe.net/login.php), the cookies aren't set (I think login.php must do something else here).

My website has this in its .htaccess file which will force any non-www URLs to go to their www equivalents, although of course Niall will want to be more careful as it could impact SEO and search engine spiders.

Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^x42bn6.com
RewriteRule (.*) http://www.x42bn6.com/$1 [R=301,L]

Don't actually know what this does, but HTTP 301 is a permanent redirect.
 
It's because RedCafe.net : The Leading Manchester United Forum doesn't redirect to RedCafe.net : The Leading Manchester United Forum, while http://redcafe.net/$1 redirects to https://www.redcafe.net/$1. So when you log in at RedCafe.net : The Leading Manchester United Forum, it stores cookies for RedCafe.net : The Leading Manchester United Forum but when it redirects (RedCafe.net : Forum => RedCafe.net : Forum), the cookies aren't set (I think login.php must do something else here).

My website has this in its .htaccess file which will force any non-www URLs to go to their www equivalents, although of course Niall will want to be more careful as it could impact SEO and search engine spiders.

Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^x42bn6.com
RewriteRule (.*) http://www.x42bn6.com/$1 [R=301,L]

Don't actually know what this does, but HTTP 301 is a permanent redirect.

:lol: That lot may as well be another fecking language.