cvsuser 02/06/03 13:00:50
Modified: P5EEx/Blue/P5EEx/Blue installguide.pod
Log:
minor updates
Revision Changes Path
1.2 +21 -5 p5ee/P5EEx/Blue/P5EEx/Blue/installguide.pod
Index: installguide.pod
===================================================================
RCS file: /cvs/public/p5ee/P5EEx/Blue/P5EEx/Blue/installguide.pod,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -r1.1 -r1.2
--- installguide.pod 24 Mar 2002 22:13:55 -0000 1.1
+++ installguide.pod 3 Jun 2002 20:00:50 -0000 1.2
@@ -128,8 +128,6 @@
cpan> install Compress::Zlib
cpan> install MIME::Base64
cpan> install Storable
- cpan> install Fatal
- cpan> install Error
cpan> install Exception::Class
cpan> install Class::MethodMaker
cpan> install Hook::LexWrap
@@ -182,7 +180,7 @@
cd $PREFIX/src/p5ee
cvs update -dP
-The latter is recommended for updates.
+The "cvs update" method is the preferred way to get updates.
=head2 Get P5EE from a Snapshot
@@ -193,8 +191,12 @@
wget -O tar/p5ee-latest.tar.gz
http://cvs.perl.org/snapshots/p5ee/p5ee-latest.tar.gz
gunzip < tar/p5ee-latest.tar.gz | tar xvf -
-(If you don't have "wget" (http://www.gnu.org/software/wget/wget.html),
-you can use Perl's own LWP.) (anyone care to forward the syntax?)
+If you don't have "wget" (http://www.gnu.org/software/wget/wget.html),
+you can use Perl's own LWP.
+
+ cd $PREFIX/src
+ perl -MLWP::Simple -e
'getstore("http://cvs.perl.org/snapshots/p5ee/p5ee-latest.tar.gz",
"tar/p5ee-latest.tar.gz")'
+ gunzip < tar/p5ee-latest.tar.gz | tar xvf -
=head1 INSTALL P5EE SOFTWARE
@@ -202,9 +204,23 @@
cd $PREFIX/src/p5ee/P5EEx/Blue
make
+ make test (these may or may not work. the tests themselves are under
development.)
make install
=head2 Edit Main Config File
+
+You will need to do this one time.
+
+ cd $PREFIX/src/p5ee/P5EEx/Blue/cgi-bin
+ cp demo.conf p5ee.conf
+ vi p5ee.conf
+ # edit the following lines:
+ # * perlinc = list of perl include paths
+ # * scriptDir = absolute path for directory which the "p5x" script will be
in
+ # * scriptUrlDir = path from http://localhost to the scriptDir
+ # * htmlDir = absolute path for the "htdocs" directory
+ # * htmlUrlDir = path from http://localhost to the htmlDir
+ # * ttTemplateDir = apsolute path for the "templates" directory
=head2 Make HTML Pages Visible on the Webserver