Re: $r-headers_out Location and Set-Cookie

2003-08-14 Thread Nick Tonkin
to localhost/pageA (or simply click BACK button) then the browser DO see the cookie! Any idea? Yep. You need $r-err_headers_out-{'Location'} and you could change to $r-err_headers_out-{'Set-Cookie'} too. - nick -- Nick Tonkin {|8^)

Re: need your help to test mod_perl with perl-5.8.1-RC3

2003-08-04 Thread Nick Ing-Simmons
Michael G Schwern [EMAIL PROTECTED] writes: On Mon, Aug 04, 2003 at 11:19:42AM +0100, Steve Hay wrote: Why isn't the typemap file distributed as part of ExtUtils-MakeMaker? typemap is very specific to the version of Perl, or so it is said. Not really. There are some changes for PerlIO * vs FILE

Re: Adding / Modifing Response Headers on mp2

2003-04-03 Thread Nick Tonkin
already have that :) - nick -- Nick Tonkin {|8^)

Re: the deprecation of Apache-request in mp2

2003-03-27 Thread Nick Tonkin
parsing, please! - nick -- Nick Tonkin {|8^)

Re: speeding up CGI.pm

2003-03-25 Thread Nick Tonkin
haven't been able to get it running here (some sort of install problem, my people tell me). Not at all ready. I do not believe even a beta release has been made. - nick -- Nick Tonkin {|8^)

Re: [mp2] adding SERVER_ROOT and SERVER_ROOT/lib/perl to @INC

2003-03-18 Thread Nick Tonkin
and mod_perlish way of doing it, IMO. Just needs good documentation :) - nick -- Nick Tonkin {|8^)

Re: [MP2] Can't dup STDOUT

2003-03-17 Thread Nick Tonkin
to load is Apache::RequestIO, right? HTH, - nick -- Nick Tonkin {|8^)

Re: Where do you put your stuff?

2003-03-17 Thread Nick Tonkin
it :) - nick -- Nick Tonkin {|8^)

RE: Tracing double accesshandler invocation

2003-03-14 Thread Nick Tonkin
::access for Location / -- watch out for this, all. - nick -- Nick Tonkin {|8^)

Re: Tracing double accesshandler invocation

2003-03-14 Thread Nick Tonkin
happens and the user is sent to the /login location. So my actual AccessHandler doesn't do anything which even resembles a subrequest. can you post the handler? - nick -- Nick Tonkin {|8^)

Re: Tracing double accesshandler invocation

2003-03-14 Thread Nick Tonkin
in the future. - nick -- Nick Tonkin {|8^)

Re: Tracing double accesshandler invocation

2003-03-14 Thread Nick Tonkin
would like to find someway to trace the who/what/where/why of handler execution. Running with PERL_TRACE left me none the wiser so I was hoping a user might know a better way? Richard. - nick -- Nick Tonkin {|8^)

Re: Newbie help with mod-perl 2.0

2003-03-11 Thread Nick Tonkin
of the above and many of its methods are the same as Apache::Request's. HTH, - nick -- Nick Tonkin {|8^)

Re: [mp2] Documentation

2003-03-10 Thread Nick Tonkin
On Mon, 10 Mar 2003 [EMAIL PROTECTED] wrote: Hi - I'm getting frustrated. I'm trying to parse the incoming uri (url) in mod_perl 2, and I can't seem to be able to find documentation. For example, Nick gave me the following snippet of code last week: my $uri = APR::URI-parse($r-pool

Re: apache::sandwich

2003-03-10 Thread Nick Tonkin
for porting is getting quite extensive. This doc: http://perl.apache.org/docs/2.0/devel/porting/porting.html is what you want. Good luck, - nick -- Nick Tonkin {|8^)

Re: apache::sandwich

2003-03-10 Thread Nick Tonkin
D'oh, please s/Apache::Filter/Apache::Sandwich/ in my earlier reply. Sorry. - nick -- Nick Tonkin {|8^)

Re: [mp2] changing http:// to https: in TransHandler

2003-03-08 Thread Nick Tonkin
not match either /secure/ or !/secure. Hope this helps, - nick PS If you have more than one domain needing to use https, you can put it on an arbitrary port so long as you configure the server (not apache) to listen on it, and then hard-code the port number in the mod_rewrite rule

Re: [mp2] changing http:// to https: in TransHandler

2003-03-08 Thread Nick Tonkin
to specify the port in the request. I suggest spending some time with the docs for mod_ssl, if that's what you're using. - nick -- Nick Tonkin {|8^)

Re: Tracing double accesshandler invocation

2003-03-06 Thread Nick Tonkin
On Thu, 6 Mar 2003, Stas Bekman wrote: Nick Tonkin wrote: On Wed, 5 Mar 2003, Richard Clarke wrote: Hi, I'm trying to figure out why my accesshandler is getting triggered twice for each request that I make. I'm 100% sure that I'm doing no explicit lookups/redirects anywhere in my

Re: [mp2] CGI redirects incorrectly handled?

2003-03-05 Thread Nick Tonkin
Apache::HTTP_MOVED_TEMPORARILY; # Apache::REDIRECT still supported, this is the correct # constant though. Now that I think about it, maybe you're using CGI.pm to do your redirect? If so, maybe the code in CGI.pm has not been correctly updated? Hope this helps. - nick

Re: Tracing double accesshandler invocation

2003-03-05 Thread Nick Tonkin
with them. - nick -- Nick Tonkin {|8^)

Re: Tracing double accesshandler invocation

2003-03-05 Thread Nick Tonkin
with them. - nick -- Nick Tonkin {|8^)

Re: [mp2] CGI redirects incorrectly handled?

2003-03-05 Thread Nick Tonkin
On Thu, 6 Mar 2003, Mark James wrote: Nick Tonkin wrote: Now that I think about it, maybe you're using CGI.pm to do your redirect? If so, maybe the code in CGI.pm has not been correctly updated? Yes Nick, I'm using CGI.pm version 2.91 (the latest). Its redirect code sends a Status: 302

Re: file upload under mod_perl 2 wihout CGI.pm

2003-03-04 Thread Nick Tonkin
when you were a young man and the web was even younger :) - nick -- Nick Tonkin {|8^)

Re: Authorization question

2003-02-27 Thread Nick Tonkin
, - nick -- Nick Tonkin {|8^)

Re: mod_perl Developer's Cookbook

2003-02-27 Thread Nick Tonkin
be closer to its final version ... - nick -- Nick Tonkin {|8^)

Re: Authorization question

2003-02-27 Thread Nick Tonkin
-is_inital_req; in auth handlers in the first place? - nick -- Nick Tonkin {|8^)

Re: Authorization question

2003-02-27 Thread Nick Tonkin
to know the user's authz level (0-4) to produce content ... they do not care how the authz level was generated. - nick -- Nick Tonkin {|8^)

Re: Authorization question

2003-02-27 Thread Nick Tonkin
is that plug and play auth schemes only work (unmodified) for the simplest sites. Anyone using PubCookie? http://www.washington.edu/pubcookie/ All C, no? - nick -- Nick Tonkin {|8^)

Re: [mp2] send_http_header() can't be called before the responsephase

2003-02-23 Thread Nick Tonkin
On Thu, 20 Feb 2003, Stas Bekman wrote: Stas Bekman wrote: Nick Tonkin wrote: [...] send_http_header() can't be called before the response phase Nick, I've just committed a better solution. Please verify that it works for you. Now that the uri bug is fixed, this fix works fine, Stas

Re: [mp2] Cookie behavior discrepancy in Auth* handlers ?

2003-02-22 Thread Nick Tonkin
On Wed, 19 Feb 2003, Nick Tonkin wrote: Hi all, Cookies driving me nuts as usual but I think the problem appears to be related to which handler phase we are in. Basically, the same call to read the cookies works in the PerlHandler but not in the PerlAccessHandler. Responding to my own

[mp2] porting tip - must return OK from content-handlers

2003-02-20 Thread Nick Tonkin
a heads-up. - nick -- Nick Tonkin {|8^)

[mp2] porting tip - DefaultType text/html

2003-02-20 Thread Nick Tonkin
and voila -- I don't have to set $r-content_type after all but rather can just delete all the $r-send_http_headers calls. YMMV, of course, if you have other parts of your webserver that do not supply a content-type :) - nick -- Nick Tonkin {|8^)

[mp2] what is GEN1 and why is it my log?

2003-02-20 Thread Nick Tonkin
line 245. 192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28. 192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28. Anyone know what GEN1 is and why it appears every so often? Thanks, - nick -- Nick Tonkin {|8^)

Re: Apache::TicketAccess

2003-02-20 Thread Nick Tonkin
to the browser, they'll be there. If they are and it's still not working, you need to look at the reading of the cookies in your module. - nick -- Nick Tonkin {|8^)

Re: [mp2] what is GEN1 and why is it my log?

2003-02-20 Thread Nick Tonkin
On Fri, 21 Feb 2003, Stas Bekman wrote: Ged Haywood wrote: On Thu, 20 Feb 2003, Nick Tonkin wrote: Hi, In my logs when dumping a warn() I see this occasionally: 192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28. 192.168.0.24 at /home/wm/perl/WM/Auth/Access.pm line 28

[mp2] $r-server()-server_hostname compatibility?

2003-02-19 Thread Nick Tonkin
server_hostname is not documented on the list. Anyone know the equivalent please? - nick

[mp2] warnings

2003-02-19 Thread Nick Tonkin
Is it possible to combine the recommended syntax: use warnings FATAL = 'all', NONFATAL = 'redefine'; with the ability to turn warnings on in httpd.conf with PerlSwitches -w? - nick Nick Tonkin {|8^)

[mp2] handler running twice for one request

2003-02-19 Thread Nick Tonkin
request like that not the is_initial_req 4) If the first time through it reurns DECLINED because it's not an initial req, how come it goes through again? 5) What the heck is going on here? Thanks, - nick Nick Tonkin {|8^)

[mp2] Cookie behavior discrepancy in Auth* handlers ?

2003-02-19 Thread Nick Tonkin
', 'nick', '_time', '1045689878', 'expires', '60

Re: [mp2] send_http_header() can't be called before the responsephase

2003-02-19 Thread Nick Tonkin
On Thu, 20 Feb 2003, Stas Bekman wrote: Stas Bekman wrote: Nick Tonkin wrote: [...] send_http_header() can't be called before the response phase Nick, I've just committed a better solution. Please verify that it works for you. I'll have a go as soon as poss. - nick

Re: [mp2] $r-server()-server_hostname compatibility?

2003-02-19 Thread Nick Tonkin
On Thu, 20 Feb 2003, Stas Bekman wrote: Nick Tonkin wrote: server_hostname is not documented on the list. Anyone know the equivalent please? it hasn't changes from 1.0. I thought we have been through this already, just yesterday. We did. The list is resending mail. Or maybe the mail

Re: [mp2] warnings

2003-02-19 Thread Nick Tonkin
On Thu, 20 Feb 2003, Stas Bekman wrote: Nick Tonkin wrote: Is it possible to combine the recommended syntax: use warnings FATAL = 'all', NONFATAL = 'redefine'; with the ability to turn warnings on in httpd.conf with PerlSwitches -w? -w is the same as: use warnings 'all

Re: [mp2] handler running twice for one request

2003-02-19 Thread Nick Tonkin
On Thu, 20 Feb 2003, Stas Bekman wrote: Nick Tonkin wrote: Hi all, I my httpd.conf I have: Location / AddType text/html .html PerlAccessHandler WM::Auth::Access /Location And in my handler I have: package WM::Auth::Access; use strict; use

Re: [mp2] $r-server()-server_hostname compatibility?

2003-02-19 Thread Nick Tonkin
On Thu, 20 Feb 2003, Stas Bekman wrote: Nick Tonkin wrote: On Thu, 20 Feb 2003, Stas Bekman wrote: Nick Tonkin wrote: server_hostname is not documented on the list. Anyone know the equivalent please? it hasn't changes from 1.0. I thought we have been through this already, just

[mp2] $r-server-server_hostname() compatibility?

2003-02-18 Thread Nick Tonkin
Does anyone know the equivalent directive for $r-server()-server_hostname() ? Thanks, - nick -- Nick Tonkin {|8^)

[mp2] $r-server_name not working

2003-02-18 Thread Nick Tonkin
a 1.x installation built on this box ... - nick -- Nick Tonkin {|8^)

Re: [mp2] $r-server-server_hostname() compatibility?

2003-02-18 Thread Nick Tonkin
On Wed, 19 Feb 2003, Stas Bekman wrote: Nick Tonkin wrote: Does anyone know the equivalent directive for $r-server()-server_hostname() it's right there: use Apache::Server; $r-server-server_name; Well, it doesn't work as advertised, I think. package NPT::MyTest; use strict; use

Re: [mp2] $r-server-server_hostname() compatibility?

2003-02-18 Thread Nick Tonkin
On Wed, 19 Feb 2003, Stas Bekman wrote: Nick Tonkin wrote: On Wed, 19 Feb 2003, Stas Bekman wrote: Nick Tonkin wrote: Does anyone know the equivalent directive for $r-server()-server_hostname() it's right there: use Apache::Server; $r-server-server_name; oops, a typo, should

[mp2] send_http_header() can't be called before the response phase

2003-02-18 Thread Nick Tonkin
-status(Apache::OK); $r-content_type('text/html'); $r-send_http_header; [...] This throws the error: send_http_header() can't be called before the response phase Thanks, - nick -- Nick Tonkin {|8^)

Re: Apache::DBI and mod_perl 2

2003-02-14 Thread Nick Tonkin
(Apache::Const,APR::Const,Modperl::Const). But what do I do to get Apache::DBI to work? Am I missing something really simple here (I hope)? Thanks -Chris - nick Nick Tonkin {|8^)

RE: Apache::DBI and mod_perl 2

2003-02-14 Thread Nick Tonkin
you want is http://marc.theaimsgroup.com/?l=apache-modperlm=104225578207460w=2 - nick Nick Tonkin {|8^)

Re: What is lastest stable version of mod_perl? newbie question.

2003-02-10 Thread Nick Tonkin
those packages too. perl 5.6.1 eould also be fine; perl 5.6.0 has problems. HTH, - nick Nick Tonkin {|8^)

Re: [mp2] Apache::Request

2003-01-31 Thread Nick Tonkin
On Fri, 31 Jan 2003, Lee Goddard wrote: Does anyone know when this module might be released? No, no one does. They are working on it. Use CGI.pm instead or revert to mod_perl/apache version 1 until it is done. - nick Nick Tonkin {|8^)

Re: compiling mod_perl statically under FreeBSD

2003-01-26 Thread Nick Tonkin
Have you read the mod_perl guide? Especially http://perl.apache.org/docs/1.0/guide/install.html#Installation_Scenarios_for_mod_perl_and_Other_Components ? - nick Nick Tonkin {|8^)

Re: [mp2]: Is there a package for Debian/testing?

2003-01-23 Thread Nick Tonkin
flawlessly on my system which is FreeBSD 4.7 and perl 5.8 I found one in debian unstable, but this requires perl 5.8. I can't say about other perls, as I said I have 5.8 HTH - nick Nick Tonkin {|8^)

Re: mysql question

2003-01-23 Thread Nick Tonkin
provides excellent support. Ask, can you block this bozo from the list? - nick Nick Tonkin {|8^)

Re: [mp2] e-Commerce

2003-01-21 Thread Nick Tonkin
machine running thttpd serving all those images for 50 or a hundred webservers. So sometimes I believe it's called for. - nick Nick Tonkin {|8^)

Re: [mp2] failed test building mp2

2003-01-18 Thread Nick Tonkin
On Sun, 19 Jan 2003, Stas Bekman wrote: Nick Tonkin wrote: On Fri, 17 Jan 2003, Nick Tonkin wrote: Hey all, Building the latest mp2 I get: protocol/echo_filter.ok Failed Test Stat Wstat Total Fail Failed List of Failed

[mp2] make test errors w/. threadmutex, push_handlers

2003-01-18 Thread Nick Tonkin
usesocks=undef use64bitint=undef use64bitall=undef uselongdouble=undef usemymalloc=n, bincompat5005=undef Compiler: cc='gcc', ccflags ='-DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -DAPPLLIB_EXP=/home/nick/perl -fno-strict-aliasing -I/usr/local/incl ude', optimize='-O', cppflags

[mp2] Conflicting instructions in docs?

2003-01-17 Thread Nick Tonkin
'Configuring and Installing Prerequisites' it gives an an example: % ./Configure -des -Dusethreads I'm confused. Where's the quick answer to whether or not I should use threads? I'm on FreeBSD 4.7. Thanks, - nick Nick Tonkin {|8^)

Re: [mp2] Conflicting instructions in docs?

2003-01-17 Thread Nick Tonkin
On Sat, 18 Jan 2003, Stas Bekman wrote: Nick Tonkin wrote: Well, I'm taking the plunge. I have a brand new spiffy machine I'm configuring and I've decided, since for once I don't have to get it up and running urgently, to go the whole hog and move to the 2.0 world. For me

Re: [mp2] Conflicting instructions in docs?

2003-01-17 Thread Nick Tonkin
the probs in the prefork mpm section. Obviously the threaded-mpm requires threads. Looks better to me. More clear. -nick Nick Tonkin {|8^)

[mp2] failed test building mp2

2003-01-17 Thread Nick Tonkin
17 20:03:55 2003] [notice] caught SIGTERM, shutting down END in modperl_extra.pl, pid=62235 I have perl 5.8 on FreeBSD 4.7 with latest apache2 as of today. Thanks, - nick Nick Tonkin {|8^)

Re: [mp2] failed test building mp2

2003-01-17 Thread Nick Tonkin
On Fri, 17 Jan 2003, Nick Tonkin wrote: Hey all, Building the latest mp2 I get: protocol/echo_filter.ok Failed Test Stat Wstat Total Fail Failed List of Failed

Re: cgi-script to handler communication [MP2]

2003-01-16 Thread Nick Tonkin
in its address bar? Let me know if you need to know more about any aspect of my implementation. And, thanks for your help. -vish - nick Nick Tonkin {|8^)

Re: Redirect or Subprocess - Problems

2003-01-13 Thread Nick Tonkin
your web server gets bogged down, than you should look at setting up a thin front-end apache with the mod_perl server behind. That's the subject of a good deal of info in the mod_perl Guide and in the archives of this list. - nick Nick Tonkin {|8^)

Re: Load balancers

2003-01-13 Thread Nick Tonkin
) were very responsive and worked with us to tweak as necessary. After a while we got one of those loser CFOs who was golf pals with the new COO or something, and he bought a bunch of Foundry Systems Server Irons that worked alright but were orders of magnitude more expensive. - nick

RE: Load balancers

2003-01-13 Thread Nick Tonkin
hardware. - nick Nick Tonkin {|8^)

Re: [modperl 1.27] Problem regarding Perl*Handler and the HTTPrequest line

2002-12-24 Thread Nick Tonkin
similar, and have a handler that handles everything in that path, returning DECLINED if it doesn't match the URI you are looking for (you don't need two handlers for this). Hope this helps, - nick

Re: mod_perl fails tests

2002-12-18 Thread Nick Tonkin
CGI.pm via CPAN. - nick Nick Tonkin {|8^) Thanks- Rodney On Wed, 18 Dec 2002 16:13:19 +0800 Stas Bekman [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: I am having some trouble installing mod_perl on my redhat linux 8.0 box. I successfully

Re: What's On-topic and what's Off-topic on this list

2002-12-17 Thread Nick Tonkin
One thing that's useful for both people who don't know where else to turn and people who don't want anything that's not pure mod_perl is simply to preface your subject line with [OT] ... it's then very simple to filter out unwanted messages in any mail reader. - nick PS Stas, I think maybe you

Re: Perl Cookbook modperl chapter

2002-12-11 Thread Nick Tonkin
by glossing over how large a field of study mod_perl is. It's almost as bad as the Teach Yourself Perl in 24 Hours title put out by Geoff's publisher. I urge you to rethink this plan. - nick Nick Tonkin {|8^) On Wed, 11 Dec 2002, Nathan Torkington wrote: I need some people

Re: Perl Cookbook modperl chapter

2002-12-11 Thread Nick Tonkin
. (That's why the Eagle book, and the mpDC, are so good.) - nick Nick Tonkin {|8^)

RE: [SOT] Strange browser behavior

2002-11-21 Thread Nick Challoner
) and then returning to it via the bookmark? ...Nick. -- Nick Challoner [EMAIL PROTECTED]

Re: Apache logging phase

2002-11-19 Thread Nick Tonkin
Not a mod_perl issue; in your apache conf do this: # I keep all images and javascripts etc under /_[something] SetEnvIf Request_URI /_ dontlog CustomLog /home/nick/logs/httpdlog common env=!dontlog - nick Nick Tonkin {|8^) On Tue, 19 Nov 2002, Cure wrote: I'm

timing downloads with mod_perl

2002-11-15 Thread Nick
I would like to log the time it take users to download items from my site. Has anyone has any success writing a mod perl prog to accomplish this? Thanks! __ Do you Yahoo!? Yahoo! Web Hosting - Let the expert host your site

[OT] Wanted: beginning perl books for poor kids

2002-10-31 Thread Nick Tonkin
some of the art these kids make (and also why we need a new one!) can be viewed at http://www.rain.org/~artworks/ A cool project by one of the students is at http://www.rain.org/%7Eartworks/NewATW/students/norma_web/norma_intro.html Thanks folks, - nick Nick Tonkin {|8^)

Re: How would you organize custom logging?

2002-10-10 Thread Nick Tonkin
some of the techniques I mentioned above. - nick Nick Tonkin {|8^)

Re: Change in module naming conventions

2002-08-27 Thread Nick Tonkin
- nick Nick Tonkin {|8^) On Tue, 27 Aug 2002, Per Einar Ellefsen wrote: - I originally had Apache::Auth::Authen, ::Authz and ::Access, but Robin Berjon told me he preferred to have the 4 as top-level namespaces. What do people think? I'm in favor of your

Re: ANNOUNCE: the new perl.apache.org is alive now!

2002-07-12 Thread Nick Tonkin
The content seems great. But whatever font you've used is rendering skinny and pixelated and hard to read and makes me want to egt of the site asap ... why not leave font face undetermined so the font that each has chosen for his platform is employed? - nick Nick

Re: [OT] Better Linux server platform: Redhat or SuSe?

2002-07-04 Thread Nick Tonkin
I'm confused. Since when did bloat surpass elegance as a measure of success in Perl programming? - nick Nick Tonkin {|8^) On Thu, 4 Jul 2002 [EMAIL PROTECTED] wrote: On Wed, Jul 03, 2002 at 02:41:38PM +0100, Peter Haworth wrote: On Wed, 3 Jul 2002 11:40:44 +0100

Re: SEGV in bleadperl@17165 under mod_perl

2002-06-14 Thread Nick Ing-Simmons
); } else { End of Patch. NI-S will probably find this patch very wrong :-) Should be harmless. A :stdio layer without a FILE * should never happen. Your patch prevents it doing fflush(NULL) if it does. -- Nick Ing-Simmons http://www.ni-s.u-net.com/

Re: SEGV in bleadperl@17165 under mod_perl

2002-06-14 Thread Nick Ing-Simmons
: RETVAL Import attempts to find out how FD that FILE * is using is open but that really isn't sufficient. -- Nick Ing-Simmons http://www.ni-s.u-net.com/

Desperate for ePerl fix on 5.6.1

2002-05-12 Thread Nick Barton
Nick Barton http://www.websavant.co.uk

Re: Strange Apache 2.0 rewrite/proxy issue

2002-01-04 Thread Nick Tonkin
is a strong word! At ValueClick we used thttpd servers to deliver gif images ... one thttpd could efficiently handle the same number of requests as several (non-mod_perl) front end reverse proxies ... - nick Nick Tonkin {|8^)

Re: Fast template system

2001-12-31 Thread Nick Tonkin
solution I've found is to create a new user 'perl' and install Perl and all libraries etc under that user's home directory. My system: nick@world ~uname -a FreeBSD world.tonkinresolutions.com 4.4-PRERELEASE FreeBSD 4.4-PRERELEASE #1: Sat Aug 11 18:17:44 PDT 2001 [...] nick@world ~perl -v

Re: load balancing on apache

2001-12-14 Thread Nick Tonkin
cheaper than LocalDirector and others (although we did move to a high-end Foundry Server Iron system eventually) ... good support from a small company too. - nick Nick Tonkin {|8^) On Fri, 14 Dec 2001, Perrin Harkins wrote: I am planning to host an application and its

Re: Deleting a cookie

2001-11-27 Thread Nick Tonkin
= '/', value = '' ); $cookie-bake; return $cookie; } sub logout_screen { [ ... ] } 1; ~~~ Nick Tonkin On Tue, 27 Nov 2001, Jon Robison wrote: I have created a login system using the wonderful Ticket system from the Eagle book. I have modified

[OT] Re: search.cpan.org

2001-11-27 Thread Nick Tonkin
Because it does a full text search of all the contents of the DB. ~~~ Nick Tonkin On Tue, 27 Nov 2001, Robert Landrum wrote: Does anyone know why search.cpan.org is always the s-l-o-w-e-s-t site on the internet? I can't believe it always busy. I've had trouble hitting it at 3

[OT] Re: search.cpan.org

2001-11-27 Thread Nick Tonkin
Well, ask Ask if you want the whole truth. But when I saked him that's what he said. Maybe there's a problem with the architecture and some pre-indexing is done per session or something suboptimal like that. Ask? ~~~ Nick Tonkin On Tue, 27 Nov 2001, Robert Landrum wrote: Sure... When

[OT] Re: How to create a browser popup window

2001-11-20 Thread Nick Tonkin
as the href. You can use any code you like, including the other example posted here. Just remember to test whether you already have the window open or not and act appropriately. ~~~ Nick Tonkin On Tue, 20 Nov 2001, Ben Demonte wrote: How to create a browser popup windowhow do I unsubscribe

[OT] Re: How to create a browser popup window

2001-11-20 Thread Nick Tonkin
follows. It's much simpler now... So simple it only does half of what it did :) /THREAD ? - nick

[OT] [But fun] Cookies and Microsoft

2001-11-19 Thread Nick Tonkin
Speaking of the risks of using cookies for auth* stuff: http://dailynews.yahoo.com/h/cn/2009/tc/microsoft_apologizes_in_security_flap_1.html ~~~ Nick Tonkin

[OT] Re: CVS

2001-11-15 Thread Nick Tonkin
) and use them for versioning. Rolling back to an earlier version of your data is as simple as creating a new DB from your table defs, then mysqlbinlog log-file | mysql new-db See http://www.mysql.com/doc/B/i/Binary_log.html for more info. ~~~ Nick Tonkin On Thu, 15 Nov 2001, Jonathan M

Re: [challenge] new mod_perl site

2001-11-14 Thread Nick Tonkin
day :) -nick

Re: config.status for mod_perl ?

2001-11-04 Thread Nick Mason
1/34 test scripts, 97.06% okay. 0/374 subtests failed, 100.00% okay. make: *** [run_tests] Error 29 After this we were stuck up, hence thought of copying the existing installation on a similar machine which seems to be working !. Thanx Nick. --- Ged Haywood [EMAIL PROTECTED] wrote: Hi

[OT] Nimda etc (was Re: New mod_perl hacker wannabe . . .)

2001-10-29 Thread Nick Tonkin
Er, you might look at http://www.tonkinresolutions.com/MSIISProbes.pm.html ... Always a good idea to search the mod_perl list archives, as well as put out ideas in the present tense :) Nick ~~~ Nick Tonkin On Mon, 29 Oct 2001, Louis LeBlanc wrote: On 10/28/01 08:29 PM, Jeremy

Re: Mod_perl component based architecture

2001-10-16 Thread Nick Tonkin
Application Servers ... it seems that you get the same effect but with more control. Of course, I've had the luxury of afew years' experience; someone starting out may prefer a canned solution ... - nick ~~~ Nick Tonkin On Tue, 16 Oct 2001, Bill Moseley wrote: I've been looking

Re: MSIISProbes.pm v1.03

2001-09-28 Thread Nick Tonkin
no /tmp, hafta look at the code). - Nick

  1   2   >