Re: SQL IN and cfqueryparam lists

2006-03-08 Thread Jim McAtee
So you're saying that it's an inappropriate use of the null parameter. Wasn't that part of the original question? - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, March 08, 2006 4:26 PM Subject: Re: SQL IN and

Conditional HTML headers?

2006-03-03 Thread Jim McAtee
Is there any way (in CF5) that I can conditionally generate an HTML header if it is not already defined by a CFHTMLHEAD tag? Is there a particular variable scope that contains this information that I might examine while generating the page? I'd like to add a default page title tag, plus

OT: IIS URL rewriter?

2006-03-01 Thread Jim McAtee
I've noticed a lot of other web sites these days redirecting http://domain.com to http://www.domain.com. And I've read that serving a web site under both host names may invoke a duplicate content penalty in some search engines. We'd also like to use a URL rewriter to force certain areas or

Re: OT: IIS URL rewriter?

2006-03-01 Thread Jim McAtee
the SSL issue. IIS has the ability to require SSL (although not real good capabilities to automatically redirect to https, if I remember correctly). Does a URL rewriter generally give you that kind of control? On 3/1/06, Jim McAtee [EMAIL PROTECTED] wrote: I've noticed a lot of other web sites

Re: Debit vs. Credit Card

2006-02-28 Thread Jim McAtee
- Original Message - From: Michael Traher [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, February 28, 2006 3:07 AM Subject: Re: Debit vs. Credit Card The first 4 digits of the card determines the type of card it is and who issued it. Thanks, but by 'type' do

Debit vs. Credit Card

2006-02-27 Thread Jim McAtee
Two questions, probably unrelated: To an online merchant, is there any way to tell a debit card from a credit card of the same type (VISA, MasterCard, etc.) just from the card number? I've dealt with some companies (Verizon comes to mind) that run some kind of preauthorization against a credit

Re: Developing for 800 x 600 on monitor at higher resolution

2006-02-24 Thread Jim McAtee
Who views pages with the brower full screen when using a monitor with 1280x1024 resolution? Other than my gramma, that is... I'd either go to a liquid layout, or keep on doing what you've been doing. If it looks like hell then users will most likely just resize the browser's viewport to

Re: A very specific message board/forum question...

2006-02-21 Thread Jim McAtee
Get (and pay for) vBulletin - another php app, but heads and shoulders above phpBB. I'm sure there must be data migration scripts from php. Use the vBulletin database as your site's user base. You can authenticate user logins from CF against the vBulletin user database and you can take

Re: missing posts???

2006-01-19 Thread Jim McAtee
A lot of spam engines will simply turn the message away at the door (so to speak) by cutting off the connection when they see something they don't like. Usually this is something foobar in the headers. Doesn't HOF do a lot of manipulation of messages with its email server? Maybe something's

Re: Since were on the topic of Credit Cards... A best practices question...

2006-01-13 Thread Jim McAtee
- Original Message - From: Stacy Young [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, January 13, 2006 1:58 PM Subject: RE: Since were on the topic of Credit Cards... A best practices question... I'm not sure about our competitors but generally it is possible to

Re: Since were on the topic of Credit Cards... A best practices question...

2006-01-13 Thread Jim McAtee
You're scenario is unique in that you wouldn't need to store the CC number for future purchases through the reservation system. Amazon and other online retailers who store CC numbers do so to facilitate easy checkouts on future purchases. You could save the CC number offline and then have

Re: CF Debugging CSS Layout

2006-01-13 Thread Jim McAtee
Who is the they that you're waiting for? Microsoft just dropped Mac IE, so that situation will never change. - Original Message - From: Will Tomlinson [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, January 13, 2006 6:49 PM Subject: Re: CF Debugging CSS Layout

AuthorizeNet Recurring Payments?

2006-01-12 Thread Jim McAtee
The CC thread reminded me of this... We've been using AuthorizeNet for many years and recently (well, in the last couple of years, anyway) they began offering a means of doing recurring payments. It looks like these payment have to be set up manually through forms on the AN web site, but I

Re: AuthorizeNet Recurring Payments?

2006-01-12 Thread Jim McAtee
no API for that. -- Josh Nathanson - Original Message - From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, January 12, 2006 5:20 PM Subject: AuthorizeNet Recurring Payments? The CC thread reminded me of this... We've been using AuthorizeNet

Re: AuthorizeNet Recurring Payments?

2006-01-12 Thread Jim McAtee
looked into that feature personally, and I think you still have to do it through the AN website, there's no API for that. -- Josh Nathanson - Original Message - From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, January 12, 2006 5:20 PM

Re: eGovernment and Wiki's --- anyone making Wiki's with CF?

2006-01-11 Thread Jim McAtee
- Original Message - From: Rick Faircloth [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, January 11, 2006 10:04 AM Subject: eGovernment and Wiki's --- anyone making Wiki's with CF? E-government researchers have suggested that collaborative Wiki software may

Re: eGovernment and Wiki's --- anyone making Wiki's with CF?

2006-01-11 Thread Jim McAtee
, the reliability of the information... -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 11, 2006 5:47 PM To: CF-Talk Subject: Re: eGovernment and Wiki's --- anyone making Wiki's with CF? - Original Message - From: Rick Faircloth [EMAIL

IIf() - Mix literal with variable evaluation

2006-01-09 Thread Jim McAtee
I always run into this, and I've probably come across a solution, but forgotten it. In an IIf() I can easily return the value of a varible by surrounding it in quotes, or return a literal by using DE(), but how to use both? What would be the correct syntax to use in the first argument to

Re: Stats Program

2005-12-13 Thread Jim McAtee
I've had so much trouble with LiveStats 5 6 that I'd never again consider another DeepMetrix product or service. With LiveStats 5 it was constant database (proprietary) corruption, forcing me to reinstall and reimport, ad nauseam. With LiveStats 6 it just decides not to import logs for

Re: Stats Program

2005-12-12 Thread Jim McAtee
How well does that work? I would think that for moderately high traffic sites with detailed logs that you'd be pushing a lot of data to their servers. Or is the data first compressed? - Original Message - From: Kristopher Pilles [EMAIL PROTECTED] To: CF-Talk

Regex Help Needed

2005-12-07 Thread Jim McAtee
CF5. In the following I keep getting a bad backreference error. I thought the nested expressions in parens should give me \1 = entire matching string, then \2 = first submatch, \3 = 2nd submatch, etc. I'm taking a string containing concatenated three-character weekday abbreviations and

Re: Regex Help Needed

2005-12-07 Thread Jim McAtee
Street New York, NY 10011 212.691.1134 212.691.3477 fax www.nylontechnology.com Vote for Pedro -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 07, 2005 1:46 PM To: CF-Talk Subject: Regex Help Needed CF5. In the following I keep getting

Re: [QUARRANTINE] Regex Help Needed

2005-12-07 Thread Jim McAtee
- Original Message - From: Ben Doom [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, December 07, 2005 1:05 PM Subject: Re: [QUARRANTINE] Regex Help Needed Well, you don't really need the outside parens, so you could just ditch those. I thought that might be

Re: Custom Tags Folder

2005-12-07 Thread Jim McAtee
You could change your cf_[tagname] style calls to CFMODULE calls, in which case you can specify a (absolute) tag path based on a CD mapping. Say you map /tags_v3/ - D:\MyApplication\v3\tags\ In the new version of the app change cf_myCustomTag attribute=... to cfmodule

Run another CF template without waiting for return

2005-11-23 Thread Jim McAtee
How can I run (call) another CF template without waiting for the return of that template? The other template resides on the same server, same directory as the caller. Can't cfinclude it or call it as cfml tag. Can I use cfhttp somehow?

View raw HTTP/XML request?

2005-11-15 Thread Jim McAtee
Is there some way for a CF template to see a raw HTTP header (CF5) in a GET or POST request? I'm trying to troubleshoot an XML-RPC call and would like to see exactly what the incoming request looks like. ~| Discover CFTicket

Re: Moving directories via CF code

2005-10-19 Thread Jim McAtee
I think cfdirectory action=rename may be able to move a directory. - Original Message - From: Saturday (Stuart Kidd) [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, October 19, 2005 5:13 PM Subject: Moving directories via CF code Hi guys, Does anyone know

OT: Disabling Flash Links

2005-10-10 Thread Jim McAtee
We run our own ad server, written in CF. Customers often send us Flash banner ads with embedded links in them. This keeps us from being able to track click-throughs like we normally do with standard image banners. Is there any way to place a Flash movie on a web page and replace or disable

Re: Disabling Flash Links

2005-10-10 Thread Jim McAtee
To tell the truth, it's more for the advertisers' benefit than our own. They give us Flash ads with hard-coded links and then wonder why we can't track click-throughs. It would be nice to have such a requirement, and I've tried several times to get ads either with no links or else using the

Re: OT: Disabling Flash Links

2005-10-10 Thread Jim McAtee
- Original Message - From: John Dowdell [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, October 10, 2005 6:22 PM Subject: Re: OT: Disabling Flash Links Jim McAtee wrote: Is there any way to place a Flash movie on a web page and replace or disable all embedded

Query Help

2005-09-05 Thread Jim McAtee
I have a number of real estate properties, each associated with one or more city. If I select by specifying a city then I get a list of unique properties. But if I do a broader select, then I get duplicates of the property record when a record is assocuated with two or more cities. How do I

Re: Query Help

2005-09-05 Thread Jim McAtee
, September 05, 2005 4:50 PM Subject: RE: Query Help SELECT p.propertyid, p.name, min(c.name) AS city FROM property p INNER JOIN property_city pc ON pc.propertyid = p.propertyid GROUP BY p.propertyid, p.name -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: Tuesday, 6

Re: OT: I love CSS :-)

2005-08-24 Thread Jim McAtee
Use CF to generate your CSS. - Original Message - From: Pete Ruckelshaus [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, August 24, 2005 10:47 AM Subject: Re: OT: I love CSS :-) Welcome to 1997? Css does indeed rule, and I use it exclusively for

Re: 15 minute rule

2005-08-03 Thread Jim McAtee
We have one called the three times rule. A software or web site enhancement has to be requested a _minimum_ of three times before any actual work is begun. In practice it goes a little like this: The first time, you can just nod your head and not really listen. It could be a job that takes 5

OT: Data driven local maps

2005-08-01 Thread Jim McAtee
We're looking for some type of mapping software that could plot locations on local street maps. Things like restaurants in a city neighborhood, or lodging properties in a ski resort. The maps could be Flash (with mouseovers giving additional location detail, like business name, address and

CFCONTENT Bug?

2005-07-22 Thread Jim McAtee
I'm running CF5 on Win2k Server with IIS5. We're consolidating a number of web sites into a single site. I have IIS' 404 error handler for the old web sites pointing at a CF page. The CF page does some processing and redirects the browser to a page on the new site by using HTTP headers. I

HomeSite+ and Perl Files

2005-07-14 Thread Jim McAtee
When I attempt to open a Perl file (with .pl or .pm extension) in HomeSite+ I first get a dialog box stating that the file isn't a recognized text document. After I tell HomeSite to open it any way, the color coding is correct. In the File Settings, Extension Manager I have these extensions

Re: 5th Most Trafficked Site Switches to BlueDragon

2005-06-28 Thread Jim McAtee
Neither have I. Looks like a lonely hearts club for the not-so-hip. - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, June 28, 2005 9:32 AM Subject: Re: 5th Most Trafficked Site Switches to BlueDragon Wowmyspace.com

CF5 Regex Backreferences

2005-06-27 Thread Jim McAtee
In CF5 are backreferences ($1, $2, etc.) available for use in REReplace(), or do you have to do an REFind() and then use the array returned if returnsubexpressions is set to TRUE? ~| Logware (www.logware.us): a new and

Re: Registrar that does DNS management?

2005-06-21 Thread Jim McAtee
eNom includes DNS with registrations. Find an inexpensive reseller (such as namecheap.com) and they'll provide a web based DNS management interface. Enom's DNS is top notch, with servers around the US and one in the UK. C:\dig enom.com ns ; DiG 9.2.3 enom.com ns ;; global options:

Re: UNC vs Mapped Drive

2005-06-13 Thread Jim McAtee
For file zipping/archiving I don't think you'd want to copy files to the local computer first. It shouldn't make a difference in terms of bandwidth and just adds another step to the process. We use UNC paths - much easier than dealing with drive mappings and troubleshooting whether or not

Re: CF vs LAMP

2005-05-31 Thread Jim McAtee
There's a much larger developer base for LAMP. I'd consider that a factor in selecting the environment - probably even in selecting the developer if a developer insists on using a particular environment. If I were the customer I'd try to do my best to get a feel for the environment that the

Re: Short URL / URL redirection

2005-05-19 Thread Jim McAtee
It's easily done, but I'm not sure why using application.cfm is necessary. Why not do both the db lookup and server side redirect in one CF file? - Original Message - From: Robert Munn [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, May 19, 2005 5:02 PM Subject:

Re: Short URL / URL redirection

2005-05-19 Thread Jim McAtee
I know a LOT of people are very skeptical about clicking on tinyurls and similarly obvious redirection URLs. They can be used to shorten a URL for convenience, but can also be abused and send unsuspecting users to web pages that they'd rather not visit. This probably isn't a problem if both

Re: Php MySQL Wiki?

2005-05-17 Thread Jim McAtee
Thanks, Damien. I just need something simple. Needs to support the standard group editing thing, plus the ability to upload images such as screen shots as well as attachments like spreadsheets, pdfs and other files. Did a bit more research yesterday. coWiki: In development, but looks really

Re: Shared CF Host security

2005-05-17 Thread Jim McAtee
So what exactly is the security issue? Username/password set in the datasource? Full access to the file system? - Original Message - From: James Holmes [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, May 17, 2005 10:29 PM Subject: RE: Shared CF Host security

OT: Php MySQL Wiki?

2005-05-16 Thread Jim McAtee
I'm looking for recommendations for a well written, easy to use wiki application. Must be written in php and use MySQL. From what I can tell the ColdFusion pickings are pretty slim in this area and most of the third-party web apps we've implemented in recent years are written in php anyway.

ColdFusion WHOIS Proxy?

2005-05-03 Thread Jim McAtee
Has anyone done a WHOIS proxy in ColdFusion, similar to the one at GeekTools.com? http://www.geektools.com/whois.php ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Re: ColdFusion WHOIS Proxy?

2005-05-03 Thread Jim McAtee
Thanks, Howie. I just downloaded it and took a look at the documentation. What is the server attribute for? Ideally, I'd like a tag that will recursively figure out which registry to query, which is what GeekTools proxy does. - Original Message - From: Howie Hamlin [EMAIL

Re: ColdFusion WHOIS Proxy?

2005-05-03 Thread Jim McAtee
the the server that should be queried based on the TLD (the default is rs.internic.net. There is a list of servers per TLD here: http://www.micronicos.com/whatsnew/whois-servers-list.html HTH, Howie --- On Tuesday, May 03, 2005 5:15 PM, Jim McAtee scribed: --- Thanks, Howie. I just

Re: ColdFusion WHOIS Proxy?

2005-05-03 Thread Jim McAtee
: ColdFusion WHOIS Proxy? One point, most servers will have a query threshold which if you exceed (by continually making whois requests), you will find yourself banned. On 5/4/05, Jim McAtee [EMAIL PROTECTED] wrote: Who do you query to get the registrar of a .com domain or other domain

Dealing with unworkable query column names

2005-05-02 Thread Jim McAtee
I'm trying to query a MySQL 3.23 database to get table names that match a naming pattern. Unfortunately, there doesn't seem to be any way to alias the column name returned, plus the name contains both a space and the percent sign used in my original SQL statement. Also, the syntax of SHOW

Re: Dealing with unworkable query column names

2005-05-02 Thread Jim McAtee
- Original Message - From: S. Isaac Dealey [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, May 02, 2005 1:00 PM Subject: Re: Dealing with unworkable query column names Ouch... I'm glad I don't have to deal with that schema... But you don't want to use evaluate

CFSCHEDULE ability to log in

2005-05-02 Thread Jim McAtee
I need to schedule a CF template that is on an IIS-served web site protected by an NTFS ACL. Login requires a Windows domain username password. The web site in question is on the same server where the CF scheduled task will run. Can CFSCHEDULE login to this site properly using the username

OT: Search Engine Spiders - user-agents

2005-04-27 Thread Jim McAtee
Does anyone know where I could find a current list of user_agent strings used by the bigger search engine spiders? ~| Find out how CFTicket can increase your company's customer support efficiency by 100%

Re: Programmatically figuring out path to CF installation dir

2005-04-27 Thread Jim McAtee
The path is stored in the registry. On our CF5 servers it's at HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\RootDirectory Should be just as easy to find on later versions. - Original Message - From: Andrew Hewitt [EMAIL PROTECTED] To: CF-Talk

Re: Using CF to connect to Windows fax

2005-04-27 Thread Jim McAtee
Does Windows fax service offer an SMTP gateway? If not, it might be worth installing a decent third party fax server such as GFI Faxmaker (about $400) that does. With an SMTP gateway you can just use CFMail to send an HTML formatted message to the email address of the gateway. -

Re: Multiple submitt + variable

2005-04-17 Thread Jim McAtee
Try this. The trick is that when you get to your action page you loop through the form fields looking for one with a name beginning with ActivateMe_. When you find it, then you peel the user id value off of the field name. I don't use fusebox, so I have no idea how consistent this is with

Conditional CFInclude

2005-04-14 Thread Jim McAtee
In the following does CF include only one page on the fly, or does it bring in both pages, but execute the code in only one? cfif somecondition cfinclude template=somepage.cfm cfelse cfinclude template=someother.cfm /cfif

Regex help

2005-04-12 Thread Jim McAtee
(CF5 on IIS, Win2k Server) I have a CF template set up as the IIS 404 error handler on a web site. When IIS detects a 404 error it calls the CF page and passes the original request within the CGI variable cgi.query_string in the following form: 404;http://www.mydomain.com/missingpage.htm or

Re: Question on randomizing multiple times on the same page

2005-03-31 Thread Jim McAtee
You can reseed the random number generator with the Randomize() function, but that may not be your problem. CFSET random_number=RandRange(1, 10) CFOUTPUT #random_number# #random_number# #random_number# /CFOUTPUT Here you set a single variable to a random value, then you output it on the page

Re: drop down dilemma

2005-03-30 Thread Jim McAtee
Would this work for you? form action=faq_list2.cfm method=post name=dropdown select name=category onchange=this.form.submit(); option value=Select/option cfoutput query=getlistoftopics option value=#categorynum#,#categoryname##categoryname# /cfoutput /select /form Usually

Re: Alternating Row Colour - Here's What Finally Worked

2005-03-30 Thread Jim McAtee
- Original Message - From: Les Mizzell [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, March 30, 2005 2:49 PM Subject: Re: Alternating Row Colour - Here's What Finally Worked This is what I finally went with (watch the wrap): !--- Default the previous day to

Re: Is this campsite available

2005-03-29 Thread Jim McAtee
This is the same scenario as a concert or sports ticketing system where you purchase reserved seats. In most of these systems they reserve the ticket as soon as you indicate you wish to buy it. If you don't complete the transaction then it becomes available once again after X minutes -

Read a scheduled task's settings?

2005-03-28 Thread Jim McAtee
CF5/IIS5 Is there an easy way to read the current settings of a scheduled task? I have a scheduled task that I suspend and unsuspend by changing its start date to a date in the future or in the past. But I have no way of telling what its current state is. cfregistry?

Re: Is BlueDragon.NET the greatest thing since sliced bread?

2005-03-28 Thread Jim McAtee
Is blatant advertising permitted on this list? (hint: you know the answer) - Original Message - From: Vince Bonfanti [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, March 28, 2005 1:36 PM Subject: Is BlueDragon.NET the greatest thing since sliced bread? That's

Re: Alternating Row Colour - Sorta

2005-03-28 Thread Jim McAtee
Here's one way. cfset olddate = 1/1/1950 cfset bgcolor = 0 cfloop query=myquery cfif myquery.eventdate neq olddate cfset olddate = myquery.eventdate cfset bgcolor = 1 - bgcolor /cfif tr style=background-color:#IIf(bgcolor, DE('white'), DE('gray'))# td.../td td.../td /tr

Whitespace Woes

2005-03-22 Thread Jim McAtee
CF5/IIS5 I have a CFML tag constructed to produce as little white space as possible - or so I thought. Basically, as shown bellow. Much more complex, including many queries, but the key is that only one cfoutput block gets executed between the cfsetting tags. The whole tag should produce

Re: Whitespace Woes

2005-03-22 Thread Jim McAtee
application.cfm files? -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 4:10 PM To: CF-Talk Subject: Whitespace Woes CF5/IIS5 I have a CFML tag constructed to produce as little white space as possible - or so I thought. Basically

Re: Whitespace Woes

2005-03-22 Thread Jim McAtee
guarenteed to work. cheers, barneyb On Tue, 22 Mar 2005 14:09:54 -0700, Jim McAtee [EMAIL PROTECTED] wrote: CF5/IIS5 I have a CFML tag constructed to produce as little white space as possible - or so I thought. Basically, as shown bellow. Much more complex, including many queries, but the key

Re: Whitespace Woes

2005-03-22 Thread Jim McAtee
=.../cfoutput /cfif Can I capture the output of that called tag and place it into the tagout string variable? - Original Message - From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, March 22, 2005 2:25 PM Subject: Re: Whitespace Woes I think that's

Editing HomeSite language schemes

2005-03-21 Thread Jim McAtee
How do you modify the language schemes used by the HomeSite editor for color coding? I'm using an older version of HomeSite+, v5.2, and lately find myself doing a bit of scripting in VBScript. There are some problems with the scheme for this file type that I'd like to fix - the way it treats

Phone dialer via TAPI?

2005-03-18 Thread Jim McAtee
I'd like to implement a phone dialer from within a CF application. FWIW, our office phone system is a Panasonic KX-TD1232. Let's say I had a TAPI application running on each user's computer that is capable of dialing a number from that user's phone extension. Can a web application

Re: SQL licensing question

2005-03-17 Thread Jim McAtee
Another thing to consider: I don't know whether this applies to your situation at all, but if you resell services on the server, then you must use service provider licensing (SPLA). An example would be offering MS SQL to web hosting customers in a shared environment. Another would be

Get Disk Space from CF?

2005-03-17 Thread Jim McAtee
Does anyone know how I can retrieve the amount of disk space remaining in a disk volume on the server on which CF is running? CF5, IIS5, Windows 2000 Server Standard. ~| Logware (www.logware.us): a new and convenient

Re: Get Disk Space from CF?

2005-03-17 Thread Jim McAtee
neurons today. http://cflib.org/udf.cfm?ID=105 On Fri, 18 Mar 2005 11:26:04 +1000, Jon Austin [EMAIL PROTECTED] wrote: Here is a tidy little UDF for you. On Thu, 17 Mar 2005 18:05:25 -0700, Jim McAtee [EMAIL PROTECTED] wrote: Does anyone know how I can retrieve the amount of disk space

Re: Asynchronous logging

2005-03-16 Thread Jim McAtee
Many of the pages on our sites require up to 30 sql select queries to generate the various bits and pieces, including the queries done by our in-house ad server. We do internal page view logging of data such as date, site section, and page, plus the logging of ad impressions. Most of these

Re: E-commerce - Make them register or don't make them register

2005-03-14 Thread Jim McAtee
For a small site without the potential for a lot of repeat sales, I say you don't make them register. For someone like an Amazon there's a lot of advantage to _Amazon_ if the user registers - it makes repeat shopping easier. For the small e-commerce site, what real advantage is there to the

Re: URL masking and application.cfc

2005-03-14 Thread Jim McAtee
- Original Message - From: Michael Dinowitz [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, March 14, 2005 10:17 AM Subject: URL masking and application.cfc I've been thinking of a new method of presenting dynamic content, specifically the list archives. At the

Parsing XML in CF5

2005-03-11 Thread Jim McAtee
I have a task where I'll need to parse incoming XML (SOAP) documents in CF5. I'll probably want to create structs containing the data to then be placed into database tables. What tools do I have at my disposal in CF5 running on Windows 2000 Server Standard and IIS5? If nothing is available

Re: cf-community and something pretty damn funny!

2005-03-03 Thread Jim McAtee
Wow. That gets my vote for weakest security argument of 2005. That said, if the entire HoF membership list, passwords and all, were compromised, it isn't very likely anyone would notice. What's the worst someone could do with your login - subscribe you to cf-community? The thing that really

Re: Homesite 5.5 vs. Dual Monitors

2005-03-01 Thread Jim McAtee
Is there any way to get HomeSite to permit the running of two instances of the program at the same time? What if you installed it into two different directories? - Original Message - From: Justin Hansen [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, March 01,

Re: How to set virtual sites for localhost viewing?

2005-02-28 Thread Jim McAtee
Go to the configuration in IIS for the default website and remove any identies that have blank host header names. This way, no web site will be displayed by IIS for a bare IP address or for host names that you've pointed at the IP address without having yet set up a virtual web site. You'll

Re: mySQL to PostGreSQL on Windows (was Pro/Con Moving from MSSQL to MySQL)

2005-02-24 Thread Jim McAtee
- Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, February 24, 2005 12:39 PM Subject: Re: mySQL to PostGreSQL on Windows (was Pro/Con Moving from MSSQL to MySQL) Matt Robertson wrote: A week or so ago I peeked at the

Re: Sloppy - Yahoo! Slurp throwing CFerrors

2005-02-23 Thread Jim McAtee
It strikes me that you shouldn't be allowing those munged or extraneous URL variable values to cause CF to throw errors. For example, I'd never use something like the following cfparam name=url.detailedview default=no type=boolean Instead, I'd use cfparam name=url.showdetails default=no cfif

Re: How to set virtual sites for localhost viewing?

2005-02-23 Thread Jim McAtee
We do this all the time by setting up host names in DNS under our own domain name. For example nicksbakery.ourdomain.com bobstire.ourdomain.com If you know how to set up the virtual web sites in IIS using host headers, then what you may be missing is the need to configure the DNS. We manage

Re: How to set virtual sites for localhost viewing?

2005-02-23 Thread Jim McAtee
There can be a big difference between using a dedicated site and trying to accomplish the same thing by simulating a site within a subdirectory. For instance, you can't easily use references like img src=/images/abc.gif. I doubt you'll be managing DNS constantly, but it depends on how often

Re: (Admin) New feature question

2005-02-20 Thread Jim McAtee
- Original Message - From: Michael Dinowitz [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Sunday, February 20, 2005 11:09 AM Subject: (Admin) New feature question I'm adding in a new feature and wanted to hear what people thought about it and what should be

Re: Quick IIS 6 Question with regards to SSI...

2005-02-18 Thread Jim McAtee
If the page on which the SSI directive is included has an extension of ..html then that extension would have to be mapped to the SSI engine ssinc.dll. Look under Application settings. You'll probably see .stm and a couple other extensions mapped to this dll. If I'm not mistaken, the

Re: Alternatives to Windows SMTP service

2005-02-16 Thread Jim McAtee
If your needs are that simple (for instance, you don't do a lot of mass mailings) then why can't you use the Windows SMTP server? - Original Message - From: Eric Creese [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, February 16, 2005 11:41 AM Subject: RE:

Re: Simple Banner Ad System

2005-02-15 Thread Jim McAtee
I recently wrote a banner ad server that serves up to four, sometimes five ads per page. I can't really say how well it will scale when our page views approach a million per day, but I don't think there's much of a performance hit for recording impressions. I keep daily performance records

CFLOCATION page execution

2005-02-14 Thread Jim McAtee
I'd just to verify that I understand how CFLOCATION works (after using the tag for six+ years :). The help says: Stops page execution and opens a ColdFusion page or HTML file. This means that when a CFLOCATION tag is encountered by CF that CF returns the necessary HTTP headers to the web

CFQUERYPARAM data checking

2005-02-14 Thread Jim McAtee
When a cfqueryparam tag is executed, does CF do any type of bounds checking on numeric values? (CF 5) For instance, if I'm inserting a longint into a table, with the following code would CF throw an error if the value of the id were greater than some integer value? cfqueryparam

Re: CFQUERYPARAM data checking

2005-02-14 Thread Jim McAtee
pretty sure it just does type checking, not bound checking. The exception would be the maxlength attribute for string lengths. cheers, barneyb On Mon, 14 Feb 2005 16:57:17 -0700, Jim McAtee [EMAIL PROTECTED] wrote: When a cfqueryparam tag is executed, does CF do any type of bounds checking

Re: CFQUERYPARAM data checking

2005-02-14 Thread Jim McAtee
CF differentiate between the different drivers, or does it treat all of them the same? - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, February 14, 2005 5:44 PM Subject: Re: CFQUERYPARAM data checking Jim McAtee wrote

Re: Moving from CF 5 to MX6 or MX7

2005-02-11 Thread Jim McAtee
- Original Message - From: Robert Munn [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, February 11, 2005 1:53 PM Subject: Re: Moving from CF 5 to MX6 or MX7 I had one developer who was fond of using a variable called url. That worked in CF5 but in MX it is

Re: Firewall question

2005-02-09 Thread Jim McAtee
- Original Message - From: Andy Ousterhout [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, February 09, 2005 12:52 PM Subject: RE: Firewall question I think the most secure arrangement is to: 1. Replace router with hardware Firewall Solution (adding VPN at

Re: Firewall question

2005-02-09 Thread Jim McAtee
No, I wouldn't route through the Windows server. The only times I'd consider using Windows as a router would be on a network where for some reason it's your only routing option, or if you wanted to run Microsoft's ISA Server as your firewall. I've never used it, but ISA can do some things

Re: Firewall question

2005-02-09 Thread Jim McAtee
ZyWALLs here as well. I have a ZyWALL 2 on my home network and keep a VPN nailed up into our office LAN where we have a ZyWALL 10II for about a dozen users. Then we have a ZyWALL 35 in front of our web and email servers in colocation. - Original Message - From: Duane Boudreau

OT: Google Maps

2005-02-08 Thread Jim McAtee
http://maps.google.com The interface is beyond cool. Some of the searches, no doubt tied to google's web index, are uncanny. Anyone know the technology behind the interface? Just JavaScript, or is there more to it? ~|

<    1   2   3   4   5   6   7   8   9   10   >