From: Jeff D. <da...@da...> - 2001-09-10 19:48:31
|
On Sep 10, 2001, Adam Shand said: > > this is really nice! great work. Thanks! > two bug reports (that i'm sure you already know about): > > * it says log in with any username/password but it wouldn't let me. i > just kept getting the auth box pop up again until i selected "Cancel" > when it told me i had an invaled user/password. Yes. This is browser dependent, and has to do with whether your browser accepts new cookies as part of a "401 Access Denied" response. (Mozilla doesn't, NS4 does...) I have fixed this in my latest version by using PHP sessions rather than cookies to store the login state -- but that's a kludge, too. Using HTTP authentication to query for usernames and passwords that we, the PHP app, process is all a big hack in the first place. I plan on doing away with that soon... > * at the bottom of the page there is an error: > > In template:82: Notice[8]: Undefined variable: RELATEDPAGES: > <small>${RELATEDPAGES}</small> Yes that's just to remind me that I haven't implemented methods for indexing RelatedPages (or some replacement for it) in the new database API yet. I suppose I should just put it on a TODO list instead :-) Jeff |