If you were able to get through the setup.sql file, then you don't have to run install.php. The setup.sql is provided for people installing on a remote machine, while the install.php will usually work on a machine that you have control over.
Try hitting the root phpScheduleIt page and see if you can register the admin user.
Nick:
I appreciate your efforts to help me get this working, so many thanks!
I tried that and got an error insufficient privileges to access database. Based upon previous suggestions, I decided to set safemode=0 and resolved that problem.
This is what I am now receiving:
Warning: main(DB.php) [function.main]: failed to open stream: No such file or directory in /home/user48/public_html/scheduler/lib/DBEngine.class.php on line 24
Warning: main() [function.include]: Failed opening 'DB.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/user48/public_html/scheduler/lib/DBEngine.class.php on line 24
Fatal error: Undefined class name 'db' in /home/user48/public_html/scheduler/lib/DBEngine.class.php on line 71
This is interesting because the first warning error says that it cannot find DBEngine.class.php, yet it is there. The Fatal error would tend to indicate that it did find the file as it is telling me there is an error on line 71, which establishes the persistent connection to the database.
// Make persistant connection to database
$db = DB::connect($dsn, true);
It is beginning to look like this is the problem:
Warning: main() [function.include]: Failed opening 'DB.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/user48/public_html/scheduler/lib/DBEngine.class.php on line 24which, if I am reading it right, would tend to indicate that it is expecting the include path is appending /usr/lib to my server root directory.
mySQL version is 4.1.21-standard
php is php 5
here is my .htaccess file for the scheduler directory
AddType text/html .shtml
AddHandler server-parsed .shtml
Options Indexes FollowSymLinks Includes
And here is the one from my docroot directory:
AddType text/html .shtml html
AddHandler server-parsed .shtml
Options -Indexes FollowSymLinks Includes