mod_perl and NES/iPlanet

2001-05-23 Thread Niral Trivedi
All, I know this is stupid question... but I want to confirm this thing from apache/mod_perl Gurus here.. mod_perl can not be used with NES or iPlanet web server, right? We are so much screwed up here with iPlanet but we have to use that for some other reasons.. So, we were exploring the

RE: mod_perl and NES/iPlanet

2001-05-23 Thread Niral Trivedi
:[EMAIL PROTECTED]] Sent: Wednesday, May 23, 2001 10:36 AM To: Niral Trivedi; '[EMAIL PROTECTED]' Subject: Re: mod_perl and NES/iPlanet If you just want to speed up CGI Scripts, Speedy::CGI is a good, supported persistent perl mechansim that plugs in well in an Iplanet WEb Server environment. I think

RE: Pointer to a CGI.pm list

2000-10-03 Thread Niral Trivedi
check 'perldoc CGI' and by the way.. what is your problem.. if you can give a snippet of your error and/or code then somebody may be able to help you.. Niral -Original Message- From: Roderick A. Anderson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 03, 2000 5:17 PM To: [EMAIL

may be an offtopic question

2000-08-30 Thread Niral Trivedi
Hello All, Sorry for asking this question, but If you know any other mailing list to post this message, please give me the address... I know that perl 5.6 does support to some extent utf8 and unicode.. but can somebody point to me some site or resources which has examples on that??? Because I

Re: cleaning old Apache::Session's

2000-06-02 Thread Niral Trivedi
Tobias, What do you exactly mean by line 'Internally the session will expire after 30 minutes.'??? Is it something internal to Apache::Session or you have it programmed on custom basis or what??? Niral Tobias Hoellrich wrote: At 09:26 AM 6/2/00 +1000, Adam Cassar wrote: I was wondering

Apache::Session

2000-06-01 Thread Niral Trivedi
All, I have just installed Apache::Session successfully with Apache/mod_perl version 1.24.. I have two sample script one from example avaiable with installation which uses 'Apache::Session::File' for session tracking and other file, I have created from the given example but that uses

Re: Apache::Session

2000-06-01 Thread Niral Trivedi
Yup... you were right Josh But actually I have defined that column as 'text' and not 'BLOB'.. But, I wrote a small script to write query on that column and I was able to see that.. So, my confusion has gone now.. The reason why I was wondering is, I had one application in which I am using

Apache::Session

2000-06-01 Thread Niral Trivedi
All, I need to clear myself on a small issue regarding Apache::Session. As per my understanding, Apache::Session will store session information in a backing store-either a flat file or in some database. And everytime, request comes in, it will check for sessionID in backing store and retrieve

Confusion on Apache::DBI

2000-05-18 Thread Niral Trivedi
All, Sorry if this question sounds stupid.. but I am new to mod_perl and Apache::DBI.. I have successfully installed Apache Server 1.3.12 and mod_perl 1.24 and Apache::DBI 0.87 on Solaris 2.7. And I have tested all successfully... But confusion arised when I created a startup.pl file and tried

Re: Confusion on Apache::DBI

2000-05-18 Thread Niral Trivedi
Thanks Geoff, You were right... I was using "DBI:mysql:DBNAME::localhost" as connect string in startup file whereas "DBI:mysql:DBNAME" in my mod_perl script.. I have changed that and it worked... Now, another question.. As we agreed, we can have as many db handle available as server processes

Re: Confusion on Apache::DBI

2000-05-18 Thread Niral Trivedi
I understood now... Thank you all for your responses.. Niral Perrin Harkins wrote: On Thu, 18 May 2000, Niral Trivedi wrote: Now, with Apache::DBI, we'll have one DBI handle per child process during the server startup. Now, let's say one child has started its processing and hasn't

may be an offtopic question..

2000-05-10 Thread Niral Trivedi
All, I am not sure whether this is the right place to ask this question... sorry if not.. My question is, Can we use custom database for authentication with Apache instead of default text based authentication??? Has anybody done that before?? I have looked apache site and cpan site.. but

may be an off topic question..

2000-04-06 Thread Niral Trivedi
All, I am not sure whether this is the right group to post this question.. I have found this thing in book "Writing Apache Modules with PERL and C" from O'Reilly.. This book has a topic in it in which it has given an example using a module called 'IPO::Shareable' which is available from CPAN

Re: Apache::DBI problem..

2000-04-05 Thread Niral Trivedi
Actually I already have MySQL module installed on our machine... Because I am able to run cgi/perl script which uses DBI module.. I mean I am able to run any normal cgi script.. So, I think that suggests that we have all the required module installed on our machine.. Niral Rajesh Kumar Mallah

Apache::DBI problem..

2000-04-04 Thread Niral Trivedi
All.. I am new to mod_perl so, please forgive me if this questions sounds stupid.. I have successfully installed mod_perl 1.22 and Apache 1.3.12 under BSD/OS BSDI 3.1 And able to run normal cgi script... But problem occurs while I am trying to run script with DBI.. I have successfully