Hi there,
i am using MAMP Pro for Windows as dev-environment. Installation of PW went fine but I have an issue with image uploading:
I have tested if the Dir is writable with this script - there are no problems..
<?php
$myfile = fopen("C:\\Windows\\temp\\testfile.txt", "w") or die("Unable to write file!");
$txt = "Test Text\n";
fwrite($myfile, $txt);
fclose($myfile);
echo "File saved ok.";
?>
Any ideas?
Thanks!
Chris