Re: VirtualHost and ServerAlias

2011-11-28 Thread Jay Scherrer
custom contact lists as your user base increases. Jay Scherrer On 11/28/2011 11:37 AM, André Warnier wrote: Vincent Veyron wrote: Hi Group, I host a web service for my customers (ex : insurance_company.com) on a virtual host (*); my customers in turn want their customers (the policyholders

Re: mod_perl waters too deep

2009-12-14 Thread Jay Scherrer
Tosh, If your users are already verified or not, try using a switch statement based on their inputs directing them to the needed function. If they already have cookie info use that as your switch/case redirection. Jay Scherrer Tosh Cooey wrote: You may have seen my other recent questions

Re: PDF creation tools

2007-09-05 Thread Jay Scherrer
A very simple that I have used is PDF::Create. I don't know if they have done any upgrading. However, it had enabled me to create pdf files for tax purposes on the fly very easy. Jay Scherrer Scherrer Company Real Estate and Tax strategies 206.701.7952 Bill Whillers wrote: Hello, I'm

Re: Testing a Handler

2006-09-10 Thread Jay Scherrer
= Apache::FakeRequest-new(); MyApp::handler($req); instead of : $req = Apache::FakeRequest-new(); MyApp::handler($request); Jay Scherrer

Re: Receiving user input

2006-08-31 Thread Jay Scherrer
Daniel B. Hemmerich wrote: Anyone have a code snippet of a routine that will parse both POST and GET user input and place it into a hash? Thanks! I have used cgi-lib.pl from http://cgi-lib.berkeley.edu for awhile now. Jay Scherrer

Re: configuration problem

2006-07-13 Thread Jay Scherrer
pages from /myhome/web, then you should create a document root /myhome/web. Then define the directory. Full description: document root /myhome/web Directory /myhome/web Options FollowSymLinks AllowOverride None Order allow,deny Allow from all /Directory Jay Scherrer

Re: require() function : strange result

2005-11-30 Thread Jay Scherrer
Simon, Your required file may not already be loaded the first time. Meaning that the file: test.pl will not be loaded until actually required. But once you use the file, it will be part of the ongoing process. Jay Scherrer On Thu, 2005-12-01 at 12:16 +0800, Simon Wong wrote: Dear All, I have

Re: Is mod_perl installed

2005-05-21 Thread Jay Scherrer
Cfaust, What does your httpd.conf file say after the modules listing? If it says something like: # #load configfiles from the config directory /etc/httpd.conf.d # Include conf.d/*.conf # Then check there for your: perl.conf file. Within the perl.conf file you will find: LoadModule perl_module

Re: Graphics / Pie Charts

2005-05-06 Thread Jay Scherrer
Both GTK+ and Perl::TK work really well. Using Perl GTK+ can actually manipulate graphics through the Gimp. Jay Scherrer On Fri, 2005-05-06 at 15:34 -0400, David Hofmann wrote: In order to provided stat data on my companies website my boss has asked me to write a program that pulls stat data

Re: compiling perl on freebsd to support ithreads

2005-04-27 Thread Jay Scherrer
According to Schwartz, when he last spoke on the subject, He recommended using prefork with mp2. I guess he wasn't impressed enough with threads yet. Jay Scherrer On Wed, 2005-04-27 at 08:39 +0200, Tom Schindl wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Foo Ji-Haw schrieb: | Hello

Re: compiling perl on freebsd to support ithreads

2005-04-27 Thread Jay Scherrer
I thought that it was a module compiled into Apache MPM. That you use when compiling mp2. My bad Jay Scherrer On Wed, 2005-04-27 at 16:43 +0200, Tom Schindl wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jay Scherrer schrieb: | According to Schwartz, when he last spoke

Re: which fedora core for MP2

2005-04-15 Thread Jay Scherrer
FC3 of course, FC2 has been retired. Jay Scherrer On Fri, 2005-04-15 at 17:08 +0100, angie ahl wrote: Hi guys I'm getting a new server set up with rackcheck and I've chosen fedora core, as I sort of know it. It's also going to have plesk on it which I've not used at all yet, but looks

Re: Problem with apache and mysql

2005-03-11 Thread Jay Scherrer
Have you tried to create a persistent connection between mod_perl and MySQL? DBI connect within your startup.pl? Jay Scherrer On Wednesday 09 March 2005 01:45 pm, Alejandro Galue wrote: Hello All, I'm using Fedora Core 3 with this packages version (RPM): httpd-2.0.52-3.1 mod_perl-1.99_16

Re: Controlling licensed software?

2005-02-20 Thread Jay Scherrer
How about the use of a package supplied by you which is designed to check with your client database from within the rented or leased software? Jay Scherrer On Sunday 20 February 2005 12:33 am, Matisse Enzer wrote: You probaly need to write some critical portion of your application

Re: Controlling licensed software? [veering OT]

2005-02-20 Thread Jay Scherrer
Personally, I like requiring my own package at startup. In wich case also notifies the client of any updates. Thus reminding them to renew their subscription. Jay Scherrer On Sunday 20 February 2005 03:49 pm, Todd Finney wrote: At 02:59 PM 2/20/2005 -0500, Chris Puccio wrote: Thanks

Re: Need help getting DBI to work under mod_perl

2005-02-06 Thread Jay Scherrer
It's trying to connect to port 49. By default MySQL listens to 3606. Somewhere it was changed. Jay Scherrer On Sunday 06 February 2005 06:24 am, Tom Schindl wrote: Give it a try and add the hostname you are connecting to to the DSN. Tom Boysenberry Payne wrote: I'm able to run DBI

Re: Trying mod_perl for the first time - how to enable it?

2005-01-26 Thread Jay Scherrer
# Chapter 2: Practical mod_perl Jay Scherrer On Wednesday 26 January 2005 08:46 pm, Randy Kobes wrote: On Wed, 26 Jan 2005, Edward Wijaya wrote: Dear all, I am trying my mod_perl in my Apache webserver for the first time (under Mdk-Linux). I have created a simple print hello world

Re: ModPerl Installiation help

2005-01-19 Thread Jay Scherrer
you go. Make sure you point the @INC to your installed lib locations. And as you keep your sys updated Apache, Perl, mod_perl will be updated as well cause they will be in sync with the RPM registry. Jay Scherrer On Wednesday 19 January 2005 07:28 am, steve silvers wrote: I'm running Redhat 8

Re: Problem on RedHat Enterprise 3.0

2005-01-19 Thread Jay Scherrer
Darren Young, Have you checked to see if Apache::RequestRec was installed? Try CPANing the installation of Bundle::Apache. It looks like your mod_perl is looking for the Lib ok but it's not installed. Jay Scherrer On Wednesday 19 January 2005 12:58 pm, Young, Darren wrote: Apache

Re: Problem on RedHat Enterprise 3.0

2005-01-19 Thread Jay Scherrer
Instead of mv'ing your Apache lib, couldn't you not include it and just stipulate the libs you want to use in the startup.pl script? Jay Scherrer On Wednesday 19 January 2005 03:27 pm, Aaron Hawryluk wrote: I didn't get the full text of this message, but if the apache modules aren't loading

Re: OT: Free Software as a Security Hole

2005-01-12 Thread Jay Scherrer
Perhaps you sould read the source. But I think your looking for some backing with your discussion. Try posting to the [EMAIL PROTECTED] and see what happens. Free software has their new zine out perhaps take a read. http://www.freesoftwaremagazine.com/free_issues/issue_01/ Jay Scherrer

Re: mod_perl speed difference between Fedora Core 1 and Fedora Core 3

2005-01-06 Thread Jay Scherrer
Why are you using Apache1.3? Have tried compiling Apache2 with MP2? With FC3 and SElinux threads are more prevalent. I thought thats why I was upgrading to Apache2. Use of better threading technology. On Thursday 06 January 2005 10:15 am, Alex Greg wrote: Hi, Recently I've upgraded one

Re: CGI apps receiving incomplete POST parameters

2004-12-22 Thread Jay Scherrer
What would happen if you extended the time out period of the server? Jay Scherrer On Wednesday 22 December 2004 03:04 pm, Kurt Newman wrote: I've recently converted from Apache 1.3.x to Apache 2.0/mod_perl 1.99 on RedHat 9. The issue I'm having are for those applications that attempt

Re: Runs on Perl 5.8.0 but no on 5.8.3:[DBI]

2004-12-21 Thread Jay Scherrer
Does this have something to do with SElinux? At what security level is your SE-Linux turn on? Because on FC2 SE was by default set to high. Jay Scherrer On Tuesday 21 December 2004 02:44 am, Chetan Anand wrote: Hi, Whenever I execute a Perl script the following error is displayed in apache's