I think I might be interested in this. Especially since I haven't seen any
posts about it yet.
Any pointers on where to start ?
I'll get back with more info later this weekend (aka not valentines day)
On Thursday 13 February 2003 22:59, Stas Bekman wrote:
> Something to consider for mod_perl 2
- $r->connection->auth_type($auth_type);
- $r->connection->user($auth_user);
+ $r->auth_type($auth_type);
+ $r->user($auth_user);
you can see my rather long (and one sided) threads on this list today for
more details, but $r->auth_type is not the same as $r->connection->au
Hi,
For waht its worth, I've gotten the Apache-AuthCookie &
Apache-AuthCookieDBI to work with my apache configured as:
Apache/2.0.44 (Unix) mod_perl/1.99_09-dev Perl/v5.8.0 mod_ssl/2.0.44
OpenSSL/0.9.6g DAV/2 PHP/4.3.0 mod_jk2/2.0.2
I hope someone finds this a bit usefull, sorry to post here
Geoffrey Young wrote:
> ok, I did some investigating and I really think that the mod_perl API is
> troubled wrt auth_type. from what I tell, $r->auth_type returns the
> per-dir AuthType config, leaving no way to access r->ap_auth_type.
sorry for making the list listen to my thoughts whilst I so
Geoffrey Young wrote:
Geoffrey Young wrote:
+package Apache::Connection;
+
+# auth_type and user records don't exist in 2.0 conn_rec struct
+# 'PerlOptions +GlobalRequest' is required
+sub auth_type { Apache->request->auth_type }
+sub user { Apache->request->user }
ok, I did some investigating and I really think that the mod_perl API is
troubled wrt auth_type. from what I tell, $r->auth_type returns the per-dir
AuthType config, leaving no way to access r->ap_auth_type.
why are both these important? well, if you want to use the mod_perl API to
write a cu