Re: [Phplib-users] PHPLIB setup
Brought to you by:
nhruby,
richardarcher
|
From: twidlar <tw...@cr...> - 2001-12-03 21:43:35
|
> > auto_prepend_file = \apache\php\phplib-7.2d\php\prepend.php3
> > include_path =
> > ".;\apache\includes;\apache\htdocs\;\apache\htdocs\phpmyadmin;
> > \apache\php\;\apache\php\phplib-7.2d\php\"
Layne Weathers wrote:
> In your php.ini, you should probably use C:\some\path on Windows.
I presumed you meant that I should include the drive letter for
directory in the path.
I did which got my a little further.
Fatal error: Failed opening
required '/home/nathan/webDevel/php-lib-stable/php/db_mysql.inc'
(include_path='.;c:\apache\includes;c:\apache\htdocs\;
c:\apache\htdocs\phpmyadmin;c:\apache\php\;
c:\apache\php\phplib-7.2d\php\')
c:\apache\php\phplib-7.2d\php\prepend.php3 on line 15
prepend.ph3: Line 15 says:
$_PHPLIB["libdir"] = "/home/nathan/webDevel/php-lib-stable/php/";
followed by
require($_PHPLIB["libdir"] . "db_mysql.inc");
require($_PHPLIB["libdir"] . "ct_mysql.inc");
require($_PHPLIB["libdir"] . "session.inc");
require($_PHPLIB["libdir"] . "auth.inc");
require($_PHPLIB["libdir"] . "perm.inc");
require($_PHPLIB["libdir"] . "user.inc");
....
I guess line 15 in my case should read
$_PHPLIB["libdir"] = "c:/apache/php/phplib-7.2d/php/";
When I do that, /localhost/index.php comes up.
What do I find next?
Thanks
Tom Widlar
|