When trying to user the ftp_mkdir, or ftp_chdir I've noticed that some servers like the entire path such as
/usr/local/home/username/sitename/directory/
and other servers, want you to use the path from the initial login, such as just /sitename/directory/
Just wanted to pass this on
ftp_mkdir
(PHP 4, PHP 5)
ftp_mkdir — Crea una directory
Descrizione
string ftp_mkdir
( resource $ftp_stream
, string $directory
)
Crea la directory specificata sul server FTP.
Restituisce la directory appena creata in caso di successo o FALSE in caso di errore.
Example #1 Esempio di funzione ftp_mkdir()
<?php
$dir = 'www';
// stabilisce la connessione
$conn_id = ftp_connect($ftp_server);
// si collega con nome utente e password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// prova a creare la directory $dir
if (ftp_mkdir($conn_id, $dir)) {
echo "$dir creata con successo\n";
} else {
echo "Problemi nella creazione di $dir\n";
}
// chiude la connessione
ftp_close($conn_id);
?>
Vedere anche ftp_rmdir().
ftp_mkdir
butch AT 4RealMedia dot com
12-Sep-2006 11:26
12-Sep-2006 11:26
vladimir at lukianov dot name
15-Mar-2004 10:28
15-Mar-2004 10:28
For recurrent following function work better.
Some ftp servers (like WarFTP) become demented if you'll
try mkdir not from root dir and if path will be relative.
The second if one of dir (like '/') already exist You'll get access denied.
function MkDir($path)
{
$dir=split("/", $path);
$path="";
$ret = true;
for ($i=0;$i<count($dir);$i++)
{
$path.="/".$dir[$i];
echo "$path\n";
if(!@ftp_chdir($this->conn_id,$path)){
@ftp_chdir($this->conn_id,"/");
if(!@ftp_mkdir($this->conn_id,$path)){
$ret=false;
break;
}
}
}
return $ret;
}
