Ok im trying to setup uploads here on my windows2000 box with apache and I can't get anything to upload. I have this line in my httpd.conf file:
<Directory "c:/apache/tmp_files">
Order allow,deny
Allow from all
</Directory>
and in my php.ini file I have included this line
upload_tmp_dir = c:\apache\tmp_files
now when I try to upload files I always get a permission denied error:
Warning: Unable to create 'c:\apache\htdocs\memory\bank\': Permission denied in C:\apache\htdocs\memory\mp3.php on line 46
Warning: Unable to move 'c:\apache\tmp_files\php31.tmp' to 'c:\apache\htdocs\memory\bank\' in C:\apache\htdocs\memory\mp3.php on line 46
is there any way to fix the permissions on this?....also how would I set directories to have proper permissions in the httpd.conf file?....
Chad.