Code: Select all
if (is_writable() && is_readable() && is_executable())So is 'is_writable' not to be trusted? If it is will it give me accurate information on a windows system? If so what should I use? How do you test a folder/file for this?Keep in mind that PHP may be accessing the file as the user id that the web server runs as (often 'nobody'). Safe mode limitations are not taken into account.
Thanks