Re: Ajax cfgrid bind problem

2007-09-12 Thread gary gilbert
will be. example url http://mysite/projects/mycfc.cfc?method=myfunctionreturnformat=jsonargumentcollection=... Regards, Gary Gilbert http://www.garyrgilbert.com/blog ~| Check out the new features and enhancements in the latest product

Re: Ajax cfgrid bind problem

2007-09-12 Thread gary gilbert
. As a workaround or until someone comes up with a solution you could bind to a URL instead of a CFC. Regards, Gary Gilbert http://www.garyrgilber.com/blog ~| ColdFusion is delivering applications solutions at at top companies around

Re: XHTML Style CF?

2007-09-12 Thread gary gilbert
Its mostly a coding style thing. The style guide that company I work for put out requires that all tags that can be closed are closed. As Charlie stated it serves no purpose whatsoever. But it does look nice. -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: Help needed in finding a string within a cgi variable.

2007-09-13 Thread gary gilbert
If you are only searching for the existence of _cache you could just use findNoCase('_cache',cgi.query_string) instead of listFindNoCase. I know they improved the speed of all the list functions for cf8 but using it in this case seems a little superfluous. -- Gary Gilbert http

Re: Another cfwindow question...

2007-09-13 Thread gary gilbert
) and then you would need to additionally add the yui adapter and cf libraries too. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion is delivering applications solutions at at top companies around the world in government

Re: [CF-Dev] Adobe Max 2007

2007-09-14 Thread gary gilbert
qualify it as a vacation. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Re: Can I assign a variable [pointer?] to a row of a query

2007-09-18 Thread gary gilbert
your query so accessing a columns data using the row index should be fast. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles

Re: Quick Question About Dbase Architecture

2007-09-18 Thread gary gilbert
on foreign key columns which will obviously hurt performance. For improved performance you could build views that join the tables together. Views are faster than running plain old select queries and doing all the joins. -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: CF8 Pricing

2007-09-20 Thread gary gilbert
I cant recall was CF always sold per 2 cpu's or is this new since MX ? -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today

Re: Instantiating all objects within Application.cfm

2007-09-20 Thread gary gilbert
You could store them in the session scope. If you use the application.cfcyou could do it all on the onSessionStart method -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion 8 - Build next generation apps today

Re: Numberformat and cfgrid

2007-09-21 Thread gary gilbert
Hi Steve, I also have a post about cell renderers you can see it here http://www.garyrgilbert.com/blog/index.cfm/2007/8/24/CFGRID-Cell-Renderer-Revisited -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion 8

Re: Security Questions

2007-09-26 Thread gary gilbert
Andy, XXS means cross-site-scripting. You should check out this http://de.wikipedia.org/wiki/Cross-Site_Scripting entry in wikipedia. There are a number of cf functions floating around that have been written to help prevent this exploit as well as coding practices. -- Gary Gilbert http

Re: Security Questions

2007-09-26 Thread gary gilbert
Damn keyboard!!!XSS On 9/26/07, gary gilbert [EMAIL PROTECTED] wrote: Andy, XXS means cross-site-scripting. You should check out this http://de.wikipedia.org/wiki/Cross-Site_Scripting entry in wikipedia. There are a number of cf functions floating around that have been written

Re: Why wouldn't the first cell alternate colors with this code?

2007-09-27 Thread gary gilbert
#dateformat(get_events.event_date, ddd)# /td Makes your code a bit more readable and weight a bit less. Regards, -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Download the latest ColdFusion 8 utilities including

Re: cfgrid border in CF8

2007-09-27 Thread gary gilbert
You should be able to do it the same way, just add the correct style to your page to override the included stylesheet -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Get the answers you are looking for on the ColdFusion

Re: CFFILE vs FTP

2007-09-27 Thread gary gilbert
Its probably the timeout settings on the server. if it takes longer than the default timeout ( 30 seconds ) to upload it will fail. You may want to use cfsetting requestTimeOut=600 which is ten minutes Regards -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: imageGetEXIFMetadata() getting hammered

2007-09-28 Thread gary gilbert
Hi Paul can you give me the url for a couple images you are having problems with so I can try on my end? Thanks Gary On 9/28/07, Paul Hastings [EMAIL PROTECTED] wrote: gary gilbert wrote: Hi Paul I had similar problems and blogged about it here: http://www.garyrgilbert.com/blog/index.cfm

Re: imageGetEXIFMetadata() getting hammered

2007-09-28 Thread gary gilbert
(myimage)#/ -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now http://download.macromedia.com/pub/labs/coldfusion

Re: var and queries with no name

2007-10-01 Thread gary gilbert
. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http://www.adobe.com/cfusion/showcase/index.cfm?event

Re: quot;Invalid Parameter Typequot; Error message - When is a number not a number?

2007-10-02 Thread gary gilbert
will receive the same error. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http://www.adobe.com

Re: Turn off autocomplete popup in CFEclipse?

2007-10-02 Thread gary gilbert
He cant possibly mean tag insite, its the damn variables that are annoying. Thanks Casey! I never bothered to try and find how to switch it off I just ground my teeth... -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: CFGRID Binding without Paging

2007-10-04 Thread gary gilbert
ajaxOnLoad(removeFooter) Regards, -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers. http://www.adobe.com/cfusion

Re: Constantly execute (refresh?) page, for cfpop?

2007-10-08 Thread gary gilbert
Hi George, You could create the page as normal and set up a scheduled event in the administrator to run it every 5 minutes. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Get involved in the latest ColdFusion discussions

Re: Constantly execute (refresh?) page, for lt;cfpopgt;?

2007-10-08 Thread gary gilbert
George, You can also use the cfschedule tag without having to have access to the administrator. Though it is possible to disable this tag via the administrator sandbox/ resource security page. Either way you will have to check with your hosting provider. -- Gary Gilbert http

Re: CF Coding Standards

2007-10-08 Thread gary gilbert
=first name of person / or cfargument name=sfirstName type=string required=true hint=first name of person / The first is a superfluous use of carriage returns in my opinion and does nothing to improve readability. -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: CF8 - Why is my ajax undefined?

2007-10-10 Thread gary gilbert
for any of the ajax stuff to work. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://download.macromedia.com/pub/labs

Re: Request timeout

2007-10-11 Thread gary gilbert
on the flexmessaging gateway in the CF admin... -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs

Re: flash form and spry tabs

2007-10-11 Thread gary gilbert
Will, Did you set the timeout value on the cfform tag? It defaults to 0 which would probably result in you receiving that error. cfform name=myform format=flash timeout=300 Regards, -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: OOP Coldfusion

2007-10-11 Thread gary gilbert
person to judge which one best fits with how you think. Regards, -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers

Re: Can a ColdFusion application see what processes are scheduled?

2007-10-12 Thread gary gilbert
any methods available to get the scheduled events. You may want to look again yourself I didnt look at every cfc in the directory but if its there you should be able to do it, provided your sandbox security allows it. Regards, -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: Inserting a record into CFGRID

2007-10-29 Thread gary gilbert
Anthony, I am pretty sure that the insertbutton and deletebutton attributes are for applet only, additionally the insert attribute is for applet only, which means you can't insert a row into a cfgrid only update or delete. -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: CFmenu submenu icons

2007-10-29 Thread gary gilbert
. The class is called submenuindicator and uses an image called map.gif to provide the icon. Cheers, -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Get involved in the latest ColdFusion discussions, product development sharing

Re: cftree Refresh

2007-11-05 Thread gary gilbert
Hi guys, I would say this is a bug in the CF implementation. You may want to log it as such. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion is delivering applications solutions at at top companies around

Re: Tab Layout and forms questions...

2007-11-05 Thread gary gilbert
. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now http://download.macromedia.com/pub/labs/coldfusion

Isolating CF instances

2007-11-06 Thread gary gilbert
-- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http://www.adobe.com/cfusion/showcase/index.cfm

Re: binding problem

2007-11-06 Thread gary gilbert
Hi Brian, I copy and pasted your code just as you have it here and it worked without error. Just to confirm, you do have CF8 Installed right? -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Check out the new features

Re: Reading .TXT files as CF files

2007-11-06 Thread gary gilbert
add your ..rubbish, or . lfc extensions to the list and bobs your uncle -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http

Re: Isolating CF instances

2007-11-06 Thread gary gilbert
Thanks for the reply Cutter. I am of the same mind as you but I am looking for definitive yes or no on this one. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Download the latest ColdFusion 8 utilities including Report

Re: LiveDocs / adobe.com down

2007-11-07 Thread gary gilbert
Yep its down for me too. Just to be sure I checked through a proxy server and had no luck there either -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion is delivering applications solutions at at top companies

Re: cfimage captcha

2007-11-08 Thread gary gilbert
Dave, I am pretty sure you are SOL on this one. The only suggestion I would have is to wrap your captcha image in a div tag with a white background or some other neutral color. -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: CFStoredProc

2007-11-09 Thread gary gilbert
If you arent returning a result set then you should use a procparam with type=out. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion is delivering applications solutions at at top companies around the world

Re: cflogout problem

2007-11-12 Thread gary gilbert
# CFCOOKIE NAME=CFTOKEN VALUE=#SESSION.CFTOKEN# /CFLOCK /cfif or switch to using J2EE sessions which automatically destroys the jsessionid when the browser is closed. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Check out

Re: CF 8 install and the hot fix.

2007-11-23 Thread gary gilbert
I would install the Hotfix immediately, take a proactive approach here, why wait until you have a problem you already have the solution so fix it now. Besides the hotfix doesn't take too long to install anyway. -- Gary Gilbert http://www.garyrgilbert.com/blog

Re: Paging won't display on CFGRID

2007-12-12 Thread gary gilbert
Page size is not for the Flash version of the grid it is only for the Ajax version. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex

Re: CFC, YES OR NO

2008-02-06 Thread gary gilbert
(insert, update, delete, select etc). I would definitely recommend taking a basic programming course or getting a book on programming from your local library. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Adobe® ColdFusion

Re: stupid cfscript/javascript question

2008-02-06 Thread gary gilbert
li style=list-style-type:square; margin-left:-18px; margin-right: 8px; cfoutput #show_new(dt)# /cfoutput /li -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Adobe® ColdFusion® 8 software 8 is the most important

Re: Binding to a CFGrid from tabs

2008-04-22 Thread gary gilbert
that a try... -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http

Re: Preventing user from changing ID number in URL

2008-05-08 Thread gary gilbert
that they shouldnt have access to. That does tend to make things a bit more complicated though when designing your security framework. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| Adobe® ColdFusion® 8 software 8 is the most

Re: cfgridcolumn href question

2008-07-17 Thread gary gilbert
want. You will probably have to do your reconfiguring of the grid using the ajaxOnLoad() function to call your reconfigure js function. Gary Gilbert http://www.garyrgilbert.com/blog On Thu, Jul 17, 2008 at 10:49 AM, Lawrence Mak [EMAIL PROTECTED] wrote: Hi, I am trying to write a cfgrid

Re: CFWindow and CFForm Submit

2008-07-17 Thread gary gilbert
Cfwindow is just a layer in the entire document, you should be able to call the refresh method on your grid in your parent window by using javascript after you submit your form in the cfwindow, you just need to have a js function that exposes this functionality. Gary Gilbert http

Re: cfprocparam and varchar(max)

2008-07-17 Thread gary gilbert
Variable is a valid attribute but its the coldfusion variable name you want to assign the results of an OUT or INOUT parameter. CS is right in you case you should be using the value attribute. Gary Gilbert http://www.garyrgilbert.com/blog On Thu, Jul 17, 2008 at 1:02 AM, Scott Brady [EMAIL

Re: Problems with switching from application.cfm to application.c fc

2008-07-22 Thread gary gilbert
Richard, You may want to check out the documentation on application.cfc before going any further... Gary ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Details on CF9's free for academic licensing?

2008-08-19 Thread gary gilbert
Railo also has a free community edition, it has some limitations but I am sure if you contact them and indicate that you would like to use it in a teaching environment they may give you a version upgrade. You can see the details at http://www.railo-technologies.com/en/index.cfm?treeID=148

Re: Repost: cfgrid and cfform enctype=multipart/form-data

2008-08-22 Thread gary gilbert
Hi David, Are you planning on submitting binary data from your grid? If not there isn't any reason to use the multipart. I also received the error when submitting the page. I do believe this is a bug and should be reported. Gary Gilbert http://www.garyrgilbert.com/blog On Thu, Aug 21, 2008

Re: File upload 250 MB Discussion

2008-08-28 Thread gary gilbert
You do realize of course that this is a Coldfusion mailing list and not a Struts and/or JSP mailing list? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Railo 3 Released

2008-09-09 Thread gary gilbert
Railo has just announced the release of their new major version Railo 3 You can check out the lastest features over on the Railo website http://www.railo.ch/blog/index.cfm/2008/9/9/Railo-30-released--Features-part-1 Some really cool stuff those guys in Switzerland are doing! Gary Gilbert http

Re: Trouble getting this loop to work ...

2008-09-25 Thread gary gilbert
I have to agree with Gert on this one. That function needs to be rewritten so that it can accept a list of values. Would be interesting to see what the function is doing too. Running multiple queries in that way is unnecessarily network heavy. Gary Gilbert http://www.garyrgilbert.com/blog

Re: How long to get new posts picked up by CFBloggers.org?

2009-01-20 Thread gary gilbert
site. Gary Gilbert http://www.garyrgilbert.com/blog On Tue, Jan 20, 2009 at 1:39 PM, Andy Matthews andymatth...@comcast.netwrote: Ray added me to CFBloggers.org about 5 days ago. Since then I've made two new posts but neither of them have gotten picked up by the site. Do I need to do

Re: Railo Hosting or a very basic VPS to install it on

2009-01-20 Thread gary gilbert
I have a ultra root package with http://viviotech.net Full Root Access - 5 MB (50 GB) Disk Space - 1024 MB (1 GB) RAM - 2048 MB (2 GB) Swap - 1.5Mbps Unlimited* Transfer Which runs about 50 USD/month. Been running them since end of November no complaints so far. Gary Gilbert http

Re: Date format question

2010-01-05 Thread gary gilbert
://msdn.microsoft.com/en-us/library/1k1skd40.aspx Parse(String, IFormatProvider)http://msdn.microsoft.com/en-us/library/kc8s65zs.aspx Parse(String, IFormatProvider, DateTimeStyles)http://msdn.microsoft.com/en-us/library/ey1cdcx8.aspx Regards Gary Gilbert http://www.garyrgilbert.com/blog On Tue, Jan 5

Re: CF 8 and Access 2007

2010-01-05 Thread gary gilbert
In the coldfusion administrator choose datasources, in the dropdown list of datatypes choose microsoft access, add a datasource name click next, on the next screen browse to the mdb file and click finish. Gary Gilbert http://www.garyrgilbert.com/blog On Sun, Dec 20, 2009 at 3:03 PM, Terry