views:

1103

answers:

4

I'm trying to test Coldfusion for learning purposes, but I really don't know what is the aditional features that the non-free Enterprise Edition add to the free Developer Edition.

Thanks!

A: 

The key is the line: "Used for delivering multiple websites and applications on one or more servers"

The Enterprise Edition allows for deployment for commercial purposes.

The Development Edition allows you to develop locally, but not deploy. The deployment requires Enterprise or Standard editions, or purchasing a hosting solution which handles the licensing for you.

Reed Copsey
A: 

Here you go.

Edit: Scroll to bottom for Dev v. Ent. discussion.

JP Alioto
That only compares Standard <-> Enterprise+Dev (which have the same features), but doesn't tell you how Enterprise differs from Developer edition. It's a licensing difference, not a technical difference.
Reed Copsey
Did you read the whole thing or just neg me?ColdFusion 8 Developer is a free, fully functional version of ColdFusion for local development of applications that will be deployed on either Standard or Enterprise servers. In addition to localhost, applications running on a Developer Edition server
JP Alioto
+6  A: 

Legally, Enterprise is for public consumption, and Dev is not.

Practically, this means that the Dev edition (which is the same as the Eval edition after the 30? days) is limited to localhost + 1 IP address. That is, it can serve files to localhost and 1 external IP. This IP can only be reset by restarting the service.

Otherwise, your dev install will mimic an ent install completely.

Ben Doom
I believe Developer edition can be access by 2 remote IP's + localhost. Everything you really need can be found here --> http://www.adobe.com/products/coldfusion/editions/
Jason
It might be two. I was doing this from memory. But the idea gets across, and 2 IPs probably isn't enough for a production server. :-)
Ben Doom
+3  A: 

The developer edition of Adobe ColdFusion Server is limited by IP addresses - only the localhost and 1 other IP address can access the server. Any more, and it will throw license exceptions.

Also, printable items such as documents created with cfdocument and cfpresentation are watermarked with a gigantic diagonal banner over each page.

Otherwise, the dev and enterprise editions both have all the features enabled, including advanced debugging and server monitoring, PDF & FlashPaper generation, advanced gateways, 64 bit CPU support and full database drivers including Oracle - the works.

The Trial edition of ColdFusion is the same as enterprise for 30 days, but then drops to be the developer edition after 30 days - once the license has expired. Do make sure you remember to get your serial number in if you put this on production :)

For reference, see Adobe ColdFusion Editions.

Nathan Strutz
Good point about the document watermarks. I'd forgotten that.
Ben Doom
Yeah, it's kind of a pain if the applications you're running produce a lot of PDFs. Then again, that's the whole point of the license, I suppose ... otherwise we'd simply steer requests to a developer edition and generate PDFs for free.
Dave DuPlantis