Re: mod_python, user missing

2005-03-26 Thread KasiKuula
So damn simple that i am embarrassed :D Now my news get added with user. Thanks :) -- (8) [EMAIL PROTECTED] wrote: Good question, according to the documentation it should work, I'll push this onto the mod_python mailing list for discussion and get a bug report posted if necessary. In the meantime,

mod_python, user missing

2005-03-25 Thread KasiKuula
apache conf SetHandler mod_python PythonHandler mod_python.publisher and this is in /python-publisher/index.py __auth_realm__ = 'VIP' def __auth__(req, user, passwd): if user == 'noppa' and passwd == 'potti': return True else: return False def __access__(req, use