sorry for the delay :-)
while I was messing with that i was dumping windows on my main box for linux. and wouldn't ya know. same issue. Instead of permissions (which btw they are sett at 777 for everything in that folder), i am starting to think this is a path issue. I know if i hit that folder/file directly it works fine, but in a function where several scripts access the file it needs to be relative.
example i found out that[FONT="Courier New"] http://localhost/somefolder/database/accounts.dat[/FONT] (textfile)
will error out
but if i directly access it from the script PRIOR to executing the function say findUser() (eg), "[FONT="Courier New"]../database/accounts.dat[/FONT]" works fine.
however that seems like a lot of messy code if each script as to do it that way before runing the function. right?
so in the config.php file, i just use define()'s but then that has to be absolute, and thats where the isssue is.
so in short:
1. absolute (via define) errors out
2. accessing it relative seems to be ok, but then have to have each script that needs to access the file to point to it manually.
here are some sample paths maybe I have it all wrong but i REALLY think its a path thing (I heard rummors that php preferrs relative paths)
define('PROJECT_PATH' ,'/projectx/app_demo/');
define ('HOME_URL' ,'http://localhost'.PROJECT_PATH);
//define ('HOME_URL' ,'http://localhost/projectx/app_demo/');
define ('ACCT_FILE' ,'database/accounts.idx');
now HOME_URL has been changed a ton of times to several different things - all fail
define ('HOME_URL' '$_SERVER['DOCUMENT_ROOT']');
sorta works.
but cant find anything consistant