Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [yogi] Benchmarking

Quote Reply
Re: [yogi] Benchmarking In reply to
Try looking through the following directions (from the README.mod_perl file that comes in your GForum package).

Quote:


Gossamer Forum works best under mod_perl. mod_perl is open source software that integrates perl inside of Apache. You can find out more details about mod_perl at:

http://perl.apache.org/guide/

Running mod_perl typically requires your own dedicated server. Gossamer Threads can provide you with pre-configured Gossamer Forum installations running under mod_perl. If you are interested in this, please send us an email at hosting@gossamer-threads.com.

To setup Gossamer Forum using mod_perl, you need to:

1. First, install Gossamer Forum as described in the README.

2. Now, add the following section to your httpd.conf file:

<Location /url/to/gforum>
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader On
Options +ExecCGI
</Location>

You need to change '/url/to/gforum' to the URL where the user cgi script is located. The URL should start with a / and be set from your document root, but does not contain your domain name. For example, if your scripts were at:

http://gossamer-threads.com/perl/gforum/gforum.cgi

You would put: <Location /perl/gforum> in your httpd.conf file.

3. Most mod_perl installations have a startup file for loading perl scripts you
are using when httpd is started. You need to add the following to your startup
file:

use lib '/full/path/to/admin';
require GForum::mod_perl;

where '/full/path/to/admin' is a full system path to your admin directory.

If you don't have a startup file, you should create one by adding to
your httpd.conf file:

PerlRequire /path/to/startup.pl

and adding the above lines into startup.pl.

Congratulations, you are now done! When you restart mod_perl you should see:

Preloading Gossamer Forum modules into mod_perl:
. . . . . . . . . . .
All modules compiled and loaded ok!

That means everything has been pre-loaded and you are ready to go!

If you have any questions or problems, please visit our support section at:

http://gossamer-threads.com/support/

Gossamer Threads Inc.

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Subject Author Views Date
Thread Benchmarking yogi 5325 Apr 4, 2002, 12:45 PM
Thread Re: [yogi] Benchmarking
Alex 5212 Apr 4, 2002, 12:49 PM
Thread Re: [Alex] Benchmarking
yogi 5191 Apr 4, 2002, 1:35 PM
Thread Re: [yogi] Benchmarking
Paul 5171 Apr 4, 2002, 1:37 PM
Post Re: [Paul] Benchmarking
yogi 5222 Apr 4, 2002, 1:55 PM
Post Re: [yogi] Benchmarking
Jagerman 5153 Apr 4, 2002, 2:35 PM
Thread Re: [Alex] Benchmarking
yogi 5157 Apr 4, 2002, 2:37 PM
Thread Re: [yogi] Benchmarking
Jagerman 5178 Apr 4, 2002, 3:05 PM
Thread Re: [Jagerman] Benchmarking
Alex 5159 Apr 4, 2002, 5:03 PM
Post Re: [Alex] Benchmarking
yogi 5151 Apr 4, 2002, 11:57 PM
Post Re: [Alex] Benchmarking
Paul 5133 Apr 4, 2002, 11:59 PM
Thread Re: [Alex] Benchmarking
yogi 5103 Apr 6, 2002, 11:37 AM
Thread Re: [yogi] Benchmarking
Alex 5125 Apr 6, 2002, 12:31 PM
Post Re: [Alex] Benchmarking
yogi 5102 Apr 6, 2002, 1:01 PM
Post Re: [Alex] Benchmarking
yogi 4980 Apr 15, 2002, 3:04 PM