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

************* WIN A SILVERSTRIPE BOOK! *****************


Go to End


16 Posts   3498 Views

Avatar
sajok

Community Member, 82 Posts

5 February 2010 at 3:20pm

Edited: 15/03/2010 5:28am

Hello,

I'm new to Silverstripe and I'm working on a multilingual website. Lately I came across your amazing modules, and I'd like to thank you for the nice features your modules incorporated into my website. Concerning new features, I'm still amazed at how things are easily done for now, but I'll post later when I want a new feature.. thanks again

Avatar
UncleCheese

Forum Moderator, 4102 Posts

7 February 2010 at 7:12am

Edited: 15/03/2010 5:28am

Thanks to everyone who contributed to this thread! Our randomly chosen winner is Juanitou! Congratulations!

Please contact me through my website www.carlinowebdesign.com and provide an address two which I can send the book. Thanks again, everyone!

Avatar
Thorarinn

Community Member, 1 Post

7 February 2010 at 7:16am

Edited: 15/03/2010 5:28am

Hi,

I'm working on my first SilverStripe project so a copy of the book would be very much appreciated. As I haven't really put your modules to the test, I don't yet know what features I might find missing. I must say however that I find this environment quite exciting and look forward to exploring and possibly contributing to it in the future.

Cheers,

Thorarinn

PS Darn, I guess you might as well delete this post...

Avatar
erad67

Community Member, 6 Posts

9 February 2010 at 2:08am

Edited: 15/03/2010 5:28am

Very nice of you UncleCheese.

I'm a noob and could really use a copy of the book to figure out what the heck I'm doing so I don't bug people on the forum with dumb questions. :)

Avatar
Juanitou

Community Member, 323 Posts

9 February 2010 at 3:44am

Edited: 15/03/2010 5:28am

Thank you!

I’ll do my best to share the knowledge contained in the book.

“We make a living by what we get, but we make a life by what we give.”
Winston Churchill

Avatar
patjnr

Community Member, 102 Posts

12 February 2010 at 7:59pm

Edited: 15/03/2010 5:28am

Hi uncle cheese.

What a cool module it is.
I am a web developer from South Africa and i have been using SS as my choice of CMS and im not turning back.
Most of the web site we are developing here are fro the tourism industry for reasons which are obvious.
They say a picture is worthy a 1000 words and clients want to show off they places, be it a small bed and breakfast lodge to a big hotel.

What i would expect to be included is a functionality to resize images as you upload and im sure this was part of the earlier version of SS. I know SS uses resampled versions of images but at times clients upload images straight from their cameras and some will be 5 to 8 MB.
It can work like this.

1. specify your image sizes (W,H or kilobytes) in the CMS before you upload.
2. As you will uploading images it resamples they and stores only the resampled image.
If either dimensions or size is not specified then it upload the raw image.

the main reason being that if you upload a file which is more than 3mb that page will crash and you will not be able to remove that image using CMS.

of every 10 support calls we have 3 are for crashed pages.

thank you

Patrick

Avatar
bummzack

Community Member, 904 Posts

12 February 2010 at 8:24pm

Edited: 15/03/2010 5:28am

Hi Patrick

You've got a point. Processing large images can lead to problems on webservers where PHP doesn't have enough memory available.
Sadly your proposition won't work either, because the resampling of the image has to take place at some point and will then consume lots of memory (~46mb for 12 megapixels of raw image data). Then your page will crash at the upload of the image...

There are several possible solutions to this problem though.
1) Specify the largest allowed image size. Reject all images that are larger in size (or simply don't attempt to resize them, because that will result in a crash).
2) Use ImageMagick to resample the image. It's faster than PHP GD methods and doesn't suffer from php max_memory restrictions. ImageMagick is not installed on every webhost out there, so this solution won't work for everybody.
3) Create a droplet or mini application that takes an image and resizes it to approximately 1200 x 900 pixels. Install this application on all your clients computer and tell them to resize their images with the app, before they upload them.

This isn't much of a DataObjectManager issue though. It's the way image resizing in sapphire (and PHP) works. To tackle this issue, one should probably start with the Image and GD classes.

Avatar
Ricardona

Community Member, 26 Posts

13 February 2010 at 3:06am

Edited: 15/03/2010 5:28am

Hi Uncle,

I working in Validation using JQuery too, when we know more about this module?, maybe we can join forces in this development.

Thanks

Ricardo

Go to Top