Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 18611 - 18640 of 42890   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
18611
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Send Email
Sep 1, 2003
11:03 am
18612
... From: John To: coldfusion-howto@yahoogroups.com Sent: Monday, September 01, 2003 3:16 PM Subject: [coldfusion-howto] Re: request scope <snip> Ideal things...
Elissa Feit
elissafeit
Offline Send Email
Sep 1, 2003
1:02 pm
18613
I'm having a problem where I'm trying to display all the months by the 3-letter abbreviation but instead I'm getting this... DEC / JAN / JAN / JAN / JAN / JAN...
a.c.
ai_ceee
Offline Send Email
Sep 1, 2003
4:11 pm
18614
the problem is that DateFormat is expecting an actual date, It interprets the integer variable "monthlist" as a date. Use Left(MonthAsString(monthlist),3) or ...
George Farnsworth
georgefarnsw...
Offline Send Email
Sep 1, 2003
4:22 pm
18615
Hi, The problem is ColdFusion is expecting a date and you are passing it an integer; hence DateFormat is choking. I am afraid the best you can do in this...
Michael Wilson
mwilsoniqmax
Offline Send Email
Sep 1, 2003
5:59 pm
18616
Does anyone have experiences with "Project Management Tracking System" with ColdFusion or know the example sources? This system will need to handle multiple...
Kang, Daniel
dancf2002
Offline Send Email
Sep 1, 2003
11:38 pm
18617
I am planning to move onto Oracle 9i with ColdFusion. I like to the best version of ColdFusion (5, MX, or 6.1) with Oracle 9i. Please advise. Thank you, ...
Kang, Daniel
dancf2002
Offline Send Email
Sep 2, 2003
12:37 am
18618
Of course, there are exceptions to every rule. But on the norm, the datasource won't change so it's simply a good rule in that case. That way, if you move...
John
wyntermoonwolf
Offline Send Email
Sep 2, 2003
4:32 am
18619
Hi group, I searched the archive on Yahoo and googled around several times and came up dry. I have a form that I would like only to be served up securely, but...
Watts, Patrick (Word ...
Redbeard25
Offline Send Email
Sep 2, 2003
5:10 pm
18620
Your web server should be able to do this. Which one are you running? ... From: Watts, Patrick (Word Ent) [mailto:patrick.watts@...] Sent:...
Roger Dahlstrom
rdahl
Online Now Send Email
Sep 2, 2003
5:11 pm
18621
... What version of CF are you using? I don't have access to an SSL server, but in CFMX 6.1, I get these interesting attributes from a cfdump of CGI: ...
Ben Curtis
wsi_ben
Offline Send Email
Sep 2, 2003
5:51 pm
18622
corrections inline ... when using a cflocation to redirect a page, it doesn't appear to the user that they are loading a page twice.. ... .. ... .. ... that...
Master_Insanity
Offline Send Email
Sep 2, 2003
6:22 pm
18623
Ben and Roger, This snippet did the trick: <cfif cgi.HTTPS IS 'off'> <cflocation url="https://site.com/form.cfm"> </cfif> Nate - my reference to the...
Watts, Patrick (Word ...
Redbeard25
Offline Send Email
Sep 2, 2003
6:29 pm
18624
This works too: <cfset startdate=CreateDate(2003,1,1)> <CFLOOP INDEX="monthList" FROM="1" TO="12"> <CFOUTPUT> <A HREF="calendar.cfm?month=#monthList#"> ...
Watts, Patrick (Word ...
Redbeard25
Offline Send Email
Sep 2, 2003
6:46 pm
18625
This would be even more generic: <cfif cgi.HTTPS IS 'off'> <cflocation url="https://#CGI.SERVER_NAME#:##CGI.SERVER_PORT##CGI.SCRIPT_NAME#"> </cfif>...
James Eberhardt
james_eberhardt
Offline Send Email
Sep 2, 2003
6:59 pm
18626
From: Ben Curtis [mailto:ben@...] ... That worked perfectly, Ben. Thanks. Mr. Kim Siever Website Development Office Faculty of Management ...
Kim Siever
kimsiever
Offline Send Email
Sep 2, 2003
7:01 pm
18627
Better yet: <cfif cgi.HTTPS IS 'off'> <cflocation url=" <https:///#CGI.SERVER_NAME#:##CGI.SERVER_PORT##CGI.SCRIPT_NAME#>...
Schlosser, JoAnn
jojo_super77
Offline Send Email
Sep 2, 2003
7:11 pm
18628
How would the CGI.SCRIPT_NAME EQ ''? There always has to be a filename ending in .CFM that is being executed. James...
James Eberhardt
james_eberhardt
Offline Send Email
Sep 2, 2003
7:52 pm
18629
But are you using the security certificate? regards, ... Marcos Placoná Macromedia Cold Fusion Developer Cel: 9560-3260 ... From: Watts, Patrick (Word Ent) ...
Marcos Placoná
i_netmaster
Offline Send Email
Sep 2, 2003
8:40 pm
18630
not SCRIPT_NAME ---- QUERY_STRING. JoAnn A. Schlosser Senior Consultant Grant Thornton LLP Vienna, Va. Tel: (703) 637-2668 Fax: (703) 637-4084 ... From: James...
Schlosser, JoAnn
jojo_super77
Offline Send Email
Sep 2, 2003
8:42 pm
18631
Although that still doesn't do much for form variables. Hmmm.... must ruminate. JoAnn A. Schlosser Senior Consultant Grant Thornton LLP Vienna, Va. Tel: (703)...
Schlosser, JoAnn
jojo_super77
Offline Send Email
Sep 2, 2003
8:46 pm
18632
Help! I've been staring at this project for waaay to long and now can't figure out why this (simple) thing is giving me an error. All I want to do is find all...
Martin, Hope E (Verid...
martinheimd
Offline Send Email
Sep 2, 2003
10:47 pm
18633
... <CFQUERY DATASOURCE="PAORQA" NAME="getAnswered"> Select * From Questions Where Quest_Active = 1 And Quest_A != 'none' </CFQUERY> Apparently, some SQL wants...
Ben Curtis
wsi_ben
Offline Send Email
Sep 2, 2003
10:55 pm
18634
Apparently "such a platform" is mine. ; - ) Thanks Ben, That worked! Though I could swear I've used one of the others before on this server... course the SAs...
Martin, Hope E (Verid...
martinheimd
Offline Send Email
Sep 2, 2003
11:00 pm
18635
... Someone correct me if I'm wrong, but I was under the impression that a readonly lock was not a lock at all -- it merely causes the code in question to wait...
Ben Curtis
wsi_ben
Offline Send Email
Sep 2, 2003
11:10 pm
18636
Me again. : ) Same application, but now I'm trying to use cfinclude to pull in a txt file that the user will create for each question. This file has only...
Martin, Hope E (Verid...
martinheimd
Offline Send Email
Sep 3, 2003
12:41 am
18637
Hi, can anybody help me? I'm creating 2 tables: 1. user table contain fields : user, rating 2. message posted fields: user, msg I want to display messages in...
naza@...
niknaza
Online Now Send Email
Sep 3, 2003
1:31 am
18638
hey well both of you guys were right... thanks!...
a.c.
ai_ceee
Offline Send Email
Sep 3, 2003
6:18 am
18639
<CFQUERY DATASOURCE="PAORQA" NAME="getAnswered"> Select * From Questions where Quest_A not like '%the_word%'; </cfquery> ... From: Ben Curtis...
Dan Plesse
empiricallys...
Offline Send Email
Sep 3, 2003
6:48 am
18640
I think u better use 6.1 5 and MX are fine too :-) I am currently using coldfusion 5 & oracle 9i and everything is working fine. ... From: Kang, Daniel To:...
Andri
cubortea
Online Now Send Email
Sep 3, 2003
7:07 am
Messages 18611 - 18640 of 42890   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help