RE: URL Variables

2005-10-18 Thread B G
lDecode(url.newurl) when you need to pull it back out > > >www.domain.com/page.cfm?newURL=#urlencodedformat(www.domain.com/page2.cfm?va >r1=a&var2=b)# > >and... > >#urldecode(url.newURL)# > > >..:.:.:.:.:.:.:.:.:.:.:.:.:.:. >Bobby Hartsfield >http://aco

URL Variables

2005-10-18 Thread B G
Is this possible? I want to pass a string containing URL variables through a URL. For example: www.domain.com/page.cfm?newURL=www.domain.com/page2.cfm?var1=a&var2=b In other words on page2.cfm I should reference #URL.newURL# outputs www.domain.com/page2.cfm?var1=a&var2=b Thanks ~~

Re: IIS/Index Server/CF and ASP

2005-09-22 Thread B G
> >My guess is that whatever is doing the indexing (a filter of some >sort) does not know that CFM files have a similar structure to .HTM >files. You are probably going to need to add cfm files to the list of >filetypes processed by the htm filter. > >I have no idea how. >

IIS/Index Server/CF and ASP

2005-09-22 Thread B G
This is going to be broad, but is based on a CF problem I am having. I have an ASP search page which is referencing Index Server catalogs. It's a standard one I found and I believe is commonly used. I can provide the whole code if necessary. The Index Server appears to be cataloging both HTML

Bulletproof processing - Ensuring Safe CC transactions

2005-08-08 Thread B G
I am developing a nightly batch process which will process CC's through Verisign, then update records as approved in order to release back orders which have had inventory replenished. The process is simple enough, though I need to ensure reliable recovery should something go wrong. I'm looking

RE: RegEx question: Multiple replaces in one statement

2005-07-29 Thread B G
oisvert [mailto:[EMAIL PROTECTED] >Sent: Friday, July 29, 2005 12:05 PM >To: CF-Talk >Subject: Re: RegEx question: Multiple replaces in one statement > > >Nope, but you don't REreplace at all, a simple replace will do the >trick just as well, and with less overhead. You c

RegEx question: Multiple replaces in one statement

2005-07-29 Thread B G
Is it possible to replace two different items in a string? I have a table holding brand names. All ~ should be ® AND all ^ should be TM. Currently I am doing the following: Is it possible to do this in one REReplace statement? Thanks.

Re: CFDIRECTORY - previous & next

2005-06-23 Thread B G
Thanks to you both. This may be academic, but reducing CFDIR calls to as few as possible would be prudent, no? On a small scale performance may not suffer, but accessing the HDD can quickly create lag as file sizes and numbers grow. >From: S. Isaac Dealey <[EMAIL PROTECTED]> >Reply-To: cf-tal

CFDIRECTORY - previous & next

2005-06-23 Thread B G
I've been noodling around with a photo gallery which relies on Picasa2 to create thumbs and web friendly images. The app use cfdirectory to read the list of jpegs in any given directory making it easy to add and delete at will without updating the static HTML pages Picasa2 generates. It's basi

Re: Java and JVM page in CF Administrator

2005-05-25 Thread B G
have this. You can use the JMC, I think its fixed now, >used to have a bug that messedup your JVM settings. Personally, I mod these >directly. See JRun/bin for your jvm.config. Note by default, this file >applies to all JRun instances. > >DK > >On 5/24/05, B G <[EMAIL PRO

Java and JVM page in CF Administrator

2005-05-24 Thread B G
This question is in regards to CFMX 6.1 Enterprise. I am working on a box I inherited and in the admin there is no link to the Java and JVM settings. I have never seen this before and I have no idea where to even look to correct this. Could the installation be corrupt? All CF pages seem to b

Re: Decimal Formatting

2005-04-12 Thread B G
ou'll always get >exactly 2 decimal places. Try this: > > > #int(myNum)# > > #REreplace(myNum, "0+$", "")# > > >cheers, >barneyb > >On Apr 12, 2005 2:38 PM, B G <[EMAIL PROTECTED]> wrote: > > There's a simple solution h

Decimal Formatting

2005-04-12 Thread B G
There's a simple solution here that is eluding me so please forgive my "end of day cloud" that is obstructing me. I am trying to format a value that is stored in Oracle NUMBER(5,2) datatype so that if it is a whole number it won't display x.00. For example, value 25.75 is fine and displays prop

RE: How does CF Mail Server Work?

2004-09-27 Thread B G
Thanks! >From: "Howie Hamlin" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: RE: How does CF Mail Server Work? >Date: Mon, 27 Sep 2004 14:22:44 -0400 > >The main info page is here: > >http://postmaster.info.aol.com/ > >The whitelist signup info is here:

Re: How does CF Mail Server Work?

2004-09-27 Thread B G
Interesting.  That should shed some light. >From: Matt Robertson <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Re: How does CF Mail Server Work? >Date: Mon, 27 Sep 2004 11:04:31 -0700 > >Paul Vernon wrote > > > Matt (MySecretBase) has updated his throt

RE: How does CF Mail Server Work?

2004-09-27 Thread B G
In the past I have used something similar to throttle emails that are sent.   With CFMX I it wasn't necessary as it was in previous versions.  Maybe it's time to bring it back. My IT guy who has dealt with similar AOL issues has indicated that he never got a clear answer from AOL on what would t

How does CF Mail Server Work?

2004-09-26 Thread B G
My site sends a fairly large number of emails on a daily basis.  In addition to newsletters that are sent to subscribers there are notifications of a variety of types (message board, requests for info, registrations, etc) As the newsletter subscriber list grows I am trying to manage it better by

RE: Comparing two records within the query

2004-09-09 Thread B G
Thanks for your help on this.  I am pretty sure I have the query down as I need.  I used a variation of your UNION'ed query. Since we don't have one ISDN for each title, I stripped the suffix off of the ID (-01 or -03) to artificially create a unique ID for each title. Thanks again! >From: "Co

RE: Comparing two records within the query

2004-09-08 Thread B G
Yes, this is exactly the thing I'm looking for. This works, though I am not getting all rows returned and I haven't quite figured why yet.  I hate to rely on the titles being exactly the same.  I have data where one title contains the words DVD while the VHS version doesn't. Thanks >From: "Co

Re: Comparing two records within the query

2004-09-07 Thread B G
That may be possible.  Though it's not always up to me to get the marketing dept and the DB people to do work so my life is easier. Nonetheless...The basic nature of this kind of compare is eluding me.  Even if I had two records, one with DVD and one with VHS in the MEDIA_TYPE field, I'd still

Comparing two records within the query

2004-09-07 Thread B G
Here's the dilemna: I have a catalog of videos I want to list.  The product ID's indicate whether the video is VHS or DVD.  For example -01 = The Teletubbies meet Jason (VHS)  -03 = The Teletubbies meet Jason (DVD).  Two records for each title if available in both media. In the list I

CFHTTP, Struts and some other stuff...

2004-09-03 Thread B G
I apologize in advance if my question isn't detailed.  I confess I'm not too familiar with an application I inherited but still must troubleshoot. I have an app written in a combo of CF (CFMX 6.1 on Win2000, IIS) and Java using struts.  Most of the work is being done in Java with CF doing the o

Mail in Undeliverable Folder

2004-08-31 Thread B G
Due to an IP change on our server and an application that didn't get updated I have quite a number of emails in the undeliverable folder that I would like to send out.  Has anyone converted these and drop them in the spool so they get sent? Thanks. [Todays Threads] [This Message] [Subscrip

RE: Web Team Project Management App

2004-08-06 Thread B G
I've been using proworkflow www.proworkflow.com It's a good product and they are very responsive. >From: [EMAIL PROTECTED] >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Web Team Project Management App >Date: Fri, 06 Aug 2004 18:15:45 + > >Our company is moving from

RE: Finding good developers

2004-06-30 Thread B G
their previous work might be hard for the applicate, since >his/her work might be the property of his current employer. I've been >involved on both side over the last 25 years and a 'good' developer can >sometimes 'sense' a another good one. > >- Pat > >

OT: Finding good developers

2004-06-30 Thread B G
Not to say that this list isn't stocked with good developers! But...As my department is growing my need to find good staff is increasing.   I need to find good resources for both full-time positions and temporary contract/project based openings.  My experience with headhunters has been very cons

How to output last line first

2004-05-22 Thread B G
Has anyone tried to present the output of a process so that the last line is at the top of the page? For example, I have a process that runs through thousands of records, I want the user to observe the results of each record.  In the CFLOOP I can CFFLUSH and print the results, but by default ea

RE: Macromedia.com running on top of Mach II

2004-02-08 Thread B G
This thread has been interesting for a number of reasons.  I read most of the posts offered on this list because there is quite often a nugget of knowledge I glean whether the thread addresses a specific issue I happen to be dealing with.  I've learned a lot from those of you who have been most

Re: CFMX 'bug'? Easy to crash CFMAIL.

2004-01-20 Thread B G
>It's not a bug in CFMX, but rather your app. If your app thinks "foo@ >bar.com" or "foo@@bar.com" is a valid email address and lets someone enter >it, your app is broke. I don't agree fully with this.  While I validate new emails on the forms I create, I don't always have control over new data

RE: SQL - Selecting a Month

2003-09-04 Thread B G
;Date: Wed, 3 Sep 2003 16:00:16 -0700 > >Yep, should work. SQL Server Books Online says: > >MONTH >Returns an integer that represents the month part of a specified date. > >Syntax >MONTH ( date ) > > >Looks the same to me! > > >-Original Message-

OT: SQL - Selecting a Month

2003-09-03 Thread B G
I know there is an easy answer to this that's escaping me at the moment. CF has a function Month() which will pull the number of the month out of a date. Is there a similar function to use in a SELECT statement that works the same way? Here's what I want: SELECT My_Date FROM All_Dates WHERE

Application Development/Documentation

2003-08-21 Thread B G
As our applications get more complex, documenting new apps, and mods to existing apps is becoming increasingly important. It's time to abandon the old "notes on napkins" methodoolgy for something a little better. Does anyone use a documentation tool for recording details of complex applicatio

TEST - Please reply *at least once

2003-08-15 Thread B G
Sorry to do this to you all, but I haven't seen any of my messages or responses in the last few days. Thanks! _ Tired of spam? Get advanced junk mail protection with MSN 8. http://join.msn.com/?page=features/junkmail ~

OT: Chat Server Software

2003-08-14 Thread B G
Anyone have a recommendation for Chat Software? I worked with Chatspace quite a few years ago and remember it being relatively good. They still appear to be well regarded. We have Fusetalk Pro but the chat leaves a bit to be desired. Thanks! BG _

Re: Separating IIS from CF

2003-08-14 Thread B G
What kind of traffic would one expect to see to make a distributed mode installation necessary or at least prudent? BG >From: Matt Robertson <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Separating IIS from CF >Date: Thu, 07 Aug 2003 15:38:52 -0400

RE: Mach II 1.0 released

2003-08-14 Thread B G
Has anyone noticed www.mach-ii.com not available? 8-13-03 5pm Central Time. _ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail ~~~

RE: Querying a text file

2003-08-01 Thread B G
what you're doing. I don't know if >you're using sql server or if your host will allow you to utilize dts >packages (probably not), but it's worth a try. > >Mark > > >-Original Message- >From: B G [mailto:[EMAIL PROTECTED] >Sent: Wednesday, Jul

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread B G
I've been looking into a similar function myself. I would like to stay away from adding a rich text editor to the form. I'm starting to lean toward a Message Board Markup Language. Anyone have any insight? BG >From: [EMAIL PROTECTED] (Rafael Alan Bleiweiss) >Reply-To: [EMAIL PROTECTED] >To:

RE: Querying a Text File vs An MS Access Table

2003-07-31 Thread B G
> >http://www.insapi.com/products/development_tools.cfm#cfx_textimport > >Perhaps it is something that would be useful? > >-Ryan > >-Original Message- >From: B G [mailto:[EMAIL PROTECTED] >Sent: Thursday, July 31, 2003 12:19 PM >To: CF-Talk >Subject: Querying

Querying a Text File vs An MS Access Table

2003-07-31 Thread B G
I am building an application where users can upload a comma delimited text file to a unique user directory then retrieve the data from it for later use. The structure of the file will be pre-defined and the users must follow that format. Field names are included in the first row. I had intention

Querying a text file

2003-07-30 Thread B G
I am building an application where users can upload a comma delimited text file to a unique user directory then retrieve the data from it for later use. The structure of the file will be pre-defined and the users must follow that format. Field names are included in the first row. I had intent

Re: cf hosting - CFFILE

2003-07-29 Thread B G
I just looked at them. Go to http://www.readyhosting.com/ and hit the Cold Fusion MX Plan Details link. It appears they do allow CFFILE. BG >From: "mayo" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: cf hosting - CFFILE >Date: Tue, 29 Jul 2003 17:2

cf-talk@houseoffusion.com

2003-07-23 Thread B G
Hey all! I am building an application that will accept comma delimited files of a standard format from a variety of users which need to be processed and inserted into a database. My concern is the text files may at some point in the future become too large to "Read" using CFFILE since this tag

Re: Any one find a fix for the "null null The error occurred on line x" error?

2003-06-06 Thread B G
Do you have Client Variables on? >From: "Mark W. Breneman" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Any one find a fix for the "null null The error occurred on line >x" error? >Date: Thu, 5 Jun 2003 11:43:59 -0500 > >I just installed updater 3

Troubleshooting Performance - CFMX

2003-06-04 Thread B G
Can someone tell me if they've seen the following behavior and if this is normal. All of this is related to the CPU maxxing out at 100% and the whole JRUN.exe problem. The following situation is easily repeatable on my server: I monitor Task Manager and CFSTAT at the same time. When CPU usage

RE: Web Server Machine Specs

2003-05-31 Thread B G
g and not in registry. If the code hasnt >changed and there arent more users and the apps on the server havent >changed, then its either something accumulating on the server or something >external and thats often the database. > >DRE > > > -Original Message- > >

OT: Web Server Machine Specs

2003-05-31 Thread B G
I've got a web server that has been running well until recently. Suddenly I see maxed out CPU usage and CFSTAT shows requests go to queue frequently which results in bad lag on the site. There hasn't been any significant change I can track to this. I'm wondering if the machine has simply lived