[cfaussie] CF10 Form Fields

2012-07-04 Thread Brett Payne-Rhodes

Hi,

I've just found another difference between CF10 and earlier versions and that 
is the handling of multiple form elements with the same name - like a set of 
checkbox options. Previously these would be passed through to CF as a simple 
comma delimited string but in CF10 they appear to be passed as an array.

Can anybody else using CF10 confirm this behaviour please?

Thanks,

Brett
B)

--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] CF10 Form Fields

2012-07-04 Thread AJ Mercer
this code  produces a list on ACF10 and Railo 4 beta

cfdump var=#form# label=form expand=true /
form action= method=post
oneinput name=test type=checkbox value=1br /
twoinput name=test type=checkbox value=2br /
threeinput name=test type=checkbox value=3br /
input type=submit value=go name=action
/form


form - structACTIONgoFIELDNAMESTEST,ACTIONTEST1,3

formScopeactionstringgofieldnamesstringtest,actionteststring1,2,3


On 4 July 2012 16:31, Brett Payne-Rhodes bret...@gmail.com wrote:

 Hi,

 I've just found another difference between CF10 and earlier versions and
 that is the handling of multiple form elements with the same name - like a
 set of checkbox options. Previously these would be passed through to CF as
 a simple comma delimited string but in CF10 they appear to be passed as an
 array.

 Can anybody else using CF10 confirm this behaviour please?

 Thanks,

 Brett
 B)

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to cfaussie+unsubscribe@**
 googlegroups.com cfaussie%2bunsubscr...@googlegroups.com.
 For more options, visit this group at http://groups.google.com/**
 group/cfaussie?hl=en http://groups.google.com/group/cfaussie?hl=en.




-- 

*AJ Mercer*
webonix:net strength=Industrial / http://webonix.net | webonix:org
community=Open / http://webonix.org
http://twitter.com/webonix
Railo Community Manager http://www.getrailo.org/index.cfm/community/team/

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] CF10 Form Fields

2012-07-04 Thread AJ Mercer
this could be why

http://www.boyzoid.com/blog/index.cfm/2012/2/26/ColdFusion-10--Form-Fields-With-the-Same-Name


Application.cfc
this.sameformfieldsasarray = true;

On 4 July 2012 16:31, Brett Payne-Rhodes bret...@gmail.com wrote:

 Hi,

 I've just found another difference between CF10 and earlier versions and
 that is the handling of multiple form elements with the same name - like a
 set of checkbox options. Previously these would be passed through to CF as
 a simple comma delimited string but in CF10 they appear to be passed as an
 array.

 Can anybody else using CF10 confirm this behaviour please?

 Thanks,

 Brett
 B)

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to cfaussie+unsubscribe@**
 googlegroups.com cfaussie%2bunsubscr...@googlegroups.com.
 For more options, visit this group at http://groups.google.com/**
 group/cfaussie?hl=en http://groups.google.com/group/cfaussie?hl=en.




-- 

*AJ Mercer*
webonix:net strength=Industrial / http://webonix.net | webonix:org
community=Open / http://webonix.org
http://twitter.com/webonix
Railo Community Manager http://www.getrailo.org/index.cfm/community/team/

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] CF10 Form Fields

2012-07-04 Thread Brett Payne-Rhodes

Thanks Andrew,

The plot thickens but becomes a little clearer...

The site is running application.cfm not application.cfc so there is no 
opportunity to apply that setting and it appears that the 'default' setting 
only takes effect after application.cfm completes execution. Within 
application.cfm we are running a blocker script to try and catch SQL injection 
hacks and that is what is reading the form values - and crashing because of the 
array. Easily fixed but still a pain in the migration process to CF10. I guess 
I should bite the bullet and convert to application.cfc.

I put up an example here: http://cftest.yoursite.net.au/formtest.cfm

Cheers,

Brett
B)


On 4/07/2012 4:53 PM, AJ Mercer wrote:

this could be why
http://www.boyzoid.com/blog/index.cfm/2012/2/26/ColdFusion-10--Form-Fields-With-the-Same-Name

Application.cfc
this.sameformfieldsasarray = true;

On 4 July 2012 16:31, Brett Payne-Rhodes bret...@gmail.com 
mailto:bret...@gmail.com wrote:

Hi,

I've just found another difference between CF10 and earlier versions and 
that is the handling of multiple form elements with the same name - like a set 
of checkbox options. Previously these would be passed through to CF as a simple 
comma delimited string but in CF10 they appear to be passed as an array.

Can anybody else using CF10 confirm this behaviour please?

Thanks,

Brett
B)

-- 
You received this message because you are subscribed to the Google Groups cfaussie group.

To post to this group, send email to cfaussie@googlegroups.com 
mailto:cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com 
mailto:cfaussie%2bunsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.




--

*AJ Mercer*
webonix:net strength=Industrial / http://webonix.net | webonix:org 
community=Open / http://webonix.org
http://twitter.com/webonix
Railo Community Manager http://www.getrailo.org/index.cfm/community/team/

--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.


--
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[cfaussie] CF9 on IIS7.5 Error Messages

2012-07-04 Thread Steve Onnis
I have had a bit of a look around but cant seem to find a solution for this.

 

IIS7 is hijacking the coldfusion errors and just displaying an internal
error 500 message.

 

Anyone got a working around for this?

 

Steve

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] CF9 on IIS7.5 Error Messages

2012-07-04 Thread Andrew Scott
There is an option in the settings to enable HTTP status codes, you may
wish to turn this off if you want the ColdFusion error to be displayed.

Just an FYI, IIS is not hijacking the error, it is ColdFusion sending a 500
error as defined by this setting.

-- 
Regards,
Andrew Scott
WebSite: http://www.andyscott.id.au/
Google+: http://plus.google.com/108193156965451149543



On Thu, Jul 5, 2012 at 2:53 AM, Steve Onnis st...@cfcentral.com.au wrote:

 I have had a bit of a look around but cant seem to find a solution for
 this.

 ** **

 IIS7 is hijacking the coldfusion errors and just displaying an internal
 error 500 message.

 ** **

 Anyone got a working around for this?

 ** **

 Steve



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[cfaussie] CFBuilder installation question

2012-07-04 Thread Andrew Myers
Hi,

Does anyone know if you can install the CFBuilder plugin on multiple 
eclipse versions concurrently?

I have it installed on Indigo at the moment, but would like to try it on 
Juno.  Do I need to uninstall the plugin completely, or is there a way of 
getting it over to Juno without having to remove my current install?

Thanks,
Andrew.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/cfaussie/-/Q0iNFWrrBG0J.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] CFBuilder installation question

2012-07-04 Thread Andrew Myers
Well that's very much related to my question.  Bummer...

On 5 July 2012 09:53, Kai Koenig k...@koeni.de wrote:

 Totally independently to your question - Hemant said the other day that
 CFB is not supported on Juno. Given the major changes Eclipse has undergone
 for the Juno release, I wouldn't put my hopes up too high... :-/

 Kai

 
  Does anyone know if you can install the CFBuilder plugin on multiple
 eclipse versions concurrently?
 
  I have it installed on Indigo at the moment, but would like to try it on
 Juno.  Do I need to uninstall the plugin completely, or is there a way of
 getting it over to Juno without having to remove my current install?
 
  Thanks,
  Andrew.

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to
 cfaussie+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/cfaussie?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] CFBuilder installation question

2012-07-04 Thread Chris Velevitch
Create a file called cfbuilder.link and put in it:-

 path=(location of your cfb2 plugins directory)

and place that file into the dropins directory of the instance of
eclipse you want to use it in.


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
Topic: Understanding Responsive Web Design
Date: 30th July at 6pm for 6:30 start
Details and RSVP on
http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=42518

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] CFBuilder installation question

2012-07-04 Thread Andrew Myers
As Kai said, it looks like it won't work to any extent in Juno.  I can
CFBuilder stuff in the Help menu and Preferences, but there's no other
trace of it in the views, perspectives, etc.



On 5 July 2012 10:29, Andrew Myers am2...@gmail.com wrote:

 Thanks heaps Chris.  Since it's that simple I'll give it a go on Juno and
 see what I run into.

 Much appreciated.

 Andrew.


 On 5 July 2012 10:12, Chris Velevitch chris.velevi...@gmail.com wrote:

 Create a file called cfbuilder.link and put in it:-

  path=(location of your cfb2 plugins directory)

 and place that file into the dropins directory of the instance of
 eclipse you want to use it in.


 Chris
 --
 Chris Velevitch
 Manager - Adobe Platform Users Group, Sydney
 m: 0415 469 095
 www.apugs.org.au

 Adobe Platform Users Group, Sydney
 Topic: Understanding Responsive Web Design
 Date: 30th July at 6pm for 6:30 start
 Details and RSVP on
 http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=42518

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to
 cfaussie+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/cfaussie?hl=en.




-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] CFBuilder installation question

2012-07-04 Thread Chris Velevitch
Does CF appear in the new project wizard (File-New-Other...)?

On Thu, Jul 5, 2012 at 12:14 PM, Andrew Myers am2...@gmail.com wrote:
 As Kai said, it looks like it won't work to any extent in Juno.  I can
 CFBuilder stuff in the Help menu and Preferences, but there's no other
 trace of it in the views, perspectives, etc.




 On 5 July 2012 10:29, Andrew Myers am2...@gmail.com wrote:

 Thanks heaps Chris.  Since it's that simple I'll give it a go on Juno and
 see what I run into.

 Much appreciated.

 Andrew.


 On 5 July 2012 10:12, Chris Velevitch chris.velevi...@gmail.com wrote:

 Create a file called cfbuilder.link and put in it:-

  path=(location of your cfb2 plugins directory)

 and place that file into the dropins directory of the instance of
 eclipse you want to use it in.


 Chris
 --
 Chris Velevitch
 Manager - Adobe Platform Users Group, Sydney
 m: 0415 469 095
 www.apugs.org.au

 Adobe Platform Users Group, Sydney
 Topic: Understanding Responsive Web Design
 Date: 30th July at 6pm for 6:30 start
 Details and RSVP on
 http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=42518

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to
 cfaussie+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/cfaussie?hl=en.



 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to
 cfaussie+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/cfaussie?hl=en.



-- 
Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
Topic: Understanding Responsive Web Design
Date: 30th July at 6pm for 6:30 start
Details and RSVP on
http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=42518

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] CFBuilder installation question

2012-07-04 Thread Andrew Myers
Unfortunately not.

I might try a clean install of the plugin on a VM tonight if I get time.

On 5 July 2012 12:27, Chris Velevitch chris.velevi...@gmail.com wrote:

 Does CF appear in the new project wizard (File-New-Other...)?

 On Thu, Jul 5, 2012 at 12:14 PM, Andrew Myers am2...@gmail.com wrote:
  As Kai said, it looks like it won't work to any extent in Juno.  I can
  CFBuilder stuff in the Help menu and Preferences, but there's no other
  trace of it in the views, perspectives, etc.
 
 
 
 
  On 5 July 2012 10:29, Andrew Myers am2...@gmail.com wrote:
 
  Thanks heaps Chris.  Since it's that simple I'll give it a go on Juno
 and
  see what I run into.
 
  Much appreciated.
 
  Andrew.
 
 
  On 5 July 2012 10:12, Chris Velevitch chris.velevi...@gmail.com
 wrote:
 
  Create a file called cfbuilder.link and put in it:-
 
   path=(location of your cfb2 plugins directory)
 
  and place that file into the dropins directory of the instance of
  eclipse you want to use it in.
 
 
  Chris
  --
  Chris Velevitch
  Manager - Adobe Platform Users Group, Sydney
  m: 0415 469 095
  www.apugs.org.au
 
  Adobe Platform Users Group, Sydney
  Topic: Understanding Responsive Web Design
  Date: 30th July at 6pm for 6:30 start
  Details and RSVP on
 
 http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=42518
 
  --
  You received this message because you are subscribed to the Google
 Groups
  cfaussie group.
  To post to this group, send email to cfaussie@googlegroups.com.
  To unsubscribe from this group, send email to
  cfaussie+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/cfaussie?hl=en.
 
 
 
  --
  You received this message because you are subscribed to the Google Groups
  cfaussie group.
  To post to this group, send email to cfaussie@googlegroups.com.
  To unsubscribe from this group, send email to
  cfaussie+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/cfaussie?hl=en.



 --
 Chris
 --
 Chris Velevitch
 Manager - Adobe Platform Users Group, Sydney
 m: 0415 469 095
 www.apugs.org.au

 Adobe Platform Users Group, Sydney
 Topic: Understanding Responsive Web Design
 Date: 30th July at 6pm for 6:30 start
 Details and RSVP on
 http://apugs.groups.adobe.com/index.cfm?event=post.displaypostid=42518

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to
 cfaussie+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/cfaussie?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.