Bogdan Savluk

Results 77 comments of Bogdan Savluk

Looks like I found a bug: `use zxbodya\yii2\galleryManager\galleryBehavior;` `galleryBehavior` should be `GalleryBehavior`

`$model` in code about should be active record where you attached gallery behaviour, but not `GalleryImage`.

currently there is no such functionality builtin, you can do this by forking an extension and adding appropriate fields(in the same way as name and description are currently implemented) -...

you should not add images to gallery_image directly

No, there is no such feature yet

может быть проблема с лимитами на размер запроса, или с памяттю на сервере(memory_limit для пхп)

Не уверен что не так, поидее если `'extension'=>'png'` - должно работать. Как вариант - может что-то не так с Imagine или расширениями пхп для него. Еще, может быть, что надо...

в GalleryBehavior - нет, надо смотреть в yiisoft/yii2-imagine если не ошибаюсь, по дефолту будет использоваться GraphicsMagic, если нет - ImageMagic, если нет - GD

Hi, thanks. Looks reasonable - partially merged your changes. Except extending GalleryImage from yii\base\Model - why you need this?

Check this params in behaviour config: ``` 'directory' => Yii::getAlias('@webroot') . '/uploads', ``` Have you created `uploads` folder in your webroot? Does php process has write permissions to it? ```...