From: Geoffrey T. D. <da...@us...> - 2001-11-14 15:36:44
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv27479 Modified Files: index.php Log Message: Add note about making sure the path to PEAR code is in include_path. Index: index.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/index.php,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** index.php 2001/11/09 18:58:42 1.26 --- index.php 2001/11/14 15:36:41 1.27 *************** *** 16,20 **** // rest of the PhpWiki code, you can set the include_path here. ! //ini_set('include_path', '.:/where/you/installed/phpwiki'); --- 16,32 ---- // rest of the PhpWiki code, you can set the include_path here. ! // NOTE: phpwiki uses the PEAR library of php code for SQL database ! // access. Your PHP is probably already configured to set include_path ! // so that PHP can find the pear code. If not (or if you change ! // include_path here) make sure you include the path to the PEAR ! // code in include_path. (To find the PEAR code on your system, search ! // ! // for a file named 'PEAR.php'. Some common locations are: ! // Unixish systems: ! // /usr/share/php ! // /usr/local/share/php ! // Mac OS X: ! // /System/Library/PHP ! // //ini_set('include_path', '.:/where/you/installed/phpwiki'); |