У меня такая же проблема. Вы можете найти решение здесь:
http://www.magentocommerce.com/boards/viewthread/220720/P15/#t349314
- Открыть файл:
Приложение / код / ядро / Mage / Cms / Модель / Wysiwyg / Images / Storage.php
- Вокруг строки 62 закомментировано
ОТ
$subDirectories = Mage::getModel('core/file_storage_directory_database')->getSubdirectories($path);
foreach ($subDirectories as $directory) {
$fullPath = rtrim($path, DS) . DS . $directory['name'];
if (!file_exists($fullPath)) {
mkdir($fullPath, 0777, true);
}
}
до:
/* $subDirectories = Mage::getModel('core/file_storage_directory_database')->getSubdirectories($path);
foreach ($subDirectories as $directory) {
$fullPath = rtrim($path, DS) . DS . $directory['name'];
if (!file_exists($fullPath)) {
mkdir($fullPath, 0777, true);
}
}*/
Примечание: чтобы сделать это лучше без редактирования ядра Magento, создайте ту же структуру файлов и папок в локальной папке, поэтому новый файл с модификацией должен перейти в app/code/local/Mage/Cms/Model/Wysiwyg/Images/Storage.php