Mag Gam

2013-07-20 Thread Mag Gam
http://houtwormbestrijding-houtwormbestrijding.nl/mlwoeh/ibivodpmj.ikuklorzxzgycwtj Mag Gam 7/21/2013 7:24:11 AM

Re: strange permission errors

2008-03-17 Thread Mag Gam
ar 11, 2008 at 2:47 PM, Philippe M. Chiasson <[EMAIL PROTECTED]> wrote: > > > Mag Gam wrote: > > I get," The account is not currently available." > > That account has a disabled shell > > $> su apache -s `which sh` -c '/bin/ls /tmp/.s.PGSQL.5432

Re: strange permission errors

2008-03-11 Thread Mag Gam
. Chiasson <[EMAIL PROTECTED]> wrote: > Mag Gam wrote: > > Hi Gurus: > > > > Moving my application from development to production server. For some > > reason, I can't seem to execute my application when using mod_perl in > > production. I keep getting this p

strange permission errors

2008-03-10 Thread Mag Gam
Hi Gurus: Moving my application from development to production server. For some reason, I can't seem to execute my application when using mod_perl in production. I keep getting this permission error: [Mon Mar 10 13:47:33 2008] [error] Can't call method "prepare" on an undefined value at /var/www/:

Re: Question about open()

2008-02-10 Thread Mag Gam
kins <[EMAIL PROTECTED]> wrote: > On Feb 10, 2008 12:24 PM, Mag Gam <[EMAIL PROTECTED]> wrote: > > my $docroot = $r->document_root('/var/www/html/perl'); > > Why are you trying to change the DocumentRoot? > > - Perrin >

Re: Question about open()

2008-02-10 Thread Mag Gam
#x27;/var/www/html/perl'); print $docroot; For some reason, its still defaulting to /var/www/html. I need it to goto /var/www/html/perl Any thoughts? On Feb 7, 2008 5:14 PM, Chandrakumar Muthaiah <[EMAIL PROTECTED]> wrote: > > Perrin Harkins wrote: > > On Feb 6, 2008 10

Re: Trying to configure Apache2::Request

2008-02-10 Thread Mag Gam
Feb 10, 2008 12:06 PM, Perrin Harkins <[EMAIL PROTECTED]> wrote: > On Feb 10, 2008 1:57 AM, Mag Gam <[EMAIL PROTECTED]> wrote: > > doc.pl looks like this: > > #!/usr/bin/perl -w > > use strict; > > use CGI; > > use APR::Request::Apache2 (); > > >

Trying to configure Apache2::Request

2008-02-09 Thread Mag Gam
I have installed Apache2::Request via CPAN, but i keep getting this message in my error_log [error] Global symbol "$r" requires explicit package name at /var/www/perl/doc.pl line 10.\n Apache configuration looks like this: LoadModule perl_module modules/mod_perl.so LoadModule apreq_module modul

Re: Question about open()

2008-02-06 Thread Mag Gam
What is global.asa? Sorry, I am somewhat new at this... On Feb 6, 2008 10:10 PM, Roberto C. Sánchez <[EMAIL PROTECTED]> wrote: > On Wed, Feb 06, 2008 at 10:06:05PM -0500, Mag Gam wrote: > > Hi All, > > > > I have been using mod_perl, and I have several perl-cgi fi

Question about open()

2008-02-06 Thread Mag Gam
Hi All, I have been using mod_perl, and I have several perl-cgi files that use the open(). I use this function to open/include my header, footer, basically a poor man template system. Currently, when I open a file I have to use the absolute path (/var/www/appname/top.inc). Is it possible for me t

Re: CGI versus Apache::Request -- confusion

2008-01-31 Thread Mag Gam
r. The first argument to any handler is the request object. > > > I hope this helps. > > -Ants > > *Mag Gam <[EMAIL PROTECTED]>* wrote: > > But I am already reaping benefits of mod-perl. Not sure how > ModPerl:Registy is going to help. What is its main benefits?

CGI versus Apache::Request -- confusion

2008-01-30 Thread Mag Gam
Hi All, I am bit confused. While reading the mod_perl book, I noticed they are using Apache::Request versus CGI for form data handling. Why is that? Is it recommended to use Apache over CGI? Any advantages? I am using CGI because its a standard module. TIA

mod_perl and GD Graph

2008-01-23 Thread Mag Gam
Anyone using mod_perl with GD::Graph? I am interested in generating Imagepoints -- a feature in GD::Graph. I can't seem to find any example for this, has anyone been able to find any details about this? TIA

Connection Pooling

2007-11-24 Thread Mag Gam
Is it possible to do database connection pooling with mod_perl? Currently, all of my source code has a my $dbh. Is it possible to have my database stuff in a pool, and I just include it somehow? TIA

mod perl and HTML forms

2007-11-12 Thread Mag Gam
I am new to mod_perl, and I am trying to pass data thru a HTML form. I am able to get all data with the exception of "SELECT MULTIPLE" Can someone please provide a good example with this? Or show me a document I can refer to. TIA

Re: Correct way to upload a file

2007-08-15 Thread Mag Gam
Thanks Fred. The problem is, I don't have access to httpd.conf, therefore I can't run scripts like that. Is there an alternative? TIA On 8/13/07, Fred Moyer <[EMAIL PROTECTED]> wrote: > > [please cc the mod_perl list when responding] > > Mag Gam wrote: > > Fred

Re: Correct way to upload a file

2007-08-11 Thread Mag Gam
t; > > On Aug 10, 2007, at 10:25 PM, Mag Gam wrote: > > > I have just started learning perl and mod_perl, and I must admit I > > am enjoying it a lot! > > I am tying to upload a file, so I can do some calculations to the > > file, my question is what is the "

Correct way to upload a file

2007-08-10 Thread Mag Gam
Hi All, I have just started learning perl and mod_perl, and I must admit I am enjoying it a lot! I am tying to upload a file, so I can do some calculations to the file, my question is what is the "correct" and most "efficient" way to upload the file, and perform the calculations? Should I consider