Edit: Se vado col ftp normale, e clicco col tasto destro del mouse e poi proprietà mi offre la possibilità di editare delle impostazione, è possibile impostare il chmod 777 senza utilizzare un programma, ma solo col ftp?
grazie ancora.ciao
------------------
Ho trovato questo script dal sito it.php.net , nn sò se mi può essere utile, ma da quanto ho capito imposta tramite ftp i permessi chmod che si vuole, ma dove lo metto questo script? in una pagina .php normale e poi la apro? ecco il codice:
Codice PHP:
<?php
// Thanks to "imoldgreg at o2 dot co dot uk" for the base 'CHMOD via FTP' script.
function chmod_open()
{
// Use your own FTP info
$ftp_user_name = 'ultimategraphic';
$ftp_user_pass = 'XXXXXXXXXX';
$ftp_root = '/';
$ftp_server = 'localhost';
$conn_id = ftp_connect($ftp_server);
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
return $conn_id;
}
function chmod_file($conn_id, $permissions, $path)
{
if (ftp_site($conn_id, 'CHMOD ' . $permissions . ' ' . $ftp_root . $path) !== false)
{
return TRUE;
}
else
{
return FALSE;
}
}
function chmod_close($conn_id)
{
ftp_close($conn_id);
}
// CHMOD the required setup files
// Connect to the FTP
$conn_id = chmod_open();
// CHMOD each file and echo the results
echo chmod_file($conn_id, 777, 'master/cache/') ? 'CHMODed successfully!' : 'Error';
echo chmod_file($conn_id, 777, 'master/files/') ? 'CHMODed successfully!' : 'Error';
echo chmod_file($conn_id, 777, 'master/store/') ? 'CHMODed successfully!' : 'Error';
echo chmod_file($conn_id, 777, 'master/config.php') ? 'CHMODed successfully!' : 'Error';
echo chmod_file($conn_id, 777, 'master/images/avatars/upload/') ? 'CHMODed successfully!' : 'Error';
// Close the connection
chmod_close($conn_id);
?>
e cosa metto a server? (nello script mi dice:
Codice PHP:
$ftp_user_name = 'ultimategraphic';
$ftp_user_pass = 'XXXXXXXXXX';
$ftp_root = '/';
$ftp_server = 'localhost';
Grazie mille x gli aiuti...ciaoooo.