Posted by badaczewski on 12/31/05 22:31
Do registered NuSOAP function not have the ability to write files? Here
is my function on the server page.
function createThumbnailDirectory($path){
$completePath = $path . "/thumbnails";
if(!file_exists($completePath))
{
$oldmask = umask(0);
mkdir($completePath, 0777);
umask($oldmask);
}
return $completePath;
}
I this exact function in a normal PHP page and it works fine. Is the
fact that I'm accessing it through NuSOAP a permissions issue?
Navigation:
[Reply to this message]
|