Re: [PHP] Error accessing class

2002-04-16 Thread David Robley
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Hi Tyler, > > Thank you, > I checked the permissions and the ownership, all ok, but by inserting > the absolute path > in the page, the code is running and get the expected output from the > script. I realized that > I made the same mi

Re: [PHP] Error accessing class

2002-04-15 Thread Andrew Schoenherr
Hi Tyler, Thank you, I checked the permissions and the ownership, all ok, but by inserting the absolute path in the page, the code is running and get the expected output from the script. I realized that I made the same mistake in the php.ini file, I updated the include_path statement to inclu

Re: [PHP] Error accessing class

2002-04-12 Thread Tyler Longren
Hi Andrew, This error indicates that your path to class.Htpasswd.php3 is wrong. use this: include("path/to/class.Htpasswd.php3"); Right now, it's set to look in the php/includes dir. If the file is actually in there, then apache might not have perms to read the file (IE: it's owned by root). G