RE: CreateObject error on new server

2008-07-21 Thread Andrew Tyrone
I changed it to the dot notation but still got the same error. We have a map to the root and the xyz/lts directory is directly below the root. I had a problem like this a long time ago. Deleting and re-creating the mapping solved it.

CF 7 Report Builder and dynamic charts

2008-02-27 Thread Andrew Tyrone
Hi everyone, I can't seem to figure out how to get the CF 7 Report Builder to recognize a dynamic query being passed in. I found this technote: http://kb.adobe.com/selfservice/viewContent.do?externalId=ee54cc6sliceId=2 but the instructions aren't working. I found a followup to the technote in

OT: NetSol Hosting

2007-08-27 Thread Andrew Tyrone
Hello everyone, We're converting two sites from ASP to ColdFusion and I was wondering if anyone had any tips or general knowledge they'd like to share regarding dealing with NetSol hosting (using the PRO package with SQL Server). If so, please email me off-list unless you think some of the

RE: OT: NetSol Hosting

2007-08-27 Thread Andrew Tyrone
My advice is, don't host with Network Solutions. Why not? They don't offer ColdFusion hosting. Use someone like CrystalTech.com The PRO package does offer CF, but the waters are pretty murky as to what is supported within CF and what is not. The problem is this client so far refuses to jump

RE: OT: NetSol Hosting

2007-08-27 Thread Andrew Tyrone
Anyway,the only thing that I don't like that a lot of hosting companies are doing is you cannot use Enterprise Manager to connect to your database. That sucks. The web administration tools out there are not too bad, but you have to do a lot of extra steps to get done what you can do in

RE: How so I show prior month?

2007-07-25 Thread Andrew Tyrone
I know cfoutput#dateformat(now(),'mmm ')#/cfoutput will put out current month and year (Jul 2007). Subtract from the current month using DateAdd() and a negative number for the month: #DateFormat(DateAdd(m,-1,Now()),'mmm ')# Andy

RE: How so I show prior month?

2007-07-25 Thread Andrew Tyrone
-Original Message- From: Dale Fraser [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 1:37 AM To: CF-Talk Subject: RE: How so I show prior month? cfoutput#dateformat(createDate(dateAdd(m, -1, now()),'mmm ')#/cfoutput That isn't correct. CreateDate() takes 3

RE: Invoking CFC with Javascript onclick event

2007-07-24 Thread Andrew Tyrone
-Original Message- From: Joel Watson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 19, 2007 10:30 AM To: CF-Talk Subject: Re: Invoking CFC with Javascript onclick event form name=form1 input type=text name=commenter value=Joel input type=text name=commentText

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Andrew Tyrone
Dave Watts wrote: I shouldn't complain too much, as they don't care how much it costs and pay quickly - but, is there a more efficient way of doing this? triggers. AJAX. Field-based editing with a simple log. =] I'm sorry, but that, by itself, is a very silly answer. AJAX

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Andrew Tyrone
Well, actually, once you go AJAX, you kinda want it everywhere. It truly is a different way of doing stuff than the old static way. What's that quote... we're just now getting back to where we were 10 years ago, UI wise something like that. Well, I really disagree with that

RE: Change Log on database updates - need some ideas

2007-02-21 Thread Andrew Tyrone
From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 9:36 PM To: CF-Talk Subject: Re: Change Log on database updates - need some ideas Bob Smith, owner of Data Sys One, performed the following updates: 1. Changed SOX compliance date from 11/12/1999 to 2/12/2001

RE: Uploading files to one server, propgating them to many. Was: Client variables? reliable enough?

2007-02-07 Thread Andrew Tyrone
My company currently has multiple load balanced web servers. Each time we deploy code, we have to manually FTP it to each server. We'd love to be able to upload (or SVN) code to one location and have an automated process to replicate the code to the other servers. I've used Super

RE: What's the name of that CF server...

2006-12-11 Thread Andrew Tyrone
It's something like Insight or Intuit.something like that. It's a free CF server and I can't find the site. Are you talking about IgniteFusion? http://www.ignitefusion.com/ I was cleaning up my hard drives the other day and came across it. Never installed it... Andy

RE: Does anyone have CFoutput example for SQL89 Array field?

2006-11-15 Thread Andrew Tyrone
We are working with a customer who has a legacy application written in a Progress Database that uses SQL-89 query language. In their customer table the address field (which has a column heading of ADDR) is an array field. If we use CFDump to output the query structure CFDUMP

RE: Web Crawler/Spider ?

2006-11-15 Thread Andrew Tyrone
Has anyone ever used some sort of third-party crawler or spider to pull content from a group of web pages (similar to how Google indexes web pages), and then indexed that content with CFINDEX? If so, what have you used and what do you recommend? Or, if you've written something like

RE: Indexing Binary Documents

2006-11-15 Thread Andrew Tyrone
We have binary documents that we want to index (e.g. Word, Excel, Powerpoint, PDF, etc.) and we know we can index them with verity using the cfindex type=file attribute. However, we want to index their content along with other content from our database. So, we are looking at extracting

RE: Can't register vspider collection with CF

2006-11-13 Thread Andrew Tyrone
From: Doug Kronenberger [mailto:[EMAIL PROTECTED] I'm trying to use vspider to create collections for searching. The problem I'm having is when I try to register the collection via the CF administrator I get the following error: Unable to create collection mycol. An error occurred while

RE: cfmail and cfoutput

2006-11-06 Thread Andrew Tyrone
There is no reasonable, practical way I am aware of to restart - after the point of failure - a cfmail call right in the middle of itself, such as when a bad email address is found in the middle of a query result set. As a result of that, you run your query as normal. Then run a cfloop over

RE: List of One Item -- Listlen=0 ...???

2006-11-06 Thread Andrew Tyrone
ARRRGGGHH I would like to have my cfloop manage the variable regardless of how many items (more than zero) are in the list. Is there a way an elegant method of checking the contents if my list besides if form.foo neq '' and listlen(form.foo) eq 0 ?. IsList() is a function long

RE: Using CFHTTP to login

2006-11-03 Thread Andrew Tyrone
-Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Friday, November 03, 2006 7:02 AM To: CF-Talk Subject: Re: Using CFHTTP to login Claude I am in a funny mood, and your as stupid as Michael. If the chhttp as this guy is trying to connerct to is

RE: Cf Development Companies

2006-11-03 Thread Andrew Tyrone
Everyone has successful businesses and should be able to step to the plate regardless of the project at hand. Coldfusion isn't brain surgery. That is where the problem lies. Based on a lot of code I've seen, companies range from We're now going to administer the anesthesia, Mr. Smith. I want

RE: Using CFHTTP to login

2006-11-03 Thread Andrew Tyrone
-Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Friday, November 03, 2006 7:33 AM To: CF-Talk Subject: Re: Using CFHTTP to login your joking right. The form page is called login.asp.. And the cfhttp call is to login.asp. You really aren't on top

RE: Using CFHTTP to login

2006-11-03 Thread Andrew Tyrone
-Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Friday, November 03, 2006 8:14 AM To: CF-Talk Subject: Re: Using CFHTTP to login The form posts to the login.aspx page, which tells me he is posting to the (same) form page, which is not impossible to

RE: Using CFHTTP to login

2006-11-03 Thread Andrew Tyrone
Your Joking really tell me you are joking? If I really was, it would at least have spell it you're, not your, but anyway... So I'll return *your* question: what *you're* smoking? Come on, Claude! Re-read what you wrote... I think you and Andrew are at the same bar! Andy

RE: Using CFHTTP to login

2006-11-03 Thread Andrew Tyrone
Anyway if Claude was smart he wouold see that the login form that works is called login.aspx, and then submits to itself. But what Claude didn't see was the fact that the cfhttp was sending the field submit button. Actually, Claude was smart enough to point out that the form might NOT

RE: creating dynamic variables

2006-11-03 Thread Andrew Tyrone
I have a recordset that has several attendees. I need to create variables on the fly for each record cause I won't know how many there are. It can be infinite (everyone on the planet). Of course, the problem is that I can't use an evaluate on the left side. I can't think of a way

RE: working with data from joining multiple tables

2006-11-03 Thread Andrew Tyrone
-Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] I have not and didn't know that - thanks for the information. In that case, for three orderings, I'd need to do three queries, right? You know, you might have an ordering issue. The cf group by needs the query

RE: Mime Type for File Upload

2006-10-24 Thread Andrew Tyrone
-Original Message- From: Martyn Bowis [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 24, 2006 10:21 PM To: CF-Talk Subject: RE: Mime Type for File Upload PS: I found the following link on Google that may help with evaluating the mime type:

RE: Filling In Tax Forms using CF

2006-10-24 Thread Andrew Tyrone
Has anyone ever tried to fill in a Tax Form PDF using ColdFusion? I have created PDFs using CFDocument but of course that just prints onto a blank background. I need to either create a PDF of the tax form with all the fields filled in from a form or print onto different Tax Forms. Are

RE: Can I use replace function on a string to create form drop bo x options?

2006-10-21 Thread Andrew Tyrone
1º using a (small) list is not a workaround, it is a short cut. Before I take short cuts, the first thing that comes to mind is, I hope I won't need to redo this later. 2º updating one field in a table is much more straightforward than updating a multi records cross table. If you mean the

RE: Can I use replace function on a string to create form drop bo x options?

2006-10-21 Thread Andrew Tyrone
Just put the days in the list, not codes ;-)) That will make a field with a max of what? 50 characters may be? Big deal! ;-) And...? It doesn't matter which types of data you store in those lists. How would you return a workable query? You can't, and you'd have to jump through a bunch of

RE: Foundry Server Iron

2006-10-20 Thread Andrew Tyrone
-Original Message- From: Christine Davis [mailto:[EMAIL PROTECTED] Sent: Thursday, October 19, 2006 5:21 PM To: CF-Talk Subject: RE: Foundry Server Iron However, having said that... We really are interested if anyone has any insight, our tech folks require hardware load balancing

RE: Best way to insert text as html, without a text editor

2006-10-20 Thread Andrew Tyrone
What's the simplest way to maintain simple formatted text in a db, without using tinyMCE, FCKeditor, or typing html into the textarea? When I say simple, I mean I just want to show line breaks, carriage returns, etc. Not worried about boldness, tables, etc. I just tried using

RE: Foundry Server Iron

2006-10-20 Thread Andrew Tyrone
-Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Friday, October 20, 2006 12:32 PM To: CF-Talk Subject: RE: Foundry Server Iron I'm not exactly sure what a keep alive connection looks like, unless you just mean periodically hitting a page with JavaScript once

RE: Can't get the right path for my error template

2006-10-20 Thread Andrew Tyrone
Ok, this is annoying. I'm testing my store app within another site, on a shared server, using a shared SSL. The root is luckydogvolleyball. The subfolder is Store - luckydogvolleyball/Store The domain for the SSL is: https://www1024.ssldomain.com/luckydogvolleyball The site

RE: Best way to insert text as html, without a text editor

2006-10-20 Thread Andrew Tyrone
You could format it with a SELECT statement though if that's what Andy meant? That would not affect the data but format it for display. Yep, that is what I meant. Sometimes I find it easier to just send it back formatted in the correct way, but I'll always store it the way it was entered by

RE: Can''t get the right path for my error template

2006-10-20 Thread Andrew Tyrone
Well the problem with a relative link is I have subfolders with their own Application.cfc's. It'd throw an error on those pages. Unless I dropped the same error templates into all those directories. The root-relative links worked, but then the problem with the SSL came up. I guess

RE: Can I use replace function on a string to create form drop box options?

2006-10-20 Thread Andrew Tyrone
Argh... I was affraid someone would indeed :-) This is right IN THEORY, and in most cases, but in practice, when the list has only a few elements, and is not expected to have many ever, a list in one field is a much simpler and more efficient solution. I'd actually rather brush my teeth

RE: Null with cfqueryparam AAAIIEE!!!!! NOT STRUCKKEYEXIST !!!! Jezzz Louise!

2006-10-09 Thread Andrew Tyrone
-Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Monday, October 09, 2006 6:54 PM To: CF-Talk Subject: Re: Null with cfqueryparam AAAIIEE! NOT STRUCKKEYEXIST Jezzz Louise! AEE! null = YesNoFormat(NOT

RE: CF, jdbc, SQL2k5 problem

2006-10-09 Thread Andrew Tyrone
-Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 12:19 AM To: CF-Talk Subject: RE: CF, jdbc, SQL2k5 problem Yes by server\instancename in the jdbc driver from M$, provided you have opened that instance up for tcp/ip. That also

RE: CFIF Statement

2006-10-02 Thread Andrew Tyrone
And hey, what if there is some warp hole, or what-have you, and the only bit of code to survive is that one line? How much info would those 5 chars give? As we all know, there are NO programmers who inappropriately name variables. Seeing as how the variable is named RecordCount, it's hard

RE: appending two queries

2006-06-22 Thread Andrew Tyrone
-Original Message- From: Crow T. Robot [mailto:[EMAIL PROTECTED] Let's say that I have a CSV file that I am reading into a page, and I convert it to a query. I have a database table that it set up exactly like the converted query, I want to basically insert the CSV data into

RE: SQL DateTime conversion

2006-06-15 Thread Andrew Tyrone
-Original Message- From: Alan Rother [mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 3:50 PM To: CF-Talk Subject: Re: SQL DateTime conversion Pretty much what I cam up with SELECT CAST(MONTH(getDate()) AS VARCHAR(5)) + '/' + CAST(DAY(getDate()) AS VARCHAR(5)) + '/' +

RE: ways to time a file upload?

2006-06-06 Thread Andrew Tyrone
How about a hidden form field that gets populated with the current date/time on form submission? Then you could parse it and compare it to Now() on your action/upload page. There are two minor caveats to this approach. First, you don't know how long the user will spend on the form

RE: ways to time a file upload?

2006-06-06 Thread Andrew Tyrone
Well after browsing this thread I thought if it would be possible to connect the submit button to an XMLHttpRequest which triggers a session var for the starting of the upload and after processing the upload you take another timestamp and could calculate with that. Stupid idea? No, I was

cfexecute buffer causing hangs?

2006-04-13 Thread Andrew Tyrone
Hi everyone, In my continued work with the Verity Vspider I came across something interesting today. It seems that the cfexecute tag has an issue with buffering output that is returned from the spawned process. This is CFMX 7.0.1 Enterprise running on Windows 2003 Server Standard. I searched

RE: cfexecute buffer causing hangs?

2006-04-13 Thread Andrew Tyrone
-Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 13, 2006 7:56 PM To: CF-Talk Subject: Re: cfexecute buffer causing hangs? Hmm, I'm probably one of the people you've seen while Googling the subject. While I haven't tried cfexecuting the

Problem with Vspider and excluding specific pages

2006-04-12 Thread Andrew Tyrone
Hi everyone, I've been working with Vspider for a while now (CFMX 6.1 and 7.0.1) on a search revamp project and ran into a problem. It seems that if you want the spider to follow a page but not index it, a link to that page must be explicit and not implicit with links like this:

Verity and indexing encrypted pdfs

2006-02-24 Thread Andrew Tyrone
Hi everyone, I'd like to know if anyone can point me to an official document that specifies encrypted PDF documents CANNOT be indexed by Verity in any version of CF, specifically CFMX 6.1. Based on our testing, 128-bit RC4 encrypted PDF documents cannot be indexed, however 40-bit RC4 documents

RE: question about insert select statement

2006-01-07 Thread Andrew Tyrone
-Original Message- From: Mike Soultanian [mailto:[EMAIL PROTECTED] Sent: Saturday, January 07, 2006 4:12 PM To: CF-Talk Subject: question about insert select statement I have a user interface and it has multiple checkboxes to select what members of a group a user is in. I have

RE: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Andrew Tyrone
-Original Message- From: Troy Simpson [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 3:58 PM To: CF-Talk Subject: Re: Why do I need a Custom Tag Path for Components? Assuming that my coldfusion components and include files are outside the web root and the mapping root

RE: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Andrew Tyrone
-Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 4:13 PM To: CF-Talk Subject: Re: Why do I need a Custom Tag Path for Components? Assuming that my coldfusion components and include files are outside the web root and the mapping

RE: Using FoxPro in ColdFusion

2005-11-21 Thread Andrew Tyrone
-Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 3:56 PM To: CF-Talk Subject: RE: Using FoxPro in ColdFusion Thanks Howie, but as my brain is fully fried, how do I do that? I went into the Macromedia Jrun CFusion Server service

RE: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Andrew Tyrone
-Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 11:04 AM To: CF-Talk Subject: Re: Multiple Row Insert Into SQL from another database I am curious what would the SQL script look like to connect to the MS Access and then insert into

RE: Multiple sites in IIS - Modifying DNS

2005-11-18 Thread Andrew Tyrone
-Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: Friday, November 18, 2005 1:46 PM To: CF-Talk Subject: RE: Multiple sites in IIS - Modifying DNS CNAME records should only be used when aliasing a host that is not within the same zone, otherwise, use A

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Andrew Tyrone
-Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 10:06 AM To: CF-Talk Subject: RE: Sending Faxes through Cold Fusion Google HTMLDOC. If I remember correctly it's free and does everything you are looking for. Thanks Terry,

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Andrew Tyrone
-Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 11:52 AM To: CF-Talk Subject: RE: Sending Faxes through Cold Fusion I'd be careful with HTMLDoc, it doesn't support shrink to fit, it also doesn't compensate for IE's tendency to

RE: .NET suggestions

2005-08-19 Thread Andrew Tyrone
-Original Message- From: Tom McNeer [mailto:[EMAIL PROTECTED] Sent: Friday, August 19, 2005 10:08 AM To: CF-Talk Subject: .NET suggestions So -- what resources would you folks suggest for CF Developers needing to learn to use the .NET framework? Adam and David Churvis have

RE: bg myspace

2005-08-16 Thread Andrew Tyrone
-Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: Monday, August 15, 2005 6:13 PM To: CF-Talk Subject: Re: bg myspace Vince, I believe the conflict is over this: http://www.myspace.com/Application.cfm showing a typical, classic CF5.0 error. In BD,

RE: Frameworks for simple web sites

2005-07-26 Thread Andrew Tyrone
It sounds like you just need a simple CMS, like Contribute. I am not sure why you'd want to delve into a framework you've never used before for a simple site that sounds as if it won't require a lot of time or effort. I'd suggest sticking with however you currently organize your code (unless

RE: reverse compliment a sequence

2005-06-15 Thread Andrew Tyrone
to tell how slow the concatenation method is without running it under some real load, but I'm sure the Java solution would handily beat it at a certain point. On 6/14/05, Andrew Tyrone [EMAIL PROTECTED] wrote: Using Barney's elegant struct solution, we can take it one step further by creating

RE: reverse compliment a sequence

2005-06-14 Thread Andrew Tyrone
Using Barney's elegant struct solution, we can take it one step further by creating a UDF and getting rid of the Java by using a new variable and appending to it: cfscript function RevCompDNA(dna) { var newdna = ; var t = structNew(); t.c = g;

RE: CFMX: Dissed by Breeze and FlashLite?

2005-05-03 Thread Andrew Tyrone
Careful, Ben, you run the risk of being called a simpleton. -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 03, 2005 2:46 PM To: CF-Talk Subject: RE: CFMX: Dissed by Breeze and FlashLite? I know I should not respond to this thread, I know I should

RE: wtf are those advertizing links in the text?

2005-04-21 Thread Andrew Tyrone
I would be forced to withdraw, and I imagine that lots of other people might be in the same boat for the same reason that Jochem and Paul Hastings mentioned. I've been through this before elsewhere, and I simply wouldn't be able to justify the risk. And it's worth pointing out that the

RE: SPAM-LOW: Re: wtf are those advertizing links in the text?

2005-04-21 Thread Andrew Tyrone
Aaron Rouse wrote: I do not feel I benifit enough from this list to warrant paying to be on it. Matter of fact I am not 100% sure I have benifited from this list in quite sometime. I know the last couple of questions I posted I never got a complete answer from the list, and if I was

RE: macromedia and Adobe?!

2005-04-18 Thread Andrew Tyrone
Now, tell me, anybody, please, maybe I am just uneducated in the matter. Give me three innovations by Adobe this century. I may settle for two. Oh, and standard product releases don't count (that's just a response to user suggestions). A company that has delivered solid products

RE: CFCs and CFMX

2005-04-12 Thread Andrew Tyrone
-Original Message- From: George Abraham [mailto:[EMAIL PROTECTED] All, So we are finally transitioning from CF 5.0 to CFMX 7 at a point in the near future. I had Hal Helms book on CFCs in CFMX when it first came out. I had only dabbled in CFCs till now. Now I am hearing that

RE: You have to laugh - the world is full of half-wits

2005-04-06 Thread Andrew Tyrone
But who's dumber, the person who supplies an email address that will only be working after the connection is setup, or the tech who assumes the email address supplied is a working one? Maybe moving this to cf-community is probably best, since then we can throw out the personal responsibility part

RE: Best practice question?

2005-03-27 Thread Andrew Tyrone
-Original Message- From: Johnny Le [mailto:[EMAIL PROTECTED] Sent: Saturday, March 26, 2005 12:33 AM To: CF-Talk Subject: Best practice question? Is it better to do this: cfoutput query=GetCourses #Dept_ID# #CorName# #CorLevel#br /cfoutput or this: cfoutput

RE: Ordering WACK from Amazon

2005-03-25 Thread Andrew Tyrone
-Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 5:50 PM To: CF-Talk Subject: RE: Ordering WACK from Amazon Rick, By distribution I mean corporate sales (yep, publishers have sales people who sell lots of books to organizations),

RE: How to Browse and Choose Directory...

2005-03-10 Thread Andrew Tyrone
That part is unlikely ever to change, as there are already third party solutions which get the job done more efficiently. This type of functionality is very specific, and since there is no incentive to add anything like this (read: no one makes any money) as well as it being inherently difficult

RE: How to Browse and Choose Directory...

2005-03-09 Thread Andrew Tyrone
-Original Message- From: Rebecca Wells [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 09, 2005 4:52 PM To: CF-Talk Subject: Re: How to Browse and Choose Directory... Here's a little javascript majick to do the trick. Create a little javascript like this: InvalidTag

Verity and security through obscurity

2005-02-01 Thread Andrew Tyrone
Hi everyone, I wanted to get some feedback on how you go about scheduling the re-indexing of files with Verity, and where the actual code runs. Do you usually put your re-indexing code in a web-accessible directory and just use the cfschedule tag or admin to run it? Do you use a scheduled task

RE: home page redirect

2005-01-26 Thread Andrew Tyrone
-Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 26, 2005 12:35 PM To: CF-Talk Subject: RE: home page redirect Check the cgi.http_referer variable for the domain name that you're expecting, if it's not in there, cflocation to the home

RE: restaurant apps

2005-01-26 Thread Andrew Tyrone
-Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 26, 2005 4:54 PM To: CF-Talk Subject: restaurant apps anyone do anything cool for a restaurant? need some ideas doesnt have to be in cfm, not looking for code just ideas flash is ok as well or

RE: Javascript question

2005-01-24 Thread Andrew Tyrone
Can anyone tell me please what do question marks and colon symbols signify in a javascript command? For example: F.value = S 0 ? ?? + F.value : (new Date(2000, 0, 1, S[0], S[1])).USlocaltimeStr(); My guess is that this is some kind of shorthand for an if-then-else control structure,

RE: CFMX 6.1 - Missing Template Handler

2005-01-20 Thread Andrew Tyrone
2005 01:43 am, Andrew Tyrone wrote: handler IS NOT relative to the web root as the docs say. ... You cannot use relative paths as in ../folder/file.cfm. It is relative to the web root. You can't go 'up' past the root of the web root, which is why your example fails

RE: CFMX 6.1 - Missing Template Handler

2005-01-20 Thread Andrew Tyrone
-Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 9:17 AM To: CF-Talk Subject: Re: CFMX 6.1 - Missing Template Handler On Thursday 20 Jan 2005 01:43 am, Andrew Tyrone wrote: handler IS NOT relative to the web root as the docs

RE: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread Andrew Tyrone
John, Yes, thanks. As far as I've tested on IIS 5, checking the check that file exists checkbox doesn't do ANYTHING. IIS still passes missing .cfm files to CFMX regardless of that setting. Sometimes I wonder if even Macromedia knows how the missing template handler works. Andy -Original

RE: CFMX 6.1 - Missing Template Handler

2005-01-19 Thread Andrew Tyrone
Dave, I forgot about the isapi filter in the master www property page. Does this mean I can't catch missing .jsp pages? I am not sure if you saw my initial post in this thread, but it's all explained in there. CFMX catches missing .cfm and .cfml pages and displays the page defined in the

CFMX 6.1 - Missing Template Handler

2005-01-18 Thread Andrew Tyrone
Hi everyone, OS is Windows 2000 Advanced Server w/ IIS 5. Has anyone noticed that CFMX only catches pages with .cfm and .cfml extensions as missing when the pages don't exist? .cfc and .jsp are also mapped to the same jrun.dll file, but CFMX doesn't catch missing pages with those extensions.

RE: Extra query info

2005-01-17 Thread Andrew Tyrone
Michael, I just wrote some functionality for a government project recently that basically merged two Verity result sets and made a few changes to them at the same time. I found that there was nearly no overhead. Basically one result set had to appear AFTER the other (don't ask). Processing the

RE: MS SQL server replication

2005-01-17 Thread Andrew Tyrone
Russ, I've only theorized about SQL Server replication, but it's on my to-do list this month, I swear! What I can tell you is that yes, you can do it. SQL Server BOL (books online) documentation does a good job of steering you in the right direction, and I've also found the information in SQL

RE: Help with Union on a query of a Query

2005-01-17 Thread Andrew Tyrone
One thing I'd like to add is that by using the query functions you are also able to add the 2nd recordset to the end of the first recordset. If you were to use a union query and weren't explicity ordering the unioned recordset, CFMX will use the first field as the index field and merge your

search engine ideas

2004-10-27 Thread Andrew Tyrone
Hi everyone, I'd like to get your take on the techniques you've used or might use when building a file-based search engine with Verity that would include the ability to: 1. Specify that certain pages come up if certain keywords are entered, e.g. typing a product name would bring that product

bardcode and signature extraction from tiff files

2004-09-16 Thread Andrew Tyrone
Hi everyone, I've got a job to quote and am looking for some software that can accomplish extraction of a specified section of a tiff image (which is converted from a fax) as well as read a barcode from a specific section of said image. Basically the signature needs to be extracted and saved to a

RE: Suggestion for Windows HTML editor

2004-09-08 Thread Andrew Tyrone
Hi Damien, I've been evaluating PrimalScript 3.1 and it looks like a winner.Sam Neff has mentioned it numerous times so I figured I'd check it out.It does all of what you are asking, and more.Also, the download is under 4MB, and it uses a little over 10MB on disk.I just slapped a bunch of help

COTS Product

2004-09-07 Thread Andrew Tyrone
Hi everyone, Recently we were told we had to provide quite a few documents for SDLC (Systems Development Life-cycle), one month before a project deadline, for the COTS (Commercial-Off-the-Shelf) Product we are using for a government client.This product is CFMX 6.1.After installation testing on

RE: CFUN-GMAIL

2004-08-23 Thread Andrew Tyrone
If someone wants a gmail account, I have 1 invitation left.Email me at [EMAIL PROTECTED] and say gimme!. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Monday, August 23, 2004 12:41 PM To: CF-Talk Subject: RE: CFUN-GMAIL GMail has heavily cut down on their

RE: CFUN-GMAIL

2004-08-23 Thread Andrew Tyrone
Sorry!I just sent one off before you posted this... -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Monday, August 23, 2004 12:49 PM To: CF-Talk Subject: Re: CFUN-GMAIL Thank you Rey. I'd like to ask that ALL questions, comments, requests and offers for or about

RE: The search is killing the server. Please help!

2004-07-30 Thread Andrew Tyrone
I fail to see why a lot of these ideas are even necessary in this case.The records returned number about 5000.NO ONE is going to page through all 5000 records.This is what the search filters are for.Just return the top 20, 50, 100 records ordered by whatever your business rules require ONLY IF

RE: Checked/unchecked input boxes

2004-07-30 Thread Andrew Tyrone
You can use cfparam to create the form variable if it doesn't already exist. So to set FORM.itemstatus to NR by default, you could use: cfparam name=FORM.itemstatus default=NR -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 9:28 AM To: CF-Talk

RE: cf_sql_date

2004-07-30 Thread Andrew Tyrone
Actually, smalldatetime and datetime are only different by the following (from SQL Server Books Online): datetime Date and time data from January 1, 1753 through December 31, , to an accuracy of one three-hundredth of a second (equivalent to 3.33 milliseconds or 0.00333 seconds). Values are

RE: CFC Practices

2004-07-30 Thread Andrew Tyrone
Yes, I have a lot of this going on in my last project.Some complex database transactions have more than one method that gets used in more than one main transaction, so these are broken up into private methods, called by just referencing the method itself WITHIN the CFC (which is the keyword). As

RE: CFC Practices

2004-07-30 Thread Andrew Tyrone
If you have a lot of arguments, however, readability is easier maintained with cfinvoke method=bar ... and then a series of cfinvokeargument tags thereafter and a closing /cfinvoke.Using cfinvoke without the component name (see my other post) does not instantiate the component again.

RE: The search is killing the server. Please help!

2004-07-30 Thread Andrew Tyrone
becuase I think it is a bad idea to do the task the proposed way. But yes I agree we limit our searh results to 501. If 501 reusults are returned we suggest refining the search to our users. Adam H On Fri, 30 Jul 2004 11:02:19 -0400, Andrew Tyrone [EMAIL PROTECTED] wrote: I fail to see why a lot

RE: The search is killing the server. Please help!

2004-07-30 Thread Andrew Tyrone
The subject didn't have anything to do with reports, but a list returned to the user in it's entirety.The discussion was about caching, and in this case there is no need to return all 5000 records to the user because the user will not page through them anyway without entering some sort of

RE: The search is killing the server. Please help!

2004-07-29 Thread Andrew Tyrone
On my last project I had to present a large amount of items to the user using a next/prev style interface.Since there were a lot of filters to narrow down the returned data, I just ended up presenting the top 20 items to the user and basically forced them to use the filter to narrow their search.

RE: The search is killing the server. Please help!

2004-07-29 Thread Andrew Tyrone
I don't agree with this.You can cache pretty much any query as long as the server has the resources, but that doesn't mean you should cache everything. In my experience caching in general takes a bit of forethought to implement in the most efficient way.As long as you return a query, you can cache

RE: The search is killing the server. Please help!

2004-07-29 Thread Andrew Tyrone
Yeah, it's a documented tag that is nested inside the cfstoredproc tag. It's called cfprocresult and it allows you to return multiple recordsets. -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Thursday, July 29, 2004 12:33 PM To: CF-Talk Subject: RE: The search

  1   2   3   4   >