I have a daily schedule on my site that uses properties to store the events. The form passes the variables to a python script which changes the properties of the page. Things work perfectly when I'm already logged in as a manager. But when I enter my site as anonymous and try to do a manager function I get redirected to the cookie crumbler's authentication page. (good so far) When I get past authentication I get to the python script with an error that says: Error Type: KeyError Error Value: 'prop' But with a url like: http://mysite.com/dailySchedule/editCalendarProperty?prop=2004%2F03%2F25&pro... When I don't try to change the properties from the python script I can see and print the variables (prop and propval) perfectly. I've tried looping through the has_items() but the managing lines in the script can't see them. I've tried passing all the variables in the header to the login page of cookie crumbler, but that fails too. Please help. Joshua