Server side programming PHP Vs CGI Vs modPerl

2003-02-12 Thread Devi .M
Hello All, We have a server running in a Linux machine, now we would like to present the data in a browser using HTML interface. Can anyone suggest me which is the best one (CGI or PHP or modperl) to develop for web programming and also their advantages and differences to choose them as the

compile apache with mod_perl

2003-02-12 Thread Jozwiak, Paul
Does anyone know why I keep getting: [Wed Feb 12 10:35:03 2003] [notice] child pid 312 exit signal Segmentation Fault (11) in my error_log? I have tried rebuilding the machine, installing older versions of apache, different C compilers, changing my mod_perl versions and still get this message ev

Has Apache::Cookie been ported to mod_perl-2 yet?

2003-02-12 Thread Charles McElhose Jr.
Has Apache::Cookie been ported to mod_perl-2 yet? I tried to install the libapreq-1.1 module with mod_perl-2/apache 2 and am getting a "can't locate Apache/MyConfig.pm ..." error. Charles M. [EMAIL PROTECTED]

501 - Protocol scheme 'http' is not supported

2003-02-12 Thread Db-Doc SP
Hi All, We get the following error 501 Protocol scheme 'http' is not supported when the perl script is excuted from perlTranshandler my $ua = LWP::UserAgent->new; $ua->agent("MyApp/0.1 "); my $req = HTTP::Request->new(GET => 'http://www.msn.com');

Re: compile apache with mod_perl

2003-02-12 Thread Stas Bekman
Jozwiak, Paul wrote: Does anyone know why I keep getting: [Wed Feb 12 10:35:03 2003] [notice] child pid 312 exit signal Segmentation Fault (11) in my error_log? I have tried rebuilding the machine, installing older versions of apache, different C compilers, changing my mod_perl versions and sti

Re: mod_perl 2.0 question about $r->connection->auth_type

2003-02-12 Thread Stas Bekman
Brian Millett wrote: Hi, I've just about got the Apache::AuthCookieDBI to work with Apache 2.0.44 & mod_perl 1.99_09-dev, but I ran into a problem with the $r->connection object not having "auth_type" or "user" defined. The $r->auth_type work just fine. Are these the same reference? What shou

compile apache with mod_perl

2003-02-12 Thread Jozwiak, Paul
Does anyone know why I keep getting: [Wed Feb 12 10:35:03 2003] [notice] child pid 312 exit signal Segmentation Fault (11) in my error_log? I have tried rebuilding the machine, installing older versions of apache, different C compilers, changing my mod_perl versions and still get this message ev

mod_perl 2.0 question about $r->connection->auth_type

2003-02-12 Thread Brian Millett
Hi, I've just about got the Apache::AuthCookieDBI to work with Apache 2.0.44 & mod_perl 1.99_09-dev, but I ran into a problem with the $r->connection object not having "auth_type" or "user" defined. The $r->auth_type work just fine. Are these the same reference? What should I look for, or use?

Re: Help-me

2003-02-12 Thread Ged Haywood
Hello there, On Wed, 12 Feb 2003, Rangel, Luciano wrote: > Please help-me with error. > > > waiting for server to start: .[Wed Feb 12 14:56:58 2003] [info] 20 Apache:: > modules loaded > [Wed Feb 12 14:56:58 2003] [info] 5 APR:: modules loaded > [Wed Feb 12 14:56:58 2003] [info] base server

Help-me

2003-02-12 Thread Rangel, Luciano
Hi. Please help-me with error. waiting for server to start: .[Wed Feb 12 14:56:58 2003] [info] 20 Apache:: modules loaded [Wed Feb 12 14:56:58 2003] [info] 5 APR:: modules loaded [Wed Feb 12 14:56:58 2003] [info] base server + 5 vhosts ready to run tests

please dont send general mails to me

2003-02-12 Thread UTPAL BANARJEE
I  am  from a remote  place  of  India  from where  I  get  connected  with  much  problem actually  I  am  looking  for  some  gay  friends  and  without  knowing  in  details  about  your  site  I  have  sent  a  message  to  you if  you  are  a  different  site   please  forgive  me and

mails to be despatched in my name

2003-02-12 Thread UTPAL BANARJEE
i have very little space in my mail box so please send mails which are specific in my name only

Re: Simultaneous GET and POST data

2003-02-12 Thread Serguei Trouchelle
Rob Lambden wrote: I found that posting to a page with a query string using CGI.pm parse the args *never* gave me the query string arguments. CGI.pm 2.89 always give arguments. -- Serguei Trouchelle http://www.isd.dp.ua/

Re: Simultaneous GET and POST data

2003-02-12 Thread Rob Lambden
>Is this behavior with CGI.pm sporadic? It only happens once every few hundred >(maybe thousand) requests of a certain page. I found that posting to a page with a query string using CGI.pm parse the args *never* gave me the query string arguments. Using Apache::Request it now seems to *always*

Re: Simultaneous GET and POST data

2003-02-12 Thread Stathy G. Touloumis
I recently changed form handling and got bitten by query strings. My previous code used CGI.pm to parse the arguments (but not to run my scripts). When I changed to use Apache::Request to parse the arguments I found that I was seeing both the query string arguments and the posted argumnets. I

Re: Server returns nothing

2003-02-12 Thread cowsgoesm00
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Then it's probably a template error, check $tth->error()'s value, after the process()ing. also you might wanna try the template toolkit mailing list? You are trying tt's USE directive, and that module isn't returning a true value from new() on given

Re: source code appears as text listing in browser

2003-02-12 Thread Geoffrey Young
Alois Treindl wrote: I tried to follow instruction in mod_perl developer's cookbook to move exitings CGI script to mod_perl. What happens is that the browser lists the source code of my CGI scripts, instead of excuting them, what this means is that the normal Apache handler that sends stati

Server returns nothing

2003-02-12 Thread Viljo Marrandi
Hello, I have a mod_perl + Template-Toolkit driven web-site with some 20+ perl modules. Apache is 1.3.26, mod_perl is 1.26 and TT is 2.08. Problem is, sometimes happens that I get absolutely no response from server, browser just says that 'Document contains no data' and even server accesslog does

Re: source code appears as text listing in browser

2003-02-12 Thread Bernhard van Staveren
[snip] > The same scripts in the cgi directory do fine, as they always have, > when I run them as regular cgi scripts. > > I am using Apache 1.3.27 on HPUX, with mod_perl 1.27 > > What might I be doing wrong? I've never used Apache::PerlRun to run old CGI scripts, always used Apache::Registry s

source code appears as text listing in browser

2003-02-12 Thread Alois Treindl
I tried to follow instruction in mod_perl developer's cookbook to move exitings CGI script to mod_perl. What happens is that the browser lists the source code of my CGI scripts, instead of excuting them, when I create a special mod_perl directory with this configuration. PerlModule Apache::Per

Re: Simultaneous GET and POST data

2003-02-12 Thread Rob Lambden
Stathy Touloumis wrote: >Has anyone experienced issues with retrieving data when POSTed by a form >whith an action parameter that has a query string attached to it? On rare >occasion it seems that the posted data is not available. I recently changed form handling and got bitten by query strings