Understanding why this fixes my perlaccess script

2002-07-04 Thread Jason Wilkes
Hi folks, I use the following modperl script to control page access, based on a sessionid held in a cookie. A database is queried to get the user id from the db based on the cookie value. (No cookie, and your bounced to the logon screen). So far so good, and all works well. Except for one user

RE: Understanding why this fixes my perlaccess script

2002-07-04 Thread Levon Barker
: Jason Wilkes [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 04, 2002 11:46 AM To: [EMAIL PROTECTED] Subject: Understanding why this fixes my perlaccess script Hi folks, I use the following modperl script to control page access, based on a sessionid held in a cookie. A database is queried to get

RE: Understanding why this fixes my perlaccess script

2002-07-04 Thread Jason Wilkes
-bind_param( 1, $SessionID ); $sth-execute; That might help. -Original Message- From: Jason Wilkes [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 04, 2002 11:46 AM To: [EMAIL PROTECTED] Subject: Understanding why this fixes my perlaccess script Hi folks

Re: Understanding why this fixes my perlaccess script

2002-07-04 Thread Perrin Harkins
Jason Wilkes wrote: So far so good, and all works well. Except for one user id (actually id=333), which causes an internal server error. If I put print debugging lines in - everything works (even for user 333). If I take them out again all other users work fine except 333. Can anybody throw