Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

Moderators: martimiz, UncleCheese, Sean, Ed, biapar, Willr, Ingo, swaiba

Uploadify: MayBe error?


Go to End


12 Posts   4103 Views

Avatar
biapar

Forum Moderator, 435 Posts

1 March 2011 at 1:32am

????????

Avatar
honeybunny

Community Member, 79 Posts

23 March 2011 at 3:31am

Did anyone find a resolution? I'm having the same problem in firefox and IE8; image gallery shows the upload at 100% but it doesn't actually upload. For what it's worth, firebug isn't showing any errors.

HB

Avatar
honeybunny

Community Member, 79 Posts

23 March 2011 at 8:48am

I don't know if this will help anyone else, but I added

<IfModule mod_security.c>
SecFilterEngine Off
</IfModule>

to the .htaccess and it fixed the problem enough that I am now able to upload new images into an album. I still can't attach files that are already in assets, but it is a step in the right direction.

HB

Avatar
aarono

Community Member, 34 Posts

23 March 2011 at 8:50am

I struggled with this for a long time. Eventually, after a lot of debugging all the image classes in Sapphire, I figured out that it was a memory issue when the GD class tried to recreate the image with the PHP function imagecreatefromjpeg. So, I set the php memory_limit to 128MB from 64MB and it was fine.

Go to Top