Changeset 1129
- Timestamp:
- 01/15/08 00:51:31 (9 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
INSTALL (modified) (3 diffs)
-
TROUBLESHOOTING (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/INSTALL
r1104 r1129 8 8 9 9 For details about installing multiple OpenGuides sites on a single 10 server, see further down this file. 10 server, or installing OpenGuides into a directory that isn't where 11 your system Perl library is, see further down this file. 11 12 12 13 * Basic installation … … 217 218 218 219 This refers to turning titles into links which bring up a list of referring 219 pages. This was the convention with older wikis, but is not intuitive. 220 pages. This was the convention with older wikis ("C2" refers to the original 221 wiki at http://c2.com/cgi/wiki), but is not intuitive. 220 222 221 223 "Do you have a Google Maps API key to use with this guide?" … … 394 396 have to make sure that you fix this up after an upgrade. 395 397 398 * Custom install locations 399 400 If you wish to install the OpenGuides modules in a private directory, 401 you will need to specify this when you run the Build.PL. 402 403 If you are using version 0.20 of Module::Build, do: 404 405 perl Build.PL install_path=lib=/path/to/my/modules/ \ 406 install_path=script=/path/to/my/bin/ \ 407 install_path=arch=/path/to/my/modules/auto/ \ 408 install_path=libdoc=/path/to/my/man/ \ 409 install_path=bindoc=/path/to/my/man/ 410 411 Or for earlier versions of Module::Build, do: 412 413 perl Build.PL config='sitelib=/path/to/my/modules/' 414 415 If any or all of the modules required by the OpenGuides scripts are in 416 a private directory, then you'll need to tell the scripts where to find 417 them. See the section above about munging in a custom lib path. 418 419 ---------------------------------------------------------------------- 420 421 Important note for those using SQLite: 422 423 The user your CGI is running as must have write access to not only the 424 database file itself, but the directory that the file is in, in order 425 that it can write a lockfile. If it doesn't have write access to the 426 database file, you'll see errors like "Unhandled error: [DBD::SQLite::db 427 do failed...". 428 429 ---------------------------------------------------------------------- 396 430 397 431 * Multiple installations -
trunk/TROUBLESHOOTING
r501 r1129 1 1 OpenGuides Troubleshooting Guide 2 2 ================================ 3 4 If you wish to install the OpenGuides modules in a private directory,5 you will need to specify this when you run the Build.PL.6 7 If you are using version 0.20 of Module::Build, do:8 9 perl Build.PL install_path=lib=/path/to/my/modules/ \10 install_path=script=/path/to/my/bin/ \11 install_path=arch=/path/to/my/modules/auto/ \12 install_path=libdoc=/path/to/my/man/ \13 install_path=bindoc=/path/to/my/man/14 15 Or for earlier versions of Module::Build, do:16 17 perl Build.PL config='sitelib=/path/to/my/modules/'18 19 ----------------------------------------------------------------------20 21 If any or all of the modules required by the OpenGuides scripts are in22 a private directory, then you'll need to tell the scripts where to find23 them. From version 0.41 of OpenGuides, you can do this at 'perl Build.PL'24 time - see the INSTALL file included in this distribution.25 26 ----------------------------------------------------------------------27 3 28 4 If you are able to run wiki.cgi from the command line but receive an
