Re: Sending a different protocol header

2003-09-09 Thread hans
gt; > --Geoff > "assbackwards" works. Thanks! When I first read your response about a method called "assbackwards" I thought it was sarcasm :) ICY is for IceCast, a protocol for sending meta information about music streams. Thanks again. -HANS

Sending a different protocol header

2003-09-07 Thread Hans
this be done? I also tried changing the ICY line above to "Status: ICY 200 OK", and the server ended up outputing, "HTTP/1.1 ICY 200 OK" I've read the documentation and posts about PerlOptions +ParsedHeaders, etc. but nothing has pointed me to a way to completely control the headers that are being sent out. Please help! -HANS

Re: Be carefull with apache 1.3.24

2002-03-25 Thread Hans Juergen von Lengerke
John Siracusa <[EMAIL PROTECTED]> on Mar 25, 2002: > Does anyone know how I can put my ProxyIOBufferSize config line in a > conditional that'll keep it from blowing up if I'm using a version > of apache earlier than 1.3.24? You could use but that would mean that the command that starts apache n

[OT] Replacing reverse squid with mod_proxy

2002-03-25 Thread Hans Juergen von Lengerke
We are currently using squid set up as a reverse proxy to accelerate several heavy backends (mod_perl, etc) and to protect them from slow client connections. I am looking into replacing the squid with apache+mod_proxy. Why? Because ultimately I'd like to be able to cluster the frontend using mod_

Problem Removing Handlers

2002-03-14 Thread Hans Poo
nt_callback; warn 'this should not be called'; } " It happens that the callback printed in the above warn is: PerlInitHandler Exacty what i though was removed with: $r->set_handlers( PerlInitHandler => undef); Hans

Re: POST and multipart/data-form question

2002-03-14 Thread Hans Poo
print "$hash->{$value}$CRLF$value$CRLF"; > } > > exit; > > > Any ideas? I would love to get this solved so I can get back to developing > useful scripts. :) > > Thanks! > Ward > > Ward W. Vuillemot > Boeing Flight Operations Engineering > Performance Software > tel +01 206-662-8667 * fax +01 206-662-7612 > [EMAIL PROTECTED] just to test, if you trie: perl -MCGI -e 'print CGI::start_multipart_form()' you get and not: multipart/data-form as you write May be you spelled it wrong on he message, but this may be your problem. Hans

Re: Cookies and redirects

2002-03-12 Thread Hans Poo
er, > and set a cookie at the same time? > > Thanks in advance, > Axel Andersson Have you tried printing the headers_out hashref after sending the http header to see if the cookie is there ?. my $headers_out = $r->headers_out; foreach (keys %$headers_out) { warn "$_=$headers_out->{$_}"; } Hans

Deleting a cookie manually

2002-03-09 Thread Hans Poo
Hi I need to delete directly a session cookie before begining some processing. I need to clean directly the cookie from the cookie table for after processing hans

Re: problems with $r->status('OK')

2002-03-04 Thread Hans Juergen von Lengerke
... $r->status(OK); # No quotes, it's a constant HTH, Hans

Re: [OT] Perl compillation

2002-02-22 Thread Hans Poo
s in the system is trying to load a file as a shared > library when it isnt - although that doesnt really help me isolate or > debug the problem. > > Ofcourse a search of the perl-beginner list archive didnt help. > > > > Regards > Mithun I am running RedHat 7.2 and i'

Apologyze, Please delete my last message

2002-02-21 Thread Hans Poo
Please delete my last message I apologyze because i make a mistake in my last message. I was sending an internal mail and the "To" field was with mod_perl and i put the real destinations in the CC section. Sorry Again. Hans Poo

Como estamos trabajando

2002-02-21 Thread Hans Poo
esquema de trabajo se hicieron muy altos. Nos dimos cuenta que era necesario instalar dreamweaver en los computadores con Linux. Como resultado se ha agilizado el proceso de desarrollo. Esperamos los comentarios y aportes de todos en este proyecto conjunto. Hans

Re: [OT-ish] Session refresh philosophy

2002-02-20 Thread Hans Juergen von Lengerke
David Harris <[EMAIL PROTECTED]> on Feb 19, 2002: > The encoded information is [...] split into reasonable length hidden > fields. Why not put everything in one field? Are there restrictions? Does it make a difference when using POST? Hans

Re: PerlPassEnv and Proxies

2002-02-18 Thread Hans Juergen von Lengerke
st|access|ewok)/(.*)$ http://spare.article7.co.uk:8080/ENV_A7_FRAMEWORK/$1/page/$2 [P,L] mod_perl: RewriteRule ^/ENV_([^/]+)/([^/]+)/(.*)$ $3 [E=$1:$2,PT,L] I agree, its a big hack, but it works :-) HTH, Hans

Re: mod_perl compile problem

2002-02-14 Thread Hans Juergen von Lengerke
you earlier about this: You are using ActiveState Perl on Linux? I always thought ActiveState Perl is for Windows boxen. No? Hans

Re: Configuration loading twice - how to cope?

2002-01-10 Thread Hans Poo
t in the eagle book, but as i remember apache make a "fake checking start" first after the real start of the server. This may be what you are seeing. Hans Poo

Re: Apache and Perl togheter

2002-01-10 Thread Hans Poo
Alan As i understand what you are doing is nothing perl related, what you are using is apache module mod_cgi compiled in by default in apache. You must check if your script compiles and run from the shell: #cd youtscritpsdir #perl -wc myscript.pl #perl myscript.pl #chmod 755 myscript.pl #./myscript .pl If all this works you defionitely must check your error_log Hans Poo

Re: Apache and Perl togheter

2002-01-09 Thread Hans Poo
gt; Alan Alan As i understand  what you are doing is nothing perl related, what you are using is apache module mod_cgi compiled in by default in apache. You must check if your script compiles and run from the shell: #cd youtscritpsdir #perl -wc myscript.pl #perl myscript.pl #chmod 755 myscript.pl #./myscript .pl If all this works you defionitely must check your error_log Hans Poo

Lost form values with direct calls to param in CGI.pm

2002-01-04 Thread Hans Poo
dule Apache::Registry SetHandler perl-script PerlHandler Apache::Registry Options ExecCGI Note: I've just changing my email, may be this email is going to be duplicated. Sorry if this happen. Hans Poo

Re: Feeling stupid

2002-01-04 Thread Hans Poo
worked and works under non-modperl'ed Apache. > > I've read all documentation as carefully as possible, and I'm feeling > immesurably stupid :-((( > > Mod_perl IS active, at least, other virtual site with HTML::Mason runs > neatly! > > What could I do wrong? > > Alex. the line must be: SetHandler perl-script with a dash between perl an script. Hans Poo

Lost form values with direct calls to param in CGI.pm

2002-01-04 Thread Hans Poo
dule Apache::Registry SetHandler perl-script PerlHandler Apache::Registry Options ExecCGI Hans Poo

Re: mixing cgi-bin & mod_perl

2001-12-20 Thread Hans Poo
l Unix Tools, but I won't drop them for perl just > because it's the cool language of the moment... (Not that I don't like > perl, mind you...) > > Regards, > > Luciano Rocha I think Randall is just trying to show a cool application of File::Find, and int the menatime save some CPU and memory cycles. I like it. Hans Poo

Convert bitmap

2001-12-19 Thread Hans-Olof Hermansson
Hi, I am looking for a perl module that can convert a bitmap picture to jpeg or gif. I am sending a bitmap from a Pocket PC device to a Solaris webserver running Apache. If anyone has any tips it will be greatly appreciated. Reagrds Hans-Olof

Re: ASP.NET Linux equivalent?

2001-12-05 Thread Hans Poo
isfactions, else there would not be so many poor > people. > -- Don Herold I believe that sometimes people want to stop thinking and let the GUI do that Job, obviously, it's not possible. Over Expectations over GUI often leads to troubles in planification It's a fact that with the GUI's you stop understanding what you are really doing. Hans Poo

Re: [modperl site design challenge] please vote

2001-12-04 Thread Hans Poo
Another mod_perl Hacker > > > http://stason.org/ mod_perl Guide http://perl.apache.org/guide > > > mailto:[EMAIL PROTECTED] http://ticketmaster.com http://apacheweek.com > > > http://singlesheaven.com http://perl.apache.org http://perlmonth.com/ > > > >Please, can you send the address of the three designs? Ok, please don't kill me, sorry, it's OK now, Hans

Re: [modperl site design challenge] please vote

2001-12-04 Thread Hans Poo
El Mar 04 Dic 2001 05:39, Stas Bekman escribió: > Thomas Klausner, Allan Juul and Carlos Ramirez have answered the > challenge and submitted their modperl site designs. Thank you folks! > > Now it's a time for you to chose the design that you like the most by > voting at http://www.tohubohu.net/cg

Re: problem, pulling my dam hair out

2001-11-30 Thread Hans Poo
CGI qw/:standard/; print header; or the mod_perl way.... In any case, you miss to Put a mod_perl directive "PerlSendHeader on" (to fix malformer headers) in your directory configuration. Hans Poo

Re: Perl and Microsoft Excel?

2001-11-30 Thread Hans Poo
d ideas. I recommend making a mod_perl application for the list and store the information in mysql (and forget about excel if you can), and then, just take that information and publish on the web. Hans

Re: Deleting a cookie

2001-11-27 Thread Hans Poo
ECAUSE COOKIE IS > GONE.) > > } > > sub _get_ticket { > my $args = { > 'r' => undef, > @_ > }; > my $r = $args->{'r'}; > my %cookies = CGI::Cookie->parse($r->header_in('Cookie')); > # TESTING > my %ticket = $cookies{'Ticket'}->value; # TESTING > return \%ticket; > } > > 1; > = Set it again with an expiration time of 'now', i actually use it with CGI.pm You can send it with a custom invalid value, like 'invalidated', and take apropriate actions. Hans Poo

Upgrade Perl to 5.6.1and mod_perl still see 5.6.0

2001-11-27 Thread Hans Poo
/lib/perl) at (eval 3) line 3. [FALLÓ] # Hans Poo

Persistent HTTP Connections ala Apache::DBI

2001-11-22 Thread Hans Juergen von Lengerke
I'm working on a web application which obtains data via a legacy system rather than DBI. Using DBI is (unfortunately) not an option. The machine where the web application runs cannot run the legacy system. Thus, the setup looks somewhat like this: DB <=> DB Query (Legacy) <=> Apache/mod_pe

Re: Help with converting from plain CGI to mod_perl

2001-10-17 Thread hans
, if it's already up you don't do nothing. To finish, i keep the database handle $dbh in a library or Object that must be "use"d in the script and all the objects or libraries that use the database directly. This handle must be exported by default by the library. Hans Poo

Re: Redirections after printing content

2001-10-09 Thread Hans Poo
Andrew Ho wrote: > Hans, > > HP>I'am new to the list, and i've been looking for a solution for > HP>buffering, in order to decide to make a redirect after the printing of > HP>HTML content. It seems that $| don't work fot this. > > Whether or no

Redirections after printing content

2001-10-08 Thread Hans Poo
27;t use this module, and i just have mod_perl. Hans Poo

Re: proxy block list module?

2001-10-08 Thread Hans Poo
gt;substituted for $r->uri so that proxy > requests are denied with the full URL as the reason and not '/'. > > If anyone is interested I will stress-test it and then enter the module to CPAN. If >there is nothing similar I will develop > it to allow for cached IP lookups (to convert the IP->domain name and match on that >in the list) and add other > refinements. > > Mark > > Mark Tiramani > FREDO Internet Services > [EMAIL PROTECTED] Hi What you need is mod_rewrite module from Ralf Engelshall. Hans Poo

Re: Apache::DBI Segmentation fault

2001-09-10 Thread Hans Juergen von Lengerke
Module Apache::Registry' in my httpd.conf I also get the segfault. I am aware that any modules that use DBI must be loaded _after_ Apache::DBI but I didn't think Apache::Registry uses DBI, or does it? Hans Perrin Harkins: > > I am getting a segmentation fault on configtest when using

Re: Apache::DBI Segmentation fault

2001-09-10 Thread Hans Juergen von Lengerke
_dlsymun=undef, ccdlflags='-rdynamic' cccdlflags='-fpic', lddlflags='-shared -L/usr/local/lib' Characteristics of this binary (from libperl): Built under linux Compiled at Nov 6 1999 15:47:59 @INC: /usr/lib/perl5/5.00503/i586-linux /usr/lib/perl5

Apache::DBI Segmentation fault

2001-09-10 Thread Hans Juergen von Lengerke
2.8.4 OpenSSL/0.9.4 Perl 5.005_03 Apache::DBI 0.88 DBI 1.14 # works fine without Apache::DBI Any help or pointers are appreciated. Hans

Apache::ASP Error

2000-07-23 Thread Hans Fuchs
r/lib/perl5/site_perl/5.005/Apache/ASP.pm line 1740 What can I do? Best, Hans -- Gesendet an [EMAIL PROTECTED] am 23.07.2000 mit The Bat 1.42f Homepage: http://www.enova.ch - EMail: [EMAIL PROTECTED] Public Key: http://www.enova.ch/gucky/gucky.htm "Funkybeats for ever!" Anhang:

Re: [PHP] redirecting a domain

2000-07-14 Thread Hans H. Anderson
ss.net/kurth/pgp > > Fight Weak Encryption! Donate your wasted CPU cycles to Distributed.net > (http://www.distributed.net) > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL

how to get OFF this maillist ??????????

1999-10-05 Thread Hans Neukomm
hello please can anyone tell me how to get OFF this maillist ??? thanks hans begin:vcard n:Neukomm;Hans tel;pager:ICQ#17929735 for chat upon prior arrangement tel;cell:Germany ++49 (0)172 - 833 75 91 day + night for all emergencies x-mozilla-html:TRUE url:http://www.kriyayoga.com