Re: Making .pm files run.

2007-01-16 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, Jan 16, 2007 at 11:06:54AM -0800, iNetForce wrote: > > I installed Image Magick, but now im getting this error: Hi, Force just to repeat what has been said elsewhere in slightly different terms when you see this: > http# apachectl restart >

Re: Making .pm files run.

2007-01-16 Thread Sean Davis
On Tuesday 16 January 2007 15:12, iNetForce wrote: > You got me lost there, the terminology you guys use really throw me off, > sorry :( > sendmail is installed on the system, what exactly do I need to do so I dont > get the sendmail error? Things that end in .pm are usually perl modules. So, you

Re: Making .pm files run.

2007-01-16 Thread Michael Peters
iNetForce wrote: > You got me lost there, the terminology you guys use really throw me off, > sorry :( > sendmail is installed on the system, what exactly do I need to do so I dont > get the sendmail error? It's not sendmail, it's the Perl module named Mail::Sendmail (which acts a kind of a wrap

Re: Making .pm files run.

2007-01-16 Thread iNetForce
hange all '/' into '::' and then > drop the > final '.pm'. > > -- > Michael Peters > Developer > Plus Three, LP > > > -- View this message in context: http://www.nabble.com/Making-.pm-files-run.-tf3016257.html#a8397895 Sent from the mod_perl - General mailing list archive at Nabble.com.

Re: Making .pm files run.

2007-01-16 Thread Michael Peters
iNetForce wrote: > I installed Image Magick, but now im getting this error: > > http# apachectl restart > /usr/local/sbin/apachectl restart: httpd not running, trying to start > Syntax error on line 691 of /usr/local/etc/apache/httpd.conf: > Can't locate Mail/Sendmail.pm in @INC (@INC contains:

Re: Making .pm files run.

2007-01-16 Thread iNetForce
age/Magick.pm in @INC > > Looks like your code depends on Image::Magick. You will probably need to > install it. It is available on CPAN. > > Sean > > -- View this message in context: http://www.nabble.com/Making-.pm-files-run.-tf3016257.html#a8396625 Sent from the mod_perl - General mailing list archive at Nabble.com.

Re: Making .pm files run.

2007-01-16 Thread Sean Davis
On Tuesday 16 January 2007 12:03, iNetForce wrote: > Now im getting this error on the httpd-error.log file: > > Syntax error on line 691 of /usr/local/etc/apache/httpd.conf: > Can't locate Image/Magick.pm in @INC Looks like your code depends on Image::Magick. You will probably need to install

Re: Making .pm files run.

2007-01-16 Thread iNetForce
ation failed in require at (eval 9) line 3. -- View this message in context: http://www.nabble.com/Making-.pm-files-run.-tf3016257.html#a8394174 Sent from the mod_perl - General mailing list archive at Nabble.com.

Re: Making .pm files run.

2007-01-15 Thread Perrin Harkins
On Mon, 2007-01-15 at 14:31 -0800, iNetForce wrote: > Alias /go/ /usr/home/httpd/domains/www.ehunter.com/ehunter_perl/Handlers/ This is probably not what you want. Perl doesn't look for modules based on the URL, it looks for them in @INC. You need to put this module somewhere that is in your @I

Re: Making .pm files run.

2007-01-15 Thread Perrin Harkins
On Mon, 2007-01-15 at 14:31 -0800, iNetForce wrote: > package Recipes; [...] > PerlModule go::Recipes > > SetHandler perl-script > PerlHandler go::Recipes > Options +ExecCGI > PerlSendHeader On > allow from all > That module says it's package

Re: Making .pm files run.

2007-01-15 Thread iNetForce
o execute Recipes.pm by going to http://localhost/go/Recipes but nothing. Alias /go/ /usr/home/httpd/domains/www.ehunter.com/ehunter_perl/Handlers/ PerlModule go::Recipes SetHandler perl-script PerlHandler go::Recipes Options +ExecCGI PerlSendHeade

Re: Making .pm files run.

2007-01-15 Thread Sean Davis
iNetForce wrote: I got a website from a friend and I was trying to get it to work on server running FREEBSD with Apache and modperl. The website was coded to run an Alias called go and has several .pm files. I got the alias go by adding a line of configuration to the httpd.conf file but I've had

Re: Making .pm files run.

2007-01-15 Thread Perrin Harkins
On Mon, 2007-01-15 at 10:44 -0800, iNetForce wrote: > I got a website from a friend and I was trying to get it to work on server > running FREEBSD with Apache and modperl. Can you get your friend to give you instructions on how to configure it? There are many ways to configure code to run under ap

Making .pm files run.

2007-01-15 Thread iNetForce
ppreciated. -- View this message in context: http://www.nabble.com/Making-.pm-files-run.-tf3016257.html#a8376413 Sent from the mod_perl - General mailing list archive at Nabble.com.