Destination directory can't be created. Can't carry on a process

See all posts See thread Reply

Re: Destination directory can't be created. Can't carry on a process new!
by colin, 17 years, 4 months ago
The class attempts to create a temp file in case of open_basedir restrictions, not a directory. mkdir() will be used only if the destination directory doesn't exist. The destination directory is the argument when you call process().

Create your destination via FTP first, or else try the following:
.....
$handle->process("./");
.....
Reply