Re: urgent help needed - this script does not chdir

2007-01-14 Thread Perrin Harkins
abhishek jain wrote: I am new to modperl and needs help, i have a script which works fine in non-modperl enviornment but when i include in modperl::registry then mine scripts when invoked via a browser finds itself in / directory http://perl.apache.org/docs/2.0/user/porting/compat.html#C_Apach

urgent help needed - this script does not chdir

2007-01-14 Thread abhishek jain
Hi, I am new to modperl and needs help, i have a script which works fine in non-modperl enviornment but when i include in modperl::registry then mine scripts when invoked via a browser finds itself in / directory i mean the file or script do not include the files with the require command i mean th

Re: urgent help needed

2006-08-01 Thread Tom Schindl
Ok. That's really basic database stuff: Normally every Select-statement you send to a database has 3 steps: 1. Prepare ClientLib sends Statement to Database which does different checks: - Syntax - do tables exists - ... 2. Execute ClientLib sends database information to execute the

Re: urgent help needed

2006-08-01 Thread Tom Schindl
That's completely easy you simple load Apache::DBI when the server starts see the Apache::DBI docu. The rest of your code stays as is. http://search.cpan.org/dist/Apache-DBI-1.01/lib/Apache/DBI.pm Tom philge philip schrieb: > am very new to mod perl, actually we were just using use DBI modules a

Re: urgent help needed

2006-08-01 Thread Tom Schindl
It seems you are using old documentations: philge philip schrieb: > Following are the scripts I tried to run.For the first script I got the > result and it shows mod_perl is installed and running but in the second > script am unable to load the apache module.I have also attached the part of > th

Re: urgent help needed

2006-07-31 Thread Robert Nicholson
Google for mod_perl book and read it. I'm sure it has the correct steps to get perl and @INC setup correctly.http://modperlbook.org/html/ch03_09.htmlAfter you've loaded the perl module itself you want to change @INC to include where Apache2is. If you want I think you can put that logic in an stanz

urgent help needed

2006-07-31 Thread philge philip
Dear colleague   I am a bioinformatics programmer from India.I need a guidance for configuring mod_perl2.0 in my server.   I have Apache.2.0.5.2 and Perl 5.8.5 installed in Fedora 3 operating system. I downloaded mod_perl2.0 version and installed it with the following commands:   Perl MakeFf

Re: urgent help needed

2006-07-27 Thread Philip M. Gollucci
philge philip wrote: PerlModule Apache2 No, this is obsolete and is your 1 and only problem based on what you sent. See here: http://perl.apache.org/docs/2.0/rename.html -- Philip M. Gollucci ([EMAIL PROTECTED]) 323.219.47

Re: urgent help needed

2006-07-27 Thread Kjetil Kjernsmo
On Thursday 27 July 2006 17:36, Boysenberry Payne wrote: > LoadModule apreq_module    /usr/local/apache2/modules/mod_apreq2.so I think this line is probably what you're missing, Philge. -- Kjetil Kjernsmo Information Systems Developer Opera Software ASA

Re: urgent help needed

2006-07-27 Thread Boysenberry Payne
Here is what I used to install libapreq2: at command line: perl5.8.8 MakeFile.PL --with-apache2-apxs=/usr/local/apache2/bin/apxs --enable-perl-glue --with-perl=/usr/local/bin/perl5.8.8 make && make test make install Then in the httpd.conf file: LoadModule apreq_module/usr/local/apache2/mo

urgent help needed

2006-07-27 Thread philge philip
Dear colleague   I am a bioinformatics programmer from India.I need a guidance for configuring mod_perl2.0 in my server.   I have Apache.2.0.5.2 and Perl 5.8.5 installed in Fedora 3 operating system. I downloaded mod_perl2.0 version and installed it with the following commands:   Perl MakeF