And finally I understand what is going on. Sorry, your archive cannot be extracted on Windows because of the file names on your server. Stay with me, I will try explaining this (it's VERY complicated).
First some background information.
Linux and other UNIX-like operating systems such as Mac OS X, Solaris etc use case-sensitive filesystems. This means that the filenames ABC, abc, Abc and aBc point to four
different files.
Windows is, just like in everything else, an exception: its filesystem is case-
insensitive. This means that the filenames ABC, abc, Abc and aBc point to the
one and the same file.
Files and directories names have to live under the same filesystem. This means that you cannot have a file and a directory with the same filename. On Linux, since the filesystem is case-sensitive, you can have a file called
Abc and a directory called
abc. On Windows this would be impossible, as both names would have to point to the same thing.
Now, back to your site. Let's see these interesting log lines:
DEBUG |131012 00:01:10|-- Adding images/eventi-videoludici/Games-week to archive (source: <root>/images/eventi-videoludici/Games-week)
INFO |131012 00:01:24|Scanning directories of <root>/images/eventi-videoludici/games-week
INFO |131012 00:01:24|Scanning files of <root>/images/eventi-videoludici/games-week
DEBUG |131012 00:01:24|Packing files
DEBUG |131012 00:01:24|-- Adding images/eventi-videoludici/games-week/games-week.jpg to archive (source: <root>/images/eventi-videoludici/games-week/games-week.jpg)
And let me explain what I read in them. Inside the folder images/eventi-videoludici/:
- There is a FILE called Games-week (first letter is uppercase)
- There is a DIRECTORY called games-week (all lowercase)
- Inside the games-week directory there is a FILE called games-week.jpg
During extraction we first extract the FILE Games-week. Immediately afterwards we try to extract the games-week.jpg file which is inside a directory called games-week. So we have to create the DIRECTORY called games-week first. As soon as we try to create the directory Windows tells us that this is impossible. It tells us that this is impossible because Windows sees that there is a file with the same name. However the error it produces is exactly the same as if your disk was full or if your write permissions would not allow the file to be written. That's why you get the error message that the file is unwriteable when, in fact, the real problem is that it's impossible to create this directory on Windows.
BUMMER!
The solution is to go to Akeeba Backup, Files and Directories Exclusion, go inside the images directory (from the left pane), then go inside the eventi-videoludici directory (from the left pane) and exclude the Games-week file (from the RIGHT pane, not from the left pane). This will tell Akeeba Backup to not backup the file which causes this issue.
I cannot guarantee that you do not have any other similar naming issues on your site. Spotting this one took me half an hour and I
knew what I was looking for.
Nicholas K. Dionysopoulos
Lead Developer and Director
🇬🇷Greek: native 🇬🇧English: excellent 🇫🇷French: basic • 🕐 My time zone is Europe / Athens
Please keep in mind my timezone and cultural differences when reading my replies. Thank you!