CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread James Milks

Hi,
Have been away from CF for a long time. Retooling a site to use more modern 
features and I would like to use the CFSELECT bind features to link to select 
lists.

I followed the example by Forta on the Adobe site, but it is just not working.  
have uploaded a page with the code here: 
http://www.sihrhockey.org/cfc_tester.cfm

Any help appreciated.

James 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331918
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread James Milks

Thank you - I was sure I tried trimming, but I guess not.

James

-Original Message-
From: Azadi Saryev [mailto:azadi.sar...@gmail.com] 
Sent: March 21, 2010 8:41 AM
To: cf-talk
Subject: Re: CF8 cfselect ajax features - what am I missing?


for some reason - maybe to do with data type of underlying db column - the
values of options in your letterList cfselect have trailing spaces.
hence the arguments passed to your getTeamsByLetter() cfc method look like
this: |{letter:M|| ||}|, and thus 'M %' is what your query tries to
match.

add trim() around arguments.letter and that should solve the problem:
select * from teams where team_name like '#trim(Arguments.letter)#%'
order by team_name asc

Azadi


On 21/03/2010 20:15, James Milks wrote:
 Hi,
 Have been away from CF for a long time. Retooling a site to use more
modern features and I would like to use the CFSELECT bind features to link
to select lists.

 I followed the example by Forta on the Adobe site, but it is just not 
 working.  have uploaded a page with the code here: 
 http://www.sihrhockey.org/cfc_tester.cfm

 Any help appreciated.

 James

 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331923
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 cfselect ajax features - what am I missing?

2010-03-21 Thread James Milks

Well, I got the cfselect to work, but when I placed the code into a page 
displayed in a lightbox (facebox actually) it doesn't work.

I suspect there is an Ajax call in the generated JS that is failing. Is this a 
question for cf-talk or the ajax list?

James

Thank you - I was sure I tried trimming, but I guess not.



On 21/03/2010 20:15, James Milks wrote:
 Hi,
 Have been away from CF for a long time. Retooling a site to use more
modern features and I would like to use the CFSELECT bind features to link
to select lists. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:331924
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Confused: CFC / Date Functions

2008-05-24 Thread James Milks
Hi,
I have returned to some CF development after a long absence, and am retooling a 
site to use CFCs, and have been a little stumped by a problem I am having.

I have created a Person cfc which, as the name suggests, represents a person. 
After retrieving info from a db, I loop over the recordset and construct a 
Person object for each record. Some of the records have a birthdate, which I 
set using a setBirthDate function. Additionally, there is s getBirthDate 
function to retrieve the value. 

This all works fine, until I tried to apply some formatting. More specifically, 
I tried to use the Year() function, but in all instances the value returned was 
1905. I tried applying a DateFormat of mm/dd/ first (which worked) and then 
using the Year function, but the value was still 1905. I then tried the Right() 
function, and much to my amazement, the value was still 1905. I am using a 
cfscript block inside of the getBirthDate method. I then applied the Right 
function to the actual cfreturn tag (as opposed to in the cfscript block) and 
it worked. I am confused.

So, although I have a workaround, I would like to better understand what is 
happening. Any info appreciated.

JM 

~|
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://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306005
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Confused: CFC / Date Functions

2008-05-24 Thread James Milks
Sorry. Here is the CFC code:

cffunction name=getBirthDate access=public output=false
returntype=string hint=Returns this object’s birthDate
cfscript
if(Variables.birthDate neq ){
variables.birthDate = 
DateFormat(variables.birthDate,mm/dd/);
//variables.birthDate = Year(variables.birthDate);
}
/cfscript
cfreturn Right(variables.birthDate,4) /
/cffunction
cffunction name=setBirthDate access=public output=false 
returntype=void hint=Sets this object’s birthDate
cfargument name=birthDate type=date required=true /
cfset variables.birthDate = arguments.birthDate /
/cffunction

~|
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://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306007
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Confused: CFC / Date Functions

2008-05-24 Thread James Milks
Can we see the code that invokes these CFCs?  The problem might lie there as 
well.

--
Can we see the code that invokes these CFCs?  The problem might lie there as 
well.

--
 Right. Sorry about that. I have omitted the query  loop code, but be aware 
that it is a vanilla SQL statement and the birth_date column is a datetime 
datatype on SQL Server.


cfscript
tmpPlayer = CreateObject(component, cfcs.Person).init();
tmpPlayer.setPersonId(qPlayers.person_id);
tmpPlayer.setFirstName(qPlayers.first_name);
tmpPlayer.setCommonName(qPlayers.common_name);
tmpPlayer.setLastName(qPlayers.last_name);
if(birth_date neq  and IsDate(birth_date)){
   tmpPlayer.setBirthDate(qPlayers.birth_date);
}
 

~|
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://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306012
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CFCOLLECTION files

2003-11-11 Thread James Milks
Hi all,
I did a CFFILE List of the directory which has my verity collections at my host. In addition to my collections, I noticed 4 other entries. Here is an example of one of the names:

calendarInfusion_C76ABA34-2B3D-1DEE-002F58AB986DCD4E

Unlike mine, they are located in the default collection directory, :\CFusionMX\Verity\Collections\. 

What are these? Are they related to my collections. I notice there are 4, and I have 4 of my own defined.

Thanks

JM
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:CFCOLLECTION files

2003-11-11 Thread James Milks
Thanks Dave,
I actually did a CFCOLLECTION List, and not a CFFILE. So I assume I could also delete them, which leads me to another question. Can one map CFCOLLECTION List to a particular directory based on login info?

This seems like shoddy hosting to me, what do you think?

JM
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:Verbose account of files transfered with an HTTP request

2003-11-08 Thread James Milks
Just testing and it sort of turned into a pissing contest. I disabled caching in IIS and it worked great, but simply including the CFHEADER tags made little difference with IE 6, and the server side changes did the trick. It just kept caching.

Thanks also for the tip on the MS Stress Test Tool. Worked great!

JM

 Dave wrote: ...you will probably have to disable client 
 cache support in the web server if that's possible, or use CF 
 to serve images for you (which will slow things down a bit).
 
 I am not concerned about the performance at this point. I 
 will look into suppressing the caching with IIS. 

I'm curious - though it's none of my business, really - why you'd want to
suppress image caching?

 In regards to using CF, would this be with CFCONTENT?

Yes, that's what I meant. I should've been more specific.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




randRange(); just how random is it?

2003-11-08 Thread James Milks
Hi all,
I have set up a page which picks 4 numbers from about 800 in order to randomly display images, however, the same ones seem to appear much more often than I would expect given that there are so many to choose from. Am I missing something?

JM
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




OT: Verbose account of files transfered with an HTTP request

2003-11-05 Thread James Milks
Hi all,
I have a need to display to a client exactly what is being transferred with a given HTTP request. This is being done to evaluate and explain caching.

So, for example, if a page has 10 images, I would like to find a piece of software that creates a sort of summary of the request, and lists the elements that were transfered (each image, etc). Does anyone know if something exists or how one would create such a beast?

Also, I want to make absolutely sure that the browser is not caching anything. To address this, I have used the CFHEADER tag with the Expires, Pragma and Cache-Control values. Is this enough? Am i missing something? I want to ensure that the same image is sent down with every page request and not cached, without changing settings on the browser.

Any info appreciated.

JM
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:Verbose account of files transfered with an HTTP request

2003-11-05 Thread James Milks
Thanks Guys,

Dave wrote: ...you will probably have to disable client cache support in the web server if that's possible, or use CF to serve images for you (which will slow things down a bit).

I am not concerned about the performance at this point. I will look into suppressing the caching with IIS. In regards to using CF, would this be with CFCONTENT?

Thanks

JM
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Help - CFCONTENT not retrieving PDF files on Mac

2003-10-22 Thread James Milks
Hi all,
I created a site which lists articles in PDF format. If a user is logged in, I make links out of the article names, and use CFCONTENT to retrieve the files which are stored off of the web root.

Everything is ok on Windows, but with IE 5.2 on Mac, it tries to download the file specified in the href link which has the CFContent code to grab the PDF. So instead of getting my_article.pdf, it tries to get content_retriever.cfm.

Any idea what is happening here?

James
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re:Help - CFCONTENT not retrieving PDF files on Mac

2003-10-22 Thread James Milks
Howdy and thanks.
I needed to add cfcontent type = application/pdf, and all is well in the Mac world.
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Hiding file name passed to CFCONTENT

2003-10-08 Thread James Milks
Hi,
Yet another cfontent question: How do I hide the name of the file I am passing to a CF content tag. For example, I have a listing of rows with links to several PDF files. I want to avoid putting the absolute path in the link in case someone looks at the source. Paranoid?

Anyhow, I messed around with the Encrypt function, but cannot get it to work, and don't feel like coming up with a databse solution because of time constraints. Any info appreciated.

J
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




CFFILE and Unicode

2003-09-18 Thread James Milks
Hi all,
I have a stituation where I must rename uploaded files which sometimes contain french 
characters in the file name (such as è) and I also insert the file name in a DB.

I was running into the bizarre situation where my french characters would get replaced 
with others. Poking around this list, I discovered the setEncode() function for form 
and url data, and this corrected the problem in terms of storing into the DB. 

However, the uploaded file I rename uses some of this form data, and unfortunately, 
the bizarre characters still appear in the file name. So it would appear that the 
setEncode() function has no effect on CFFILE.

Can anyone help me, I really need to preserve the french characters in the file names. 
I am using CFMX.

Thanks,

JM
~|
Message: http://www.houseoffusion.com/lists.cfm?link=i:4:137460
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


OT: Preventing Save As of website

2003-02-14 Thread James Milks
Hi all,
I am looking at different ways of protecting some content and am
wondering if there is a way of supressing the Save As functionality in
MSIE. One site I am unable to save like this is CNN.COM. When I try, the
browser goes about retrieving all of the files associated, but then an
error stating The web page could not be saved to the selected
location. Is this just some weird error, or have CNN in fact added
something to their site to do exactly this?

Any info appreciated, 

James Milks
Noncubicle Corporation / LostHockey.com
http://www.noncubicle.com
http://www.losthockey.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Problem with Java Applets in CF Server 5

2002-07-13 Thread James Milks

Hi
I just rebuilt a laptop and it is running Win2k pro. I installed CF5, JDK
1.4 and Apache 2. I had to configure them to work together (with an
unsupported module), and all seems to work at the CF level, but I am unable
to use the File Selector Java Applets in the CF administrator (for
configuring DSNs and so on).

I receive an applet window with the following error (and no files are
displayed):

Server Error
IO error on server communication

I suspect this is a file/directory location, but am not sure, Any help
appreciated.

James Milks
Noncubicle Corporation / LostHockey.com
http://www.noncubicle.com
http://www.losthockey.com

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Problem with Java Applets in CF Server 5

2002-07-13 Thread James Milks

Wow! Works great. This list never ceases to amaze me.

Thanks

James

-Original Message-
From: Todd [mailto:[EMAIL PROTECTED]]
Sent: July 13, 2002 7:56 PM
To: CF-Talk
Subject: Re: Problem with Java Applets in CF Server 5


James,

htdocs folder, there's a folder out of place.  I don't remember what it's
called, but I think it has something like a folder called /Main/ and it
just has  ide.cfm or something in it.  Move that into your /CFIDE/ folder
and it'll be fixed.

~Todd


At 07:56 PM 7/13/2002 -0400, you wrote:
Hi
I just rebuilt a laptop and it is running Win2k pro. I installed CF5, JDK
1.4 and Apache 2. I had to configure them to work together (with an
unsupported module), and all seems to work at the CF level, but I am unable
to use the File Selector Java Applets in the CF administrator (for
configuring DSNs and so on).

I receive an applet window with the following error (and no files are
displayed):

Server Error
IO error on server communication

I suspect this is a file/directory location, but am not sure, Any help
appreciated.

James Milks
Noncubicle Corporation / LostHockey.com
http://www.noncubicle.com
http://www.losthockey.com



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Odd question - IIS bug that dumped CF code to browser

2002-07-11 Thread James Milks

Hi,
I recall there was something you could type into the query string on a call
to a CF template that would cause the CF code to be dumped to the browser
(.htr bug in IIS or something like that...since patched I think)

I'm trying to settle a bet.

James

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Macromedia / Allaire IDEs

2002-07-05 Thread James Milks

Hi all,
I have been away from the CF world for about a year and a half, but have a
project which is bringing me back into full CF mode and I have to recommend
an IDE.

I have a question about what is going on with IDEs. I know that after
Macromedia took over Allaire that there were something like 11 development
environments, so it goes without saying that some must go.

Is Dreamweaver MX the new tool of choice. Are JRun and CF Studio dead? What
about all of the great things in Studio. Are they in Dreamweaver MX? Will DW
have JSP tag hints (or whatever you call the little popups that complete
functions, etc)?

Any input appreciated.

James

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Macromedia / Allaire IDEs

2002-07-05 Thread James Milks

Thanks, I will check the archives. I suspected I would get that as a reply,
but that I would also get what I really wanted (thanks again Dave), as I
don't have time to cruise through a million threads. Thanks all.

James


-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED]]
Sent: July 5, 2002 10:03 AM
To: CF-Talk
Subject: Re: Macromedia / Allaire IDEs


Hi all,
I have been away from the CF world for about a year and a half, but have a
project which is bringing me back into full CF mode and I have to recommend
an IDE.

I have a question about what is going on with IDEs. I know that after
Macromedia took over Allaire that there were something like 11 development
environments, so it goes without saying that some must go.

Is Dreamweaver MX the new tool of choice. Are JRun and CF Studio dead? What
about all of the great things in Studio. Are they in Dreamweaver MX? Will
DW
have JSP tag hints (or whatever you call the little popups that complete
functions, etc)?

Not to be short with you, but *please* check the archives on the subject. It
has been beaten to death so many times, it's not worth starting another
thread.

http://www.houseoffusion.com/cf_lists/

Regards,
Dave.



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF5 on Windows with Apache 2.0

2002-07-04 Thread James Milks

Hi all,
Is it possible to use CF Server 5 on Apache 2.0? The install of CF didn't
detect Apache, and I am wondering what to do. Does support only cover Apache
1.3.X?

Thanks,

James


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF5 on Windows with Apache 2.0

2002-07-04 Thread James Milks

Great! What do I need to do exactly? I assume I need to direct Apache to
pass .cfm requests to CF in the conf file. Is this correct?

James


-Original Message-
From: Gianluca Pinelli [mailto:[EMAIL PROTECTED]]
Sent: July 4, 2002 12:49 PM
To: CF-Talk
Subject: Re: CF5 on Windows with Apache 2.0


 Is it possible to use CF Server 5 on Apache 2.0?

Yes

 The install of CF didn't
 detect Apache,

It's normaly...Apache should be configurated manually after the
installation...



__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Need decryptor tag for CFUG presentation

2001-06-08 Thread James Milks

Hi all,
I need a copy of the decryptor tag floating around for a cfug presentation
next week. I have misplaced my copy...Please provide a URL where I can
locate one.

Thanks,
James Milks
Noncubicle Corporation
www.noncubicle.com
[EMAIL PROTECTED]
(613) 560-9855
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OK lets get a grip: Need decryptor tag for CFUG presentation

2001-06-08 Thread James Milks

I never figured I would start a firestorm about this...

I am trying to dynamically create a DSN and know for a fact that there are
templates in the CF administrator to do so. Via CFHTTP, I figured I had it
solved, but I keep getting busted by the login for the Administrator, so I
was going to figure out why it is puking by looking at the encryptrd files,
and was going t yak about it at the CFUG meeting.

I was NOT going to mention that I used the decryptor, but simply that it can
be done with existing templates provided you know what to pass. However, I
will likely avoid doing so as I don't want the whole CF community having a
cow over this.

James


-Original Message-
From: Todd Ashworth [mailto:[EMAIL PROTECTED]]
Sent: June 8, 2001 10:14 PM
To: CF-Talk
Subject: Re: Need decryptor tag for CFUG presentation


We consulted one ..

Unfortunately, while we *can* prove this, through at least one E-mail, we
legaly intercepted, we didn't have the time or the finances to persue the
matter, since we were actively engaging the Texas Department on Aging in
major contract negotiations and didn't have the resources to spare.  Also,
the son was not an employee of the company in question, so collecting
damages from him, personaly, would be difficult at best.  In short, the
whole legal process would probably cost more than the damages that we would
be awarded.  Better to see them waste their time and money and kill their
own chances of getting in on the market than to take them to court :)

Todd

- Original Message -
From: Steve Drucker [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, June 08, 2001 9:07 PM
Subject: RE: Need decryptor tag for CFUG presentation


 Well, I believe the current federal guidelines indicate a STATUTORY $100K
 per incident fine for the type of copyright infringement you are
describing.

 Time to find an attorney.

 -S
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Oddest Server Error I have seen thus far.

2001-04-07 Thread James Milks

That almost sounds like a joke...although I'm sure it isn't. How long can a
variable name be?

James

-Original Message-
From: Joseph Thompson [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 06, 2001 11:02 PM
To: CF-Talk
Subject: Re: Oddest Server Error I have seen thus far.


Check for "variables" with names that look like they may be reserved.

CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Recommended JSP IDE on linux?

2001-04-06 Thread James Milks

Hi all,
I am leaving the CF world for a while to do a JSP project over the summer.
It will be on linux. The company has Visual Age, but say I can use any IDE I
want. I have read that Visual Age does not have great JSP support. Does
anyone have a good recommendation?

Thanks
James Milks
Noncubicle Corporation
www.noncubicle.com
[EMAIL PROTECTED]
(613) 560-9855
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: HTML Email Detection

2001-04-06 Thread James Milks

Don't think so. There have been threads on this in the past. Some people
figure they can parse headers and stuff, but that is messy at best. In my
opinion, if the big sites still ask you to specify when joining a mailing
list, there isn't a good way of doing it, or they would have .

James

-Original Message-
From: Kevin Schmidt [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 06, 2001 4:10 PM
To: CF-Talk
Subject: HTML Email Detection


I want to send HTML enabled email with CFMAIL but I wan't to filter on
whether the clients email browser accepts HTML email.  Is there a way to do
this with CF?  I don't think there is.  What about on the client side could
they trigger an event with JS or VBS when they open the mail that detects
whether or not their email browser can render HTML?

Thanks for the help.

Kevin Schmidt, Web Technology Manager
Allaire Certified ColdFusion Developer
pwb inc.
integrated marketing communications
350 S. Main St., Suite 350
Ann Arbor, MI 48104
734.995.5000 (tel)
734.995.5002 (fax)
www.pwb.com
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Recommended JSP IDE on linux?

2001-04-06 Thread James Milks

It is my understanding that Kawa is a visual tool for beans and servlets.
Jrun Studio is the bells and whistles Allaire JSP editor, but sadly, they
have no intention at this time of porting any visual tools to Linux.

James

-Original Message-
From: Rey Bango [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 06, 2001 3:38 PM
To: CF-Talk
Subject: Re: Recommended JSP IDE on linux?


Check out Kawa from Allaire. I don't think it runs on Linux but then again,
your server may be the only thing that needs to run Linux.

Rey Bango...

- Original Message -
From: "James Milks" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, April 06, 2001 2:54 PM
Subject: OT: Recommended JSP IDE on linux?


 Hi all,
 I am leaving the CF world for a while to do a JSP project over the summer.
 It will be on linux. The company has Visual Age, but say I can use any IDE
I
 want. I have read that Visual Age does not have great JSP support. Does
 anyone have a good recommendation?

 Thanks
 James Milks
 Noncubicle Corporation
 www.noncubicle.com
 [EMAIL PROTECTED]
 (613) 560-9855

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Disabling Save Username Password in IE 5

2001-04-03 Thread James Milks

Hi All,
IS it possible to keep IE 5.X from asking if the user wishes to save the
login info they just supplied on a login form with basic username and
password textboxes? This would certainly add security on a shared
workstation.

Thanks...
James Milks
Noncubicle Corporation
www.noncubicle.com
[EMAIL PROTECTED]
(613) 560-9855
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Disabling Save Username Password in IE 5

2001-04-03 Thread James Milks

Perfect, programatically is what I meant.
Thanks...

-Original Message-
From: Sean Daniels [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 03, 2001 9:31 PM
To: CF-Talk
Subject: Re: Disabling "Save Username  Password" in IE 5


On 4/3/01 8:01 PM CF wrote:

 It's under

 Tools  Internet Options  Content  AutoComplete

You can do this on each workstation, or you can programmatically prevent
autocomplete on any field with the attribute "autocomplete" and the value
"off".

For example:

input type="password" name="pass" autocomplete="off"

This way you can do it on a form by form basis in your code rather than
going to each workstation.

- Sean
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Basic graphs/charts in CFML/HTML/DHTML that work in Netscape

2001-03-30 Thread James Milks

Hi All,
I have a requirement to generate basic graphs in plain old cfml/html/dhtml
for a client that needs to be done yesterday. I am aware that there is third
party software available for purchase, as well as that CF 5.0 will generate
basic flash graphics, but I can't wait, and there is no budget for new
software. SoI am hoping someone out there has done this sort of thing
and won't mind helping out. I have already checked a couple out that worked
in IE, but Netscape is the client's standard (sad but true...) and the ones
I have seen failed terribly.

Any help appreciated.
James Milks
Noncubicle Corporation
www.noncubicle.com
[EMAIL PROTECTED]
(613) 560-9855
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMAIL drives me NUTS!

2001-03-30 Thread James Milks

I agree with the port specification recommendation. I have seen this as
well...

-Original Message-
From: Edward Chanter [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 10:50 AM
To: CF-Talk
Subject: RE: CFMAIL drives me NUTS!


This may be a really stupid thing to say, but did you try adding the
port="25" parameter to the cfmail tag..? Just to see what happens.

Omitting it has always caused me problems in the past...

Also, are you getting a CF error when it runs or does it seem to run fine
and then just not send any mails...? If that's the case you may want to
check to see if they're queued on your mail server.

Just a few suggestions

-= Ed

 -Original Message-
 From: Hayes, David [mailto:[EMAIL PROTECTED]]
 Sent: 30 March 2001 4:33 PM
 To: CF-Talk
 Subject: RE: CFMAIL drives me NUTS!


 What kind of behavior or error messages are you seeing?

 -Original Message-
 From: Mike Kear [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 30, 2001 9:12 AM
 To: CF-Talk
 Subject: CFMAIL drives me NUTS!




 I have endless trouble with CFMail in a hosted environment -
 because I can't
 get access to the undelivered mail and if the templates don't
 work all I get
 is   - well nothing.

 Can anyone tell me what's wrong with this code?  It's from a
 "tell a friend
 about this site" form, which is supposed to pass 4 variables to the action
 page (names and emails for each of sender and receiver).  Part of
 the action
 page is two emails - one to the site visitor and one to their friend.

 I don't think the problem is the tag itself, because the syntax of the
 CFMAIL is the same as a working template which DOES send its email.  I
 don't think it's the time line, because that works fine elsewhere on the
 site too.

 [first email]
 cfmail to="#form.senderemail#" from="[EMAIL PROTECTED]"
 subject="Told your friend about this site" server="xxx.xxx.xxx.xxx"
   Apparently while visiting Bluegrass Australia
 (http://bluegrass.org.au)
 you used our form to invite a friend to visit us also.

   Your friend's name and address is:
#form.receivername#  at #form.receiveremail#

   We very much appreciate your support.
   ---

   This confirmation message was sent from:
   http://bluegrass.org.au. Thank you.
   Local Time: #dateformat(austime, "d /  / ")# at
 #timeformat(austime, "h:mm tt")#
   /cfmail
 [end first email]



 [second email]
 !--- Send email to the friend   ---
 cfmail to="#form.receiveremail#" from="[EMAIL PROTECTED]"
 subject="Check out this site I found" server="xxx.xxx.xxx.xxx"

 G'day #form.receivername# ... a message from
 #form.sendername#

 
   Right now I am visiting the site Bluegrass Australia - about
 bluegrass and
 acoustic music around Australia.  It has some great stuff that
 will probably
 interest you too.  What's on around Australia,  details of new
 releases and
 where you can get them, news about the bluegrass world.

   So I suggest you use the URL below and have a look for
 yourself. Email me
 at #form.senderemail# and let me know what you think.

   The site URL is: http://bluegrass.org.au


   This e-mail was sent by #form.sendername#
   IP address:  #Remote_addr#
   Thank you.
   Local Time: #dateformat(austime, "d /  / ")# at
 #timeformat(austime, "h:mm tt")#
 /cfmail
 [end second email]


 Could it be the fact that there are two emails on the one
 template? Is that
 allowed?

 Cheers,
 Mike Kear
 Windsor, NSW, Australia
 AFP WebWorks






 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Can I tell if a browser is 128 bit with CF

2001-03-22 Thread James Milks

Hi all,
Is it possible to determine if a clients browser is 128 or 40 bit with CF?

Thanks
James Milks
Noncubicle Corporation
www.noncubicle.com 
[EMAIL PROTECTED]
(613) 560-9855
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists