Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

Off-Topic - [b] mod_perl [/b]

Quote Reply
Off-Topic - [b] mod_perl [/b]
Which the best way to apply to a directory where they are the files.cgi of LinksSQL to have a better performance using mod_perl? Or be as configuring a directory to use mod_perl?
Quote Reply
Re: Off-Topic - [b] mod_perl [/b] In reply to
Search the FAQ... I'm sure I have it archived there. But there are two or three threads on my experience upgrading, and a step by step way to do it.



------------------
POSTCARDS.COM -- Everything Postcards on the Internet www.postcards.com
LinkSQL FAQ: www.postcards.com/FAQ/LinkSQL/









Quote Reply
Re: Off-Topic - [b] mod_perl [/b] In reply to
Don't I want to know how to install, but how to configure a directory for mod_perl to be active in that directory understood?
Quote Reply
Re: Off-Topic - [b] mod_perl [/b] In reply to
That's part of the install.

http://perl.apache.org/...cgi_to_mod_perl.html

http://perl.apache.org/.../mod_perl_traps.html

http://perl.apache.org/src/mod_perl.html

http://perl.apache.org/faq/

http://perl.apache.org/tuning/

Quote Reply
Re: Off-Topic - [b] mod_perl [/b] In reply to
PUGDOG if I use any one of the mentioned configurations of the that mistake:

Code:
HTTP/1.1 200 OK Date: Thu, 04 May 2000 02:26:41 GMT Server: Apache/1.3.11 (Unix) mod_perl/1.22 PHP/3.0.15 Connection: close Transfer-Encoding: chunked Content-Type: text/html

Code:

<Directory /usr/sites/cgi-bin>
AllowOverride None
Options ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader Off
</Directory>

<Directory /usr/sites/cgi-bin>
AllowOverride None
Options ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader On
</Directory>

<Files *.STORM>
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader On
Options +ExecCGI
</Files>

<Files *.STORM>
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader Off
Options +ExecCGI
</Files>

Quote Reply
Re: Off-Topic - [b] mod_perl [/b] In reply to
Hi,

What exactly is or is not happening?

Some of this is the language barrier, because trying to solve technical problems depends on the shades of meaning of the words.

You've set your directories up, and when you try to start Apache you get an error?

Or,

Nothing works right? if so, what happens?






Quote Reply
Re: Off-Topic - [b] mod_perl [/b] In reply to
the problem comes when I make a search in the same database using header or doesn't give the same mistake...

I don't know reason gives that mistake....
Quote Reply
Re: Off-Topic - [b] mod_perl [/b] In reply to
This should work:

Code:
<Directory /usr/sites/cgi-bin>
AllowOverride None
Options ExecCGI
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader On
</Directory>

You want the send header on.

Cheers,

Alex