VM2, Joomla 2.5
Hi all
1) when updating from VM2 Version 2.6.0 to 2.6.0a within the update funktion im VM itself and I receive the following error message:
• JFTP: :mkdir: Unerwartete Antwort ("my translation: Unerwartete Antwort -> unespected error/reply")
• JFTP: :chmod: Unerwartete Antwort ("my translation: Unerwartete Antwort -> unespected error/reply")
• Unable to create destination
• Das Auspacken des Aktualisierungspakets ist fehlgeschlagen. Bitte aktualisieren Sie die Erweiterung manuell. ("my translation: Das Auspacken des Aktualisierungspakets ist fehlgeschlagen. Bitte aktualisieren Sie die Erweiterung manuell -> unpacking failed. Please install manualy")
2) I tried to install via direct download link an got the message
JFTP: :write: Unerwartete Antwort ("my translation: Unerwartete Antwort -> unespected error/reply")
3) I tried to install manualy via Zip uplaod in the extenstion manage an got the message
• JFTP: :store: Unerwartete Antwort ("my translation: Unerwartete Antwort -> unespected error/reply")
• Warnung! - Die Datei kann nicht verschoben werden! ("my translation: Warnung! - Die Datei kann nicht verschoben werden! -> Warning! - Die file can not be moved")
Please assist: I added translations to the error messages within the parentesis
Thank you
Marc
First I advise ONLY to use the Joomla installer - live update has never worked consistantly with many servers I use.
2. the error Die Datei kann nicht verschoben werden
this is a core Joomla installer failure - comes from libraries/joomla/filesystem/file.php
// Copy the file to the destination directory
if (is_uploaded_file($src) && $ftp->store($src, $dest))
{
unlink($src);
$ret = true;
}
else
{
JError::raiseWarning(21, JText::_('JLIB_FILESYSTEM_ERROR_WARNFS_ERR02'));
}
so normally means an ownership or permissions problem with the files/folders on your server
Can you install a simple test module or what ever?
If not try all the fixes for this on the joomla forums (enable ftp layer etc)