I'm having trouble installing phplib.
Context :
The web server is IIS on win2k with php 4.2.3 on CGI mode.
MySql is installed.
I DON'T have access to the php.ini file.
My Install :
The root directory is c:\home\www
[phplib dir] is c:\home\www\phplib
the examples tables are created on mysql
the phplib demo is c:\home\www\pages\
I add 2 lines at the top of index.php3 :
<?php
ini_alter( "include_path", ".;c:\home\www\phplib" );
ini_alter( "auto_prepend_file", "c:\home\www\phplib\prepend.php3" );
I modify prepend.php3 like this :
$_PHPLIB["libdir"] = "../phplib/";
I modify db_mysql.inc like this :
var $Host = "localhost";
var $Database = "DB_Example";
var $User = "root";
var $Password = "";
I modify local.inc
var $Host = "localhost";
var $Database = "DB_Example";
var $User = "root";
var $Password = "";
When I try http://website/pages/index.php3 I get the error :
Fatal error: Call to undefined function: page_open() in C:\Home\www\pages\index.php3 on line 21
Any help resolving my problem is appreciated.