
Опубликовано: 2014-12-09 15:00:00
modx revo gallery ошибка
Пакет gallery отказывается создавать папки в каталоге /assets/galleryТе самые папки в которых хранятся картинки, названия у этих папок идут от id альбома.
Права стоят уже на все что только можно.
Да, в новой папка не создается, вылечивается заменой строк в файле
\core\components\gallery\model\gallery\galalbum.class.php
/* if directory doesnt exist, create it */
if (!$mediaSource->createContainer($targetDir,'/')) {
$this->xpdo->log(xPDO::LOG_LEVEL_ERROR,'[Gallery] Could not create directory (possibly already exists?): '.$targetDir);
}
на
/* if directory doesnt exist, create it */
if ((!file_exists($this->getPath())) && (!@mkdir($this->getPath(), 0777))) {
$this->xpdo->log(xPDO::LOG_LEVEL_ERROR,'[Gallery] Could not create directory (possibly already exists?): '.$this->getPath());
}