Installed the free edition on xp as a stand alone server to test without a
hitch but it has the following tag restrictions as well (turn off MX before
running the install):
It should mention it does not as yet support components:-(
BlueDragon Server FREE Edition - Feature Restrictions
The BlueDragon Server FREE Edition does not support the following features,
which are supported by BlueDragon Server JX and BlueDragon for J2EE Servers:

no support for Java Servlets or JavaServer Pages (JSP)
no support for CFINCLUDE of servlets/JSP
no support for CFX tags
web server adapters for Microsoft IIS/Windows and Apache/Linux only
ODBC, MySQL, and PostgreSQL drivers only
no support for the following tags/functions:
cfexecute
cfforward
cfgraph
cfimage
cfimap
cfobject / CreateObject
cfpause
cfschedule
cfservlet
cfwddx

Colm

-----Original Message-----
From: Colm Brazel [mailto:[EMAIL PROTECTED]
Sent: 19 June 2003 18:01
To: [EMAIL PROTECTED]
Subject: RE: [ cf-dev ] Blue Dragon tips


>>The free version works on Linux with Apache, or Windows with IIS (no
windows
with apache).

do you need to install Tomcat as well.

I note components dont work which is a limitation for CFMX with BlueDragon
but they are working on that.

cheers

Colm

-----Original Message-----
From: Pete Freitag [mailto:[EMAIL PROTECTED]
Sent: 19 June 2003 17:36
To: [EMAIL PROTECTED]
Subject: RE: [ cf-dev ] Blue Dragon tips


The free version works on Linux with Apache, or Windows with IIS (no windows
with apache). I think it also has restrictions as to what db's you can
connect to in the free version. I've tested all of our products on
BlueDragon, and I must say I didn't have much problem getting everything to
work, I found a few minor bugs that were fixed immediately by New Atlanta.

___________________________
Pete Freitag
http://www.cfdev.com/

-----Original Message-----
From: Colm Brazel [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 19, 2003 5:13 AM
To: [EMAIL PROTECTED]
Subject: [ cf-dev ] Blue Dragon tips


I`m downloading free evrsion of Blue Dragon from
http://www.newatlanta.com/c/products/bluedragon/download/home this ver I
believe may only run on
linux. Anybody got tips/observations on costs etc on running Blue Dragon in
a production environment on Linux/and or windoze

cheers


Colm

-----Original Message-----
From: Mark Smyth [mailto:[EMAIL PROTECTED]
Sent: 18 June 2003 17:50
To: '[EMAIL PROTECTED]'
Subject: RE: [ cf-dev ] Looping through form fields in MX



right, this is wierd

Where MX is using its own webserver (on port 8500) its not working

Tested on another dev machine its working fine where MX is installed with
IIS

To hell with it, i'll use the structure


-----Original Message-----
From: Rich Wild [mailto:[EMAIL PROTECTED]
Sent: 18 June 2003 17:34
To: '[EMAIL PROTECTED]'
Subject: RE: [ cf-dev ] Looping through form fields in MX


absolutely, use it all the time.

> -----Original Message-----
> From: Mark Smyth [mailto:[EMAIL PROTECTED]
> Sent: 18 June 2003 17:39
> To: '[EMAIL PROTECTED]'
> Subject: RE: [ cf-dev ] Looping through form fields in MX
>
>
> cheers rich
> is the loop syntax (without the mid), working for you on MX?
>
> -----Original Message-----
> From: Rich Wild [mailto:[EMAIL PROTECTED]
> Sent: 18 June 2003 17:30
> To: '[EMAIL PROTECTED]'
> Subject: RE: [ cf-dev ] Looping through form fields in MX
>
>
>
> The thing is though, is that code is (hopefully - haven't
> looked it up)
> using the mid() for a reason. In this instance if all you
> want to do is add
> the name of the field to a list then all you need is
>
> <cfset myList = listappen(myList, i)>
>
> > -----Original Message-----
> > From: Mark Smyth [mailto:[EMAIL PROTECTED]
> > Sent: 18 June 2003 17:34
> > To: '[EMAIL PROTECTED]'
> > Subject: RE: [ cf-dev ] Looping through form fields in MX
> >
> >
> >
> > i understand it, just didn't really see the need to change it
> >
> > how would you change the listappend?
> >
> > -----Original Message-----
> > From: Rich Wild [mailto:[EMAIL PROTECTED]
> > Sent: 18 June 2003 17:22
> > To: '[EMAIL PROTECTED]'
> > Subject: RE: [ cf-dev ] Looping through form fields in MX
> >
> >
> > aha! Another victim to fall foul of copying and pasting!
> >
> > ;)
> >
> > p.s. my advice is to not copy any code I or others send to
> > the list without
> > understanding it first, or you'll get issues like this!
> >
> > > -----Original Message-----
> > > From: Mark Smyth [mailto:[EMAIL PROTECTED]
> > > Sent: 18 June 2003 17:26
> > > To: '[EMAIL PROTECTED]'
> > > Subject: RE: [ cf-dev ] Looping through form fields in MX
> > >
> > >
> > > believe it or not i just copied and pasted that out of an
> > > email you send to
> > > this list ref another issue
> > >
> > > the middle bit might be a bit of of context here, i didn't
> > > really look at
> > > it, just saw the cfloop
> > >
> > > thought you might've recognised it, do an advanced search on
> > > form fields and
> > > you'll come across it :)
> > >
> > >
> > > -----Original Message-----
> > > From: Rich Wild [mailto:[EMAIL PROTECTED]
> > > Sent: 18 June 2003 17:12
> > > To: '[EMAIL PROTECTED]'
> > > Subject: RE: [ cf-dev ] Looping through form fields in MX
> > >
> > >
> > > I'm not quite sure what you're doing with the mid, but if you
> > > just want to
> > > add that field to the list then use: listappend(idList, i) as
> > > i contains the
> > > name of the field in the list at that iteration of the loop
> > >
> > > <cfset idList ="">
> > > <cfloop list="#form.fieldnames#" index="i">
> > >   <cfif findnocase('chkmsg', i)>
> > >           <cfset idList = listappend(idList, i)>
> > >   </cfif>
> > > </cfloop>
> > >
> > >
> > > > -----Original Message-----
> > > > From: Mark Smyth [mailto:[EMAIL PROTECTED]
> > > > Sent: 18 June 2003 17:14
> > > > To: '[EMAIL PROTECTED]'
> > > > Subject: [ cf-dev ] Looping through form fields in MX
> > > >
> > > >
> > > > the syntax below doesn't seem to be working for me in MX
> > > >
> > > > if its a bug, what the next easiest way to loop through
> > form fields
> > > > dynamically?
> > > >
> > > > <cfset idList ="">
> > > > <cfloop list="#form.fieldnames#" index="i">
> > > >         <cfif findnocase('chkmsg', i)>
> > > >                 <cfset idList = listappend(idList,
> mid(i, 1, 6))>
> > > >         </cfif>
> > > > </cfloop>
> > > >
> > > > thanks
> > > > mark
> > > >
> > > > --
> > > > ** Archive:
> > http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
> > >
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> > > For human help, e-mail: [EMAIL PROTECTED]
> > >
> >
> >
> > --
> > ** Archive:
http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
>
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> For human help, e-mail: [EMAIL PROTECTED]
>
> --
> ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
>
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> For human help, e-mail: [EMAIL PROTECTED]
>
>
> --
> ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
>
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> For human help, e-mail: [EMAIL PROTECTED]
>
> --
> ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
>
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> For human help, e-mail: [EMAIL PROTECTED]
>


--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]


--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 10/06/2003

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 10/06/2003


--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]



--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 10/06/2003

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 10/06/2003


--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 10/06/2003

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.489 / Virus Database: 288 - Release Date: 10/06/2003


-- 
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

Reply via email to