Re:help with div's and form fields

2003-11-21 Thread ColdFusion Programmer
Hi Steve, Can you please show me how to implement the first option. I really don't know anything about iframes. I would appreciate it Thanks CFDeveloper You have two options here... One, you can change the second DIV to an IFRAME and pass the variable in the first fields value to the IFRAME

Re:help with div's and form fields

2003-11-21 Thread ColdFusion Programmer
How do I pass the variable in the first fields value to the IFRAME page ? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:help with div's and form fields

2003-11-21 Thread ColdFusion Programmer
on the Test2.cfm. You would need to add it to a FORM though as right now I didn't create a FORM for the text boxes but just placed them on the page. Steve -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: Friday, November 21, 2003 7:49 AM To: CF-Talk Subject

Re:form variables not passed to action page - please help!

2003-11-03 Thread ColdFusion Programmer
I'm assigning the form field values to hidden variables because it is a 4 pages form and I am passing the values from one page to another in hidden variables. I have chceked the code in both the action pages, they both have the same code, I just don't understand what's happenning here, I've turned

Re:form variables not passed to action page - please help!

2003-11-03 Thread ColdFusion Programmer
One thing I forgot to mention in my previous post, I have CFMX developer edition on my local development server, both the action pages display the form variables, it all works. However I've got CFMX Standard edition on my server and it does not display the form variables when the order button is

Re:form variables not passed to action page - please help!

2003-11-03 Thread ColdFusion Programmer
our help Guys No, the server license won't matter. You can save yourself a lot of work by using the preservedata attribute of the cfform tag.Just make fields that are the same name in the next page of the wizard.They'll be automatically populated upon submit. - Original Message - Fro

Re:cfhttp returns nothing

2003-10-27 Thread ColdFusion Programmer
Both the asp and coldfusion file that invokes the asp file are in the same directory under my webroot. In IIS I edited the .asp file properties, clicked on the File Security tab, hit the Edit button under the Annoymous access and authentication control section, checked the Annoymous access tick

Re:Hidden variables and passing data from one page to another

2003-10-23 Thread ColdFusion Programmer
Clarke wrote: To: CF-Talk I am not using any server side language, only _javascript_ and html. Ermm... ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey Hole Road, WELLS. BA5 1AF Tel: +44 (0)1749

Re:Hidden variables and passing data from one page to another

2003-10-23 Thread ColdFusion Programmer
On the next page how do I get the get the value stored in the hidden variable. Can I use form.hidVariable when the method is post? just post the form to the next pageno JS required...basic HTML unless I'm missing your point?? - Original Message - From: ColdFusion Programmer

Re:Hidden variables and passing data from one page to another

2003-10-23 Thread ColdFusion Programmer
Can you post few examples of storing the values in cookies? I would really appreciate your help. You can't get them in JS with method post. Your only options AFAIK are to use the method get or to set them as cookies before posting. -Original Message- From: ColdFusion Programmer [mailto

Re:Hidden variables and passing data from one page to another

2003-10-23 Thread ColdFusion Programmer
are just having them print out a completed order form and snail-mail it or something? Or maybe I'm missing something? -Kevin - Original Message - From: ColdFusion Programmer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 23, 2003 10:40 AM Subject: Re:Hidden

Re:CFHTTP Question!

2003-10-21 Thread ColdFusion Programmer
I took your advise Stephen and copied the contents of the include file into a new file and saved it as a coldfusion file. I am using cfinclude to call this file. There is a if condition in the include file which is in asp. % if session(user.supportuser) = TRUE then % Do Something % end if

Re:CFHTTP Question!

2003-10-21 Thread ColdFusion Programmer
Can somebody please advise me what to do? I took your advise Stephen and copied the contents of the include file into a new file and saved it as a coldfusion file. I am using cfinclude to call this file. There is a if condition in the include file which is in asp. % if

Re:CFHTTP Question!

2003-10-21 Thread ColdFusion Programmer
a session scope with the variables you need (like user.supportuser). Does this help? -Mark -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 21, 2003 9:48 AM To: CF-Talk Subject: Re:CFHTTP Question! Can somebody please advise me what to do

Re:Form and hidden variable question

2003-10-20 Thread ColdFusion Programmer
Makes no difference, the value in the hidden variable is still empty. I tried this is in subme function: document.frm.txtarea1.value = document.frm.outputselection.value; On form submission, I see the textarea briefly populated with the value in the hidden variable but it dissapears when the

Re:Form and hidden variable question

2003-10-20 Thread ColdFusion Programmer
actually Hugo, setting the return to false does do the trick. Sorry about that. In the function I'm returning true and it displays the value in the hidden variable in the textarea. document.frm.txtarea1.value = document.frm.outputselection.value; return true; input NAME=submitbutton TYPE=submit

Re:CFHTTP Question!

2003-10-20 Thread ColdFusion Programmer
When I output the http response headers, this is what gets displayed Output the Response Headers: Date : Mon, 20 Oct 2003 15:20:34 GMT Server : Microsoft-IIS/5.0 Content-Length : 4431 Content-Type : text/html Explanation : Access Denied Connection : close Status_Code : 401 WWW-Authenticate :

Re:CFHTTP Question!

2003-10-20 Thread ColdFusion Programmer
so what are you suggesting? How do I use HTTP authentication mechanism? ColdFusion Programmer wrote: Date : Mon, 20 Oct 2003 15:20:34 GMT Server : Microsoft-IIS/5.0 Content-Length : 4431 Content-Type : text/html Explanation : Access Denied Connection : close Status_Code : 401 WWW

Re:CFHTTP Question!

2003-10-17 Thread ColdFusion Programmer
This is the code I have got on my Coldfusion file CFHTTP url="" METHOD=GET RESOLVEURL=true throwonerror=yes/ cfoutput#CFHTTP.FileContent# /cfoutput I get an error: You are not authorized to view this page You do not have permission to view this directory or page using the credentials you

Re:CFHTTP Question!

2003-10-17 Thread ColdFusion Programmer
When I browse the asp file in the browse, it displays the menu on the browser. This is the url I'm using: http://myProject/site/includes/topmenu/folder2/menu.asp But when I include this url in cfhttp I get You are not authorized to view this page You do not have permission to view this

Re:CFFILE Question

2003-10-15 Thread ColdFusion Programmer
I was hoping somebody could show me how to do this. Thanks If the files are big this will eat memory . Consider using the underlying OS to dfo this sort of thing. use cfexecute to run a batch file for instance, e.g. COPY SupportiSearches*.log destinationfile.log That should do exactly what

Re:CFFILE Question

2003-10-15 Thread ColdFusion Programmer
output. cfexecute name=mybatchfile.bat / Should do the trick. -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 10:34 To: CF-Talk Subject: Re:CFFILE Question I was hoping somebody could show me how to do this. Thanks If the files are big

Re:CFFILE Question

2003-10-15 Thread ColdFusion Programmer
. Craig. -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 10:49 To: CF-Talk Subject: Re:CFFILE Question I've tried doing this and I get an error: cfexecute name=copy D:\CFusionMX\wwwroot\logReport\SupportiSearches*.log destination.log timeout=5

Re:CFFILE Question

2003-10-15 Thread ColdFusion Programmer
wolla! got it to work finally, thanks Craig. Error number 2 = Can't find file. Try using the full path of the batch file. -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 11:05 To: CF-Talk Subject: Re:CFFILE Question Craig, I don't

Re:CFFILE Question

2003-10-15 Thread ColdFusion Programmer
? wolla! got it to work finally, thanks Craig. Error number 2 = Can't find file. Try using the full path of the batch file. -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 11:05 To: CF-Talk Subject: Re:CFFILE Question Craig, I do

Re:CFFILE Question

2003-10-15 Thread ColdFusion Programmer
This shows the batch files cmd output but does not error: cfexecute name=D:\CFusionMX\wwwroot\supportSearches.bat timeout=5/ Is there a way to not display the output? Yes, if you're reading the resultant file straight away, you have to make sure the batch file has finished 1st. (This is

Re:CFFILE Question

2003-10-15 Thread ColdFusion Programmer
Nice one, should have thought about that, many thanks Craig cfsilent ?? -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 12:48 To: CF-Talk Subject: Re:CFFILE Question This shows the batch files cmd output but does not error

Re:SQL Statement help!

2003-10-13 Thread ColdFusion Programmer
web applications architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 11:59 AM To: CF-Talk Subject: Re:SQL Statement help! I've tried this and it errors: cfoutput

Re:Looping through a list, setting each listItem to a column

2003-10-10 Thread ColdFusion Programmer
, listGetAt(fileLine,3)); QuerySetCell(qTmp,Status, listGetAt(fileLine,4)); /cfscript /cfif /cfif /cfloop -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 09 October 2003 10:43 To: CF-Talk Subject: Re:Looping through a list, setting each listItem

Re:SQL Statement help!

2003-10-10 Thread ColdFusion Programmer
Hi Jochem, Can you explain what the where statement in your code does, I don't understand the the EXTRACT(DAYS FROM CURRENT_TIMESTAMP - DateTime) 7 bit Many Thanks Allan Clarke wrote: I have this table that keps a log of the user search activity. For ex, on the site search page of the site,

Re:SQL Statement help!

2003-10-10 Thread ColdFusion Programmer
, SearchString /cfquery I get this error: Query Of Queries syntax error. Encountered WHERE at line 0, column 0. ColdFusion Programmer wrote: Hi Jochem, Can you explain what the where statement in your code does, I don't understand the the EXTRACT(DAYS FROM CURRENT_TIMESTAMP - DateTime) 7 bit Read

Re:SQL Statement help!

2003-10-10 Thread ColdFusion Programmer
at line 0, column 0. ColdFusion Programmer wrote: Hi Jochem, Can you explain what the where statement in your code does, I don't understand the the EXTRACT(DAYS FROM CURRENT_TIMESTAMP - DateTime) 7 bit Read it inside out: CURRENT_TIMESTAMP - the current date and time, 'now' DateTime- your

Re:SQL Statement help!

2003-10-10 Thread ColdFusion Programmer
ideas? ColdFusion Programmer wrote: This is what I'm doing, and I get an error. I'm using SQL Server 2000 No, you are not. Since your dbtype is query, you are using CF. cfquery name=lQuery2 dbtype=query SELECT UserName, SearchString, Count(SearchString) AS Occurences FROM WHERE (#DateFormat

Re:SQL Statement help!

2003-10-10 Thread ColdFusion Programmer
I now get a different error Query Of Queries runtime error. Unsupported type comparison. ColdFusion Programmer wrote: Guys, I'm sorry for so many errors on my part. Jochem, the code your posted throws an error, Error Executing Database Query. Query Of Queries syntax error. Encountered

Re:SQL Statement help!

2003-10-10 Thread ColdFusion Programmer
Programmer [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 9:32 AM To: CF-Talk Subject: Re:SQL Statement help! I now get a different error Query Of Queries runtime error. Unsupported type comparison. ColdFusion Programmer wrote: Guys, I'm sorry for so many errors on my part. Jochem

Re:SQL Statement help!

2003-10-10 Thread ColdFusion Programmer
architect navtrak, inc. www.navtrak.net [EMAIL PROTECTED] 410.548.2337 -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 9:32 AM To: CF-Talk Subject: Re:SQL Statement help! I now get a different error Query Of Queries runtime error

Re:Looping through a list, setting each listItem to a column

2003-10-09 Thread ColdFusion Programmer
of creating the query and takes the as a qualifier into consideration. Replace your script by mine and it should work. -Oorspronkelijk bericht- Van: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Verzonden: wo 8/10/2003 17:32 Aan: CF-Talk CC: Onderwerp: Re:Looping through a list

Re:Looping through a list, setting each listItem to a column

2003-10-09 Thread ColdFusion Programmer
Fax: +32 2 639 68 99 Email: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Web: www.lrt.be -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: donderdag 9 oktober 2003 11:43 To: CF-Talk Subject: Re:Looping through a list, setting each listItem to a column I'm

Re:SQL Help - Correct Post

2003-10-09 Thread ColdFusion Programmer
The log file stores a log of what the user has been searching on the site search. For example if the user searches for the keyword Fusion, the log file stores the information like this: I want to display the top 5 or 10 search keywords that users regularly search for and because this is logged

Re:SQL Help - Correct Post

2003-10-09 Thread ColdFusion Programmer
#lKeywordFreq.SearchString# /TD TD vAlign=bottom width=50% #lKeywordFreq.Freq# /TD /TR /cfoutput Try: select top 10 count(distinct SearchString) AS total, SearchString FROM clients GROUP BY SearchString order by total desc -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
Craig, I tried running your code and get this error, Invalid list index 2. In function ListGetAt(list, index [, delimiters]), the value of index, 2, is not a valid as the first argument (this list has 1 elements). Valid indexes are in the range 1 through the number of elements in the list. Any

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
, listGetAt(lIndex,1)); tmp=QuerySetCell(qTmp,User, listGetAt(lIndex,2)); tmp=QuerySetCell(qTmp,Document, listGetAt(lIndex,3)); tmp=QuerySetCell(qTmp,Status, listGetAt(lIndex,4)); /cfscript /cfloop /cfloop -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 08

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
(qTmp,Document, listGetAt(fileLine,3)); tmp=QuerySetCell(qTmp,Status, listGetAt(fileLine,4)); /cfscript /cfif /cfloop That should ignore any invalid lines too. -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 08 October 2003 11:52 To: CF-Talk Subject

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
and that would take me quite a while to figure out, maybe later if youre still stuck. Good luck. -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 08 October 2003 12:55 To: CF-Talk Subject: Re:Looping through a list, setting each listItem to a column

Re:Help with Regular Expressions

2003-10-08 Thread ColdFusion Programmer
Hi Ben Actually if you take a look at this thread you will get a better idea of what I'm trying to do. I'll appreciate your help http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=27743forumid=4 Thanks The problem is in defining between quotation marks because technically

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
]); QuerySetCell(qTmp,ListGetAt(columns,j),field); if(matchStruct.len[1]) line = RemoveChars(line,1,matchStruct.len[1]); j = j + 1; } else exit = true; } } /cfscript -Oorspronkelijk bericht- Van: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Verzonden: wo 8/10/2003 15:53

Re:Help with Regular Expressions

2003-10-08 Thread ColdFusion Programmer
Thanks Ben, the problem with that script is that because I'm reading a log file with 300 plus rows of data, the execution time suffers. Is there a way to only run your code if somewhere in the string there is a comma inside double quotes? Try this: cfset string = '11/12/2003, bob, this is a

Error when trying to create a datasource from the CFMX Administrator

2003-09-04 Thread ColdFusion Programmer
yes I have recently upgraded to 6.1 from updater 3. I entered a new datasource name, selected Microsoft SQL Server from the driver drop-down, entered the database, server, login, password details and on hitting the submit button I get the error. I did what you asked me to, deleting all the

Error when trying to create a datasource from the CFMX Administrator

2003-09-03 Thread ColdFusion Programmer
SQL Server What kind of database? -- jon mailto:[EMAIL PROTECTED] Wednesday, September 3, 2003, 9:55:40 AM, you wrote: AC I get this error when I try to create a data source AC from the CFMX Administrator. AC Element ISJ2EE is undefined in DS. AC The error occurred in AC

Special Characters - Display Issue - CF 5

2003-08-29 Thread ColdFusion Programmer
the charset ISO-88659-15, but by including this in the meta tag, the output seen on the browser is not right. I am dependent on your help, kindly help. ColdFusion Programmer wrote: I'm not sure mate, probably utf-8 We already established that. But can you change it? Jochem

Special Characters - Display Issue - CF 5

2003-08-29 Thread ColdFusion Programmer
no I can't change the charset in LDAP. I've had a look. ColdFusion Programmer wrote: You suggested in your previous thread that I should be using the charset ISO-88659-15 and not utf-8. I did what you said and added this line of code in my application.cfm file: meta http-equiv=Content

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
I added the meta tag in my application.cfm file and to my surprise it displays the bank name correctly: Crédit France. Is it safe/ok to add this code in my application.cfm file? Will I have any problems with blank pages or content display in the browser? meta http-equiv=Content-Type

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
my client does not want to migrate ot MX just yet. I don't know another way to display french/foreign characters in CF5 other then using the meta tag. If I don't use the meta tag the content screws up or in other words the foreign characters get displayed. But when I view the source on the

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
http://www.webapper.net Webapper Web Application Specialists -Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 9:08 AM To: CF-Talk Subject: Special Characters - Display Issue - CF 5 my client does not want to migrate ot MX just yet. I

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
here is what I want to do. I have the users in an LDAP Server. If I create an organisation with a special character say é, when displayed on the web page I see the funny charactes. I have now understood that adding the meta tag with utf charset in the application.cfm file can lead to unexpected

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
I'm not sure mate, probably utf-8 ColdFusion Programmer wrote: here is what I want to do. I have the users in an LDAP Server. Can you specify the charset the LDAP server uses? Jochem ~| Archives: http

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
Can somebody please tell me how to fix this? I have this strange problem. I'm running coldfusion MX on my Win2k server and IIS 5.0. For some reason when I run a .cfm file on my localhost: http://localhost/test.cfm, all I see is a BLANK Page. When I view the source, I see this: !DOCTYPE HTML

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
yes it is still running, I've even restarted my services a couple of times, it doesn't seem to parse the coldfusion code or anything for that matter. ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription:

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
No, this is not the file I'm trying to execute. I see this code on every coldfusion page. If I run the coldfusion administrator (http://127.0.0.1/cfide/administrator/index.cfm), I see a blank page and this code when I view the source. I see this code for each and every coldfusion file I try to

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
yes I've checked all coldfusion app mappings are there in the IIS Default website. ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe:

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
I was having this problem with CFMX with Updater 3 installed, I updated to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file on a browser. This is what I'm trying to do: .cfm file - cfset myName = TestUser This is a test cfoutput#myName#/cfoutput -- When I run

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
I was having this problem with CFMX with Updater 3 installed, I updated to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file on a browser. This is what I'm trying to do: .cfm file - cfset myName = TestUser This is a test cfoutput#myName#/cfoutput -- When I run

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
I was having this problem with CFMX with Updater 3 installed, I updated to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file on a browser. This is what I'm trying to do: .cfm file - cfset myName = TestUser This is a test cfoutput#myName#/cfoutput -- When I run

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
I was having this problem with CFMX with Updater 3 installed, I updated to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file on a browser. This is what I'm trying to do: .cfm file - cfset myName = TestUser This is a test cfoutput#myName#/cfoutput -- When I run

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
I was having this problem with CFMX with Updater 3 installed, I updated to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file on a browser. This is what I'm trying to do: - cfset myName = TestUser This is a test cfoutput#myName#/cfoutput -- When I run this file on

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
I can't get to the ColdFusion Administrator, I have clearly mentioned in my previous posts, I can't browse coldfusion pages. I just see a blank page. ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription:

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
It wasn't intentional. I just kept getting a javascript error when trying to submit my message, I'm sorry guys ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription:

calculating the date and time.

2003-07-30 Thread ColdFusion Programmer
How do I get the calculate the from time to start at 01:00 am and the to time to end at 00:59 am. Can you please show me how to get the date and time in the format mentioned below In the last 7 days (23 Jul 2003 01:00 - 30 Jul 2003 00:59) I was hoping somebody could help me. I'm trying to

[cftalk] calculating the date and time.

2003-07-30 Thread ColdFusion Programmer
()),0,59, 0) CFSET LastWeek = DateAdd(N,1,DateAdd(D,-7,Today)) /CFIF I haven't tested this so there maybe small errors but something like this?? - Original Message - From: ColdFusion Programmer To: CF-Talk Sent: Wednesday, July 30, 2003 12:24 PM Subject: [cftalk

[cftalk] calculating the date and time.

2003-07-30 Thread ColdFusion Programmer
)) /CFIF - Original Message - From: ColdFusion Programmer To: CF-Talk Sent: Wednesday, July 30, 2003 12:48 PM Subject: [cftalk] calculating the date and time. Spot on Allan, this is what I was trying to do. Can you show me how to calclulate the from-to date time

[cftalk] calculating the date and time.

2003-07-30 Thread ColdFusion Programmer
,-1,Today)) /CFIF - Original Message - From: ColdFusion Programmer To: CF-Talk Sent: Wednesday, July 30, 2003 1:00 PM Subject: [cftalk] calculating the date and time. not quite as I was expecting. Take the current time, its 11:55 am GMT, I want the result

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
Can you please provide more details? Allan Clarke wrote: Does anyone know how to programatically test if the SiteMinder Authentication/Authorization service is running. I'm currently using the cfauthenticate tag to do this but even after stopping the services ColdFusion thinks SiteMinder is

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
Can you please show me how to do implemet this? Regards Allan Allan Clarke wrote: Does anyone know how to programatically test if the SiteMinder Authentication/Authorization service is running. I'm currently using the cfauthenticate tag to do this but even after stopping the services

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
Thanks Jochem for the code, however I can't find the file list.exe or the folder resource kit. I've got W2K Server installed on my pc. Any ideas? ColdFusion Programmer wrote: Can you please provide more details? cfsavecontent name=processList cfexecute name=c:\program files\resource kit

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
executable, #processList#) cfoutput#isRunning#/cfoutput processList outputs nothing. isRunning always returns 0 even when the SiteMinder service is started. Any ideas why this is happenning? Jochem van Dieten wrote: ColdFusion Programmer wrote: Thanks Jochem for the code, however I can't find

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
yes I do get the right output when I run it from the command line. I don't know why I don't see any output when I run the code. ColdFusion Programmer wrote: I installed the support tools from the win2k CD. Passed the correct path to the cfexecute tag. cfsavecontent variable=processList

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
Can you paste the code that works for you (tList.cfm)? ColdFusion Programmer wrote: I installed the support tools from the win2k CD. Passed the correct path to the cfexecute tag. cfsavecontent variable=processList cfexecute name=c:\program files\support tools\tlist.exe timeout=2

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
. Flushing the cache would slow down the performance, but how else can I get the upto the minute status of the service? I would really appreciate your help ColdFusion Programmer wrote: Can you paste the code that works for you (tList.cfm)? precfexecute name=c:\program files\support tools\tlist.exe

How to Flush ColdFusion and Security Server Caches Programatically?

2003-07-21 Thread ColdFusion Programmer
Can somebody please show me how to do this? Hi all, I'm using ColdFusion 5 and Advanced Security. I want to be able to flush the SiteMinder Authorization and Authentication Caches. The way I do it now is by going to the CF Admin - Security Configuration and then click on the Flush All button. I

Coldfusion MX installer problem - Please help

2003-07-02 Thread ColdFusion Programmer
I modified the CFMX_Upgraded key in the registry HKEY_LOCAL_MACHINE/SOFTWARE/Allaire/Install Data/ColdFusion 5.0/CFMX_Upgraded and set the value to no. I can now see the message window giving me the option to co-exist or upgrade. I want to upgrade to MX. After selecting the upgrade option and

Coldfusion MX installer problem - Please help

2003-07-02 Thread ColdFusion Programmer
Win 2000 Server ~| 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

Coldfusion MX installer problem - Please help

2003-07-02 Thread ColdFusion Programmer
If I reboot my box, I'll have to again modify my registry and have a feeling that I will land up in the same situation. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: