Changeset 89 for trunk/TROUBLESHOOTING

Show
Ignore:
Timestamp:
05/02/03 18:48:42 (6 years ago)
Author:
kake
Message:

Note on private module dirs

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/TROUBLESHOOTING

    r85 r89  
    66 
    77  perl Build.PL config='sitelib=/path/to/my/modules/' 
     8 
     9---------------------------------------------------------------------- 
     10 
     11If any or all of the modules required by the OpenGuides scripts are in 
     12a private directory, then you'll need to tell the scripts where to find 
     13them.  The only way I can see to do this is to install everything and 
     14then manually edit the scripts wiki.cgi (or whatever you called it). 
     15supersearch.cgi and preferences.cgi to include a line something like 
     16 
     17  use lib qw( /path/to/my/modules/ ); 
     18 
     19at the top of the scripts before any other modules are required. 
    820 
    921----------------------------------------------------------------------