I am using win2k server running XAMPP which is a bundled package of php/apache/mysql and a bunch of others.
I have installed v2.13 and am getting this error
-----------------------------------------
Warning: main(./index/indilist.ind): failed to open stream: No such file or directory in C:\xampp\htdocs\phpgedview\session.php on line 221
Fatal error: main(): Failed opening required './index/indilist.ind' (include_path='.;\xampp\php\pear\') in C:\xampp\htdocs\phpgedview\session.php on line 221
--------------------------------
I know this section had to be editted in the php.ini
I had this problem once before and it was somewhere in the .;\xampp\php\pear\') section of this scripting but I dont remember what it was that needed to be corrected. I had to redo my server and re-install everything from scratch so I updated everything to the newest version.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am using win2k server running XAMPP which is a bundled package of php/apache/mysql and a bunch of others.
I have installed v2.13 and am getting this error
-----------------------------------------
Warning: main(./index/indilist.ind): failed to open stream: No such file or directory in C:\xampp\htdocs\phpgedview\session.php on line 221
Fatal error: main(): Failed opening required './index/indilist.ind' (include_path='.;\xampp\php\pear\') in C:\xampp\htdocs\phpgedview\session.php on line 221
--------------------------------
I know this section had to be editted in the php.ini
I had this problem once before and it was somewhere in the .;\xampp\php\pear\') section of this scripting but I dont remember what it was that needed to be corrected. I had to redo my server and re-install everything from scratch so I updated everything to the newest version.
You could try editing your configuration and changing it from a relative path (./index/) to an absolute path: C:/xampp/htdocs/phpgedview/index/
If that works you will want to do it with the media directory as well.
--John