Re: ColdFusion Server Survey
According to the link, the survey is closed. "This survey is currently closed. Please contact the author of this survey for further assistance." ~Brad - Original Message - From: "Shilpi Khariwal" To: "cf-talk" Sent: Sunday, June 20, 2010 11:39 PM Subject: ColdFusion Server Survey > > Dear All, > > If you have not already filled the ColdFusion Survey, please do so using > the following link: > > http://www.surveymonkey.com/s/6N7QWPQ ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334671 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm
ColdFusion Server Survey
Dear All, You are one of a small group of ColdFusion users whose opinion we consider above all others. As such, your input is extremely valuable to us while we consider what direction the next version of ColdFusion Server should take. If you have not already filled the ColdFusion Survey, please do so using the following link: http://www.surveymonkey.com/s/6N7QWPQ We also request you to take a few minutes of your time to send us your thoughts on the following: ⢠How would you describe your experience with ColdFusion Builder? ⢠In what areas would you like to see improvements made? ⢠What features would you like to see in the next version? If you would like to tell us anything more than what weâve requested above, please feel free to do so, we would be more than happy to hear from you. Thank you for your time. Sincerely, The Adobe ColdFusion Server team ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334670 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm
Re: won't work on live site, works locally
What is the error message? I don't think it matters where you generate your key. Are you generating a new key on each page request or have you hard-coded a key in the request scope? You could generate a secret key for each user session, which would be more secure than generating a key once an using it everywhere, assuming you are only using the encryption to secure form variables and url variables within a user session. -Mike Chabot http://www.linkedin.com/in/chabot On Sun, Jun 20, 2010 at 7:32 PM, Matthew P. Smith wrote: > > request.encryption.secretkey, request.encryption.algorithm, > request.encryption.encoding)> > > Can't figure out why. > > Does it matter where you generate the key? > > > ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334669 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm
won't work on live site, works locally
Can't figure out why. Does it matter where you generate the key? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334668 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm
Re: CF on IIS and 405 error
Thanks Bobby, Just tried that, same result. Cheers, Kris On Sun, Jun 20, 2010 at 4:59 PM, Bobby Hartsfield wrote: > > Have you tried: /?#cgi.query_string# > > > I know this isn't CF-specific, but was wondering if anyone has a way > around this. Trying to avoid specifying the script name in the form > action, and IIS isn't happy about that when using method=post. Works > fine with get. > > index.cfm is declared as default document for the directory. From what > I've read this is a long-standing issue with IIS (no script name in > form action, method=post, default document is not called). > > Form looks something like this: > > action="?#cgi.query_string#"> > value="#someexistingvalue#" /> > > Go > > > > Want to pass querystring with the action. > Removing the method avoids the 405 error, but really don't want to use > GET method. > > Cheers, > Kris > > > > ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334667 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm
RE: CF on IIS and 405 error
Have you tried: /?#cgi.query_string# .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Kris Jones [mailto:kris.jon...@verizon.net] Sent: Sunday, June 20, 2010 4:49 PM To: cf-talk Subject: CF on IIS and 405 error I know this isn't CF-specific, but was wondering if anyone has a way around this. Trying to avoid specifying the script name in the form action, and IIS isn't happy about that when using method=post. Works fine with get. index.cfm is declared as default document for the directory. From what I've read this is a long-standing issue with IIS (no script name in form action, method=post, default document is not called). Form looks something like this: Go Want to pass querystring with the action. Removing the method avoids the 405 error, but really don't want to use GET method. Cheers, Kris ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334666 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm
CF on IIS and 405 error
I know this isn't CF-specific, but was wondering if anyone has a way around this. Trying to avoid specifying the script name in the form action, and IIS isn't happy about that when using method=post. Works fine with get. index.cfm is declared as default document for the directory. From what I've read this is a long-standing issue with IIS (no script name in form action, method=post, default document is not called). Form looks something like this: Go Want to pass querystring with the action. Removing the method avoids the 405 error, but really don't want to use GET method. Cheers, Kris ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334665 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm