Wee! We've moved to a new server which is much faster, and has a much better connection to the net. You should be noticing that the site is quite a lot quicker now.
This is exciting on a lot of fronts, not the least of which is that it means we can release a bunch of new features we've been sitting on to avoid killing ourselves with bandwidth bills. We'll be rolling them out pretty steadily over the next week or two.
cookie bug.
you're sending your cookies as consumating.com instead of .consumating.com. This means if I initially log in to consumating.com and later go to www.consumating.com, the server thinks i'm not logged in.
Solution:
(a) use mod_rewrite to bounce everyone to one hostname (consumating.com)
RewriteEngine on
RewriteCond %{HTTP_HOST} !^ consumating\.com$ [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteRule ^/(.*) http://consumating.com/$1 [L,R]
(b) mark the cookies as being from .consumating.com
for this debugging work, you should give me some free points. :)
Posted by: paul | April 26, 2005 at 09:29 AM