Mag Gam

2013-07-21 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
, 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' Look at the permissions on both /tmp and /tmp/.s.PGSQL.5432 $ ls -ld

Re: strange permission errors

2008-03-11 Thread Mag Gam
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 permission error: [Mon Mar 10 13:47:33 2008] [error] Can't call method

Re: Question about open()

2008-02-10 Thread Mag Gam
/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:06 PM, Mag Gam [EMAIL PROTECTED] wrote

Re: Question about open()

2008-02-10 Thread Mag Gam
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

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

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

Re: CGI versus Apache::Request -- confusion

2008-01-31 Thread Mag Gam
;, then you will get the object. I hope this helps. -Ants *Mag Gam [EMAIL PROTECTED]* wrote: 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 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: Thanks. Looks like I may look

Re: Correct way to upload a file

2007-08-11 Thread Mag Gam
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 and most efficient way to upload the file, and perform

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