Re: Changed internal IP addresses on server - cffile breaks?

2011-07-01 Thread Dan Blickensderfer
Michael, It sounds like you have a WINS Server running on your network that isn't getting updated. The computer name and ip address may be statically assigned in the WINS manager. ~Dan -Original Message- From: Patti, Michael Sent: Friday, July 01, 2011 11:35 AM To: cf-talk Subject:

Re: Changed internal IP addresses on server - cffile breaks?

2011-07-01 Thread Dan Blickensderfer
, 2011 10:47 AM To: cf-talk Subject: Re: Changed internal IP addresses on server - cffile breaks? CF caches DNS, have you restarted CF since ? On Fri, Jul 1, 2011 at 4:44 PM, Dan Blickensderfer d...@blickensderfer.comwrote: Michael, It sounds like you have a WINS Server

Re: Changed internal IP addresses on server - cffile breaks?

2011-07-01 Thread Dan Blickensderfer
Michael, What you are experiencing is correct when it comes to the external dns resolving. The firewall is preforming the translation from your public ip to your internal ip. There may need a change in the firewall to make this work correctly with new ip address. I've seen this exact thing

Re: How to do this with CF and JS?

2011-06-08 Thread Dan Blickensderfer
Rick, Is this how you want to source code to look on the page? script $.sound.play('soundTrack01.mp3[1]'); $.sound.play('soundTrack02.mp3[2]'); $.sound.play('soundTrack03.mp3[3]'); /script Here is the code that I used to render it. cfset myList =

Re: CFQUERY update Firefox wierdness

2011-04-19 Thread Dan Blickensderfer
I checked and it's turned off. This is happening from multiple computers with Firefox. Any other thoughts? -Original Message- From: Matt Quackenbush Sent: Tuesday, April 19, 2011 12:20 AM To: cf-talk Subject: Re: CFQUERY update Firefox wierdness Wild guess: Firebug is turned on

Re: CFQUERY update Firefox wierdness

2011-04-19 Thread Dan Blickensderfer
not referring to a url it reloads the same page. This was driving me crazy. Dan -Original Message- From: Kym Kovan Sent: Tuesday, April 19, 2011 7:23 AM To: cf-talk Subject: Re: CFQUERY update Firefox wierdness On 19/04/2011 8:46 PM, Dan Blickensderfer wrote: I checked and it's turned off

CFQUERY update Firefox wierdness

2011-04-18 Thread Dan Blickensderfer
copied the bit that I need to show. Anybody seen this before? Thanks, Dan Blickensderfer cfquery name=lookupcart datasource=#application.datasource# username=#application.username# password=#application.password# select rec_id from order_items where rec_status = 'T' and session_uuid

Re: Mail Server Software

2010-05-10 Thread Dan Blickensderfer
Dan P, I use hmailserver it has a MySQL database back end and it's free. It's windows only and you can download it from www.hmailserver.com I have some cf apps that I wrote and use that database to make changes. It works quite well. Dan B - Original Message - From: Dan Pacitti

Re: Where do i find CFGRID Code?

2010-04-21 Thread Dan Blickensderfer
Mike, Make sure you have the virtual directory cfide setup on your sub domain website. That virtual directory needs to be pointing to your cfide directory of your server. I've ran into that as well but just not cfgrid. it was all cfide components. Thanks, Dan - Original Message

Re: iframe cfscript getting parent form field values SOLVED

2010-02-21 Thread Dan Blickensderfer
I just wanted to give you an update on how I was able to get this to work. On my iframe page, this is all I had to do to get my javascript variable to assign it to a cf variable. Thanks for those to helped. Dan cfscript getdatefield = (' script language=JavaScript

iframe cfscript getting parent form field values

2010-02-20 Thread Dan Blickensderfer
Hi everyone, I've ran into a problem and do not know if cfscript will allow this. I have a page that has an iframe and a form named eform with a half of dozen fields. I have a javascript function onblur on the last field to call another cf page (page2) through the iframe. I'm trying to get

Re: iframe cfscript getting parent form field values

2010-02-20 Thread Dan Blickensderfer
scripting. You need to write javascript to do this using document.all.form[0] -Original Message- From: Dan Blickensderfer [mailto:d...@blickensderfer.com] Sent: Sunday, 21 February 2010 1:40 PM To: cf-talk Subject: iframe cfscript getting parent form field values Hi everyone

Re: iframe cfscript getting parent form field values

2010-02-20 Thread Dan Blickensderfer
to process and return the entire page again. You have to remember that server and client can only talk in a certain manner, and if I am hearing you right you are needing to understand that before continuing with your development. -Original Message- From: Dan Blickensderfer [mailto:d

Re: Random question

2010-02-10 Thread Dan Blickensderfer
Les, I've use the custom tag a random password generator from adobe exchange. You can generate exactly what you are wanting and more. Dan - Original Message - From: Les Irvin les.cft...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: Wednesday, February 10, 2010 1:50 PM

Re: CFIF Pissing me off

2007-08-21 Thread Dan Blickensderfer
Bruce, It seems a lot of work... I have always used the following for selecting an option. select name=Shift option value=B cfif (GetScheduleInfoRet.Shift) IS Bselected/cfifBreakfast/option option value=L cfif (GetScheduleInfoRet.Shift) IS Lselected/cfifLunch/option /select Thanks, Dan

Re: Daylight Savings Time Change (Slightly OT, but relevant)

2007-03-09 Thread Dan Blickensderfer
You can modify the time zone DST within Microsoft Windows on any version using the time zone editor. You can download it from Microsoft and adjust the settings for your time zone and it will allow your OS adjust automatically. I have tested this on XP, Windows 2000, NT 4 and Win 98 and it

Re: Calendar Application

2005-11-17 Thread Dan Blickensderfer
Andrew, I would also like a copy. Thanks, Dan - Original Message - From: Peterson, Andrew S. [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, November 17, 2005 1:48 PM Subject: RE: Calendar Application Jeff, Long lng ago I incorporated a calendar app

Strange Issue Appearing....

2005-08-02 Thread Dan Blickensderfer
=/; Thanks, Dan Blickensderfer ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm

Re: Output in 2 columns

2004-08-09 Thread Dan Blickensderfer
I use the following for our website. cfset max= round(news.recordcount / 2) cfset row2 = max + 1 table cellpadding=2 cellspacing=0 border=0 td valign=toptable cellpadding=2 cellspacing=0 border=0 cfoutput query=news startrow=1 maxrows=#max# trtdColumn1 Results/td/tr /cfoutput /table /td td

Re: OT How to prevent someone changing my home page

2004-05-29 Thread Dan Blickensderfer
I use Ad Awarehttp://www.ad-aware.comIt's very good. Dan - Original Message - From: Mike Kear To: CF-Talk Sent: Saturday, May 29, 2004 11:42 AM Subject: OT How to prevent someone changing my home page ( Sorry for the Off Topic post, but you're the guys who will know what I'm looking

Re: output a # ?

2003-08-29 Thread Dan Blickensderfer
According to your source code on the last page. It looks like you forgot to add your cfoutputs around your numberformat without it it's trying to pass the string: #numberformat(total, '_.__')# instead of the dollar amount. Your cf code should look something like this.

Re: enabling domain access without www

2003-03-13 Thread Dan Blickensderfer
Clint, In your dns server you should have a A record for your mydomain.com to the ip address. example below. mydomain.comA192.168.0.40 If you want the www to work as well. use below. www CNAMEmydomain.com. If you are housing multiable domains on the same ip

Re: SOT: Serv-U?

2003-01-30 Thread Dan Blickensderfer
We use Serv-U as well.. We have a single ftp server handeling 1000 domains and another server for about 800 personal websites. We've been using it since version 2 and we are currently using version 4. We use CF to administrator both servers without any problems. - Original Message -

CFMail question.... Encoding base64, 7bit

2003-01-17 Thread Dan Blickensderfer
Does anyone know how to change the Encoding format within a cfmail sent message. It's currently sending both base64 and 7bit. I would only like to send 7bit. I have an email generated with a picture attached. Here is what I have in my cfmail tag. cfmail to=#toemail# from=#fromemail#

Re: Grabbing Stock Quotes

2002-11-21 Thread Dan Blickensderfer
Gel, I use CF_StockGrabber, Yahoo just recently changed their address to pull the stock quotes. The correct URL now is: http://finance.yahoo.com/d/quotes.csv?s=#attributes.tickerSymbols#f=snl1d1t 1c1ohgve=.csv modify the stockgrabber.cfm that is located in your custometags folder and look for

Re: Grabbing Stock Quotes

2002-11-21 Thread Dan Blickensderfer
=, TEXTQUALIFIER= I guess I need an updated version or something? -Gel -Original Message- From: Dan Blickensderfer [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 1:25 PM To: CF-Talk Subject: Re: Grabbing Stock Quotes Gel, I use CF_StockGrabber, Yahoo just recently changed

Re: basic question

2002-11-11 Thread Dan Blickensderfer
You need to place an between your variables and remove your single quotes. Like this: a href=test.cfm?category=5orcategory2=5listing page/a Dan - Original Message - From: Tim Laureska [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, November 11, 2002 8:09 PM Subject:

Re: CFFTP help please .. whats wrong here?

2002-01-12 Thread Dan Blickensderfer
Mike, What version of CF Server is installed on server? Thanks, Dan Blickensderfer - Original Message - From: Mike Kear [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, January 12, 2002 8:18 PM Subject: RE: CFFTP help please .. whats wrong here? Thanks, Jim. I did

Re: CFFTP help please .. whats wrong here?

2002-01-12 Thread Dan Blickensderfer
to generate static pages and upload them to their old fashioned html host. Cheers, Mike Kear Windsor, NSW, Australia AFP WebWorks -Original Message- From: Dan Blickensderfer [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 13, 2002 12:38 PM To: CF-Talk Subject: Re: CFFTP help

ms access joins

2001-11-10 Thread Dan Blickensderfer
I'm having a little trouble joining three tables that are from a Microsoft Access Database. I've created bigger sql statements with SQL Server. Can anybody see if I'm missing something. Here is the error that I'm receiving. [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing

FW: Info about the Red Worm Attack

2001-07-19 Thread Dan Blickensderfer
Hello Everyone, I just received this and I thought I would forward it on. Dan Blickensderfer Network Engineer Tusco.Net, Inc. Introduction On Friday July 13th we received packet logs and information from 2 network administrators that were experiencing large amounts of attacks

CF 5.0 Client Registry Environments

2001-07-09 Thread Dan Blickensderfer
registry entries from the server? I tried to purge within 1 day and the entries are still in there. Thanks, Dan Blickensderfer ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

Re: FTP Server

2001-05-24 Thread Dan Blickensderfer
Serv-U FTP http://www.cat-soft.com - Original Message - From: Duane Boudreau [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 2:16 PM Subject: OT: FTP Server All, Can anyone suggest a decent and moderatly priced (~ $250) FTP server that will run as a

Re: Here's A Good One...

2001-04-03 Thread Dan Blickensderfer
Robert, It's a Microsoft Issue... One of their solutions to fix it is.. Turn off the daylight savings until April 8th. After that day it will fix itself. It logarithm is over compensating for the daylight savings only if falls on Sunday and if it's April 1. It will last for one week. It has

Re: One record query output

2001-03-19 Thread Dan Blickensderfer
Michael, You can use the maxrows="1" in the cfquery statement. example: CFQUERY NAME="queryname" DATASOURCE="datasourcename" maxrows="1" select field1,field2 from table /CFQUERY Dan - Original Message - From: "Michael Gribbin" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent:

cfftp changing directory

2001-03-09 Thread Dan Blickensderfer
Hello everyone, Is anyone having an issue with cfftp changedirectory command with cf server ver 4.5.1 R2? I have the same code in place when CF Ver 4.0 was on the server. Since then we upgraded to Ver 4.5.1 R2 Now the code does not change directories. Here is the code that I'm using. cfftp

Re: cfftp changing directory

2001-03-09 Thread Dan Blickensderfer
the connection to the FTP server for every request, even if the CONNECTION attribute is used. Thanks, Dan - Original Message - From: "Dan Blickensderfer" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, March 09, 2001 7:00 PM Subject: cfftp changin

Re: Who wants a CF-SQL Mailing List?

2000-12-21 Thread Dan Blickensderfer
117,937 messages dated from 96' I should delete some. Dan - Original Message - From: "Jon Hall" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December 21, 2000 6:02 PM Subject: Re: Who wants a CF-SQL Mailing List? My cf-talk folder has 13,653 messages. The

Re: Reverse Look up on IP address

2000-12-08 Thread Dan Blickensderfer
Duane, Within Allaire's Tag Gallery there is a tag named nslookup. I use it all the time. It's pretty straight forward. Dan - Original Message - From: "Duane Boudreau" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, December 07, 2000 11:44 PM Subject: Reverse Look up

Re: Suppressing Repeating Groups in a Query

2000-10-27 Thread Dan Blickensderfer
Sam, You could do this with groups example below. Dan cfquery name="getstates" datasource="" select * from tablename order by field1, field2, field3 /cfquery table cfoutput group="field1" query="getstates" trtd#field1#/tdtd#field2#/td/tr cfoutput trtd

Re: Access 2000 Databases with CF4.0

2000-09-26 Thread Dan Blickensderfer
You have to use the latest Microsoft Data Access Components (MDAC) - Original Message - From: "Joshua Miller" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, September 26, 2000 3:23 PM Subject: Access 2000 Databases with CF4.0 This may have been answered here before,

Re: Allaire security problem - anyone know solution?

2000-08-03 Thread Dan Blickensderfer
We are running Service Pack 6a and it happen to us. I did notice that when I tried to do it with an encrypted application.cfm. I just got scrambled code. It's definitely an IIS issue. I would agree on removing the .htr out of the IIS mapping. Dan - Original Message - From:

Re: Seeking Text Rollover

2000-07-11 Thread Dan Blickensderfer
Richard, Here is what I use. head title/title style type="text/css"!-- a:hover { color: #00 } a:link { text-decoration: none } a:visited { text-decoration: none }-- /style /head body bgcolor="white" link="#b2" vlink="#cd5c5c" - Original Message - From: "Dana

Re: Optimizing Win 2000 (IIS) for Warp speed with Cold Fusion.

2000-07-03 Thread Dan Blickensderfer
Mark, Could you post your results on NT 4, IIS, CF. Thanks, Dan - Original Message - From: "Mark W. Breneman" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 03, 2000 11:47 AM Subject: OT: Optimizing Win 2000 (IIS) for Warp speed with Cold Fusion. About 9 months ago I

Re: create a date for table

2000-06-29 Thread Dan Blickensderfer
Ellie, In SQL use the getdate() function. Dan - Original Message - From: "Elaine L" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 29, 2000 1:41 AM Subject: RE: create a date for table Hi, I tried to set up the field in Microsoft SQL 7 the datatype as dateime (or

Off The Subject... SQL Question

2000-06-08 Thread Dan Blickensderfer
Sorry for this question that doesn't pertain to the CF Talk List. I have a NT4.0 Box w/SQL 6.5 Server with Dual PII 650's / 512MB Ram. 256MB set aside for SQL. I have a table in one of my Datasources that has apprx 5 million records. I'm trying to think of the best way to purge the records and

Off The Subject... SQL Question

2000-06-08 Thread Dan Blickensderfer
Sorry for this question that doesn't pertain to the CF Talk List. I have a NT4.0 Box w/SQL 6.5 Server with Dual PII 650's / 512MB Ram. 256MB set aside for SQL. I have a table in one of my Datasources that has apprx 5 million records. I'm trying to think of the best way to purge the records and

Re: help converting varchar to number

2000-05-15 Thread Dan Blickensderfer
Art, You could create a new field "Comb_Date" timedate() data type, and write a utility to take the three separate fields and combined them into one and insert it into the Comb_Date field. Dan -Original Message- From: Art Broussard [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL

Open Sessions

2000-05-02 Thread Dan Blickensderfer
I have a users login screen for a security web site. I have sessionmanagement enabled. I was wondering, Is there a way to find active sessions on a user? Thanks, Dan -- Archives: http://www.eGroups.com/list/cf-talk To

Re: outlook question

2000-04-03 Thread Dan Blickensderfer
I currently running 4.72 Outlook Express. I have two folders on CF-Archive (69900 messages) and CF-Talk (6000 messages). I've had not problems adding more to the Archive Folder after my CF-Talk folder reaches 1 messages. I have articles dated back to Sept. of 1996. Dan -Original

Re: Programmer's font

2000-04-03 Thread Dan Blickensderfer
I would like to request a copy also. Thanks, Dan At 08:51 AM 4/3/00 -0400, you wrote: I use a font called Hells Programmer. It has exactly what you want. Let me know if you want it and I'll send it to you. --- ---