Re: [PHP-DEV] Re: Opening files for write from php modules

2003-03-11 Thread Wez Furlong
Even so, its a very good idea to use streams for this; you will automatically make your extension safe_mode and open_basedir aware, virtual cwd aware and be able to avoid crippling limitations of certain OS (eg: Solaris can only fopen 256 files). These things are particularly important in a web

[PHP-DEV] Re: Opening files for write from php modules

2003-03-10 Thread Scott Baker
Nevermind... Seems the webserver was on afs filespace, and apache/php didnt like the permissions it had there. Everything works now that I moved it to a jfs filesystem. Scott Baker wrote: I'm trying to write an extention that calls a C++ lib i've written. I've gotten the module to compile and