Grabbing domain from email address

2002-01-28 Thread W Luke
Hi. Can anyone recommend a tag to strip just the domain from an email address? (after the @) Cheers Will __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month ·

Re: Grabbing domain from email address

2002-01-28 Thread Jennifer Larkin
At 09:09 AM 1/28/02 +, you wrote: Hi. Can anyone recommend a tag to strip just the domain from an email address? (after the @) You don't you just treat it as a @ delimited list and get the second item in the list? cfset domain=ListGetAt(emailaddress,2,@) Now available in a San Francisco

Re: Grabbing domain from email address

2002-01-28 Thread W Luke
Can anyone recommend a tag to strip just the domain from an email address? (after the @) You don't you just treat it as a @ delimited list and get the second item in the list? cfset domain=ListGetAt(emailaddress,2,@) Cheers Jennifer - spot the clueless fusioneer... Will

Re: Generating HTML thumbnails, COM Question

2002-01-28 Thread Zac Spitzer
Dave Watts wrote: ok, I found the class it's called Shell.ThumbnailExtract.HTML.1 {EAB841A0-9550-11CF-8C16-00805F1408F3} I tried to play with it with cfobject cfobject type=COM name=Thumbnail class=Shell.ThumbnailExtract.HTML.1 action=CREATE context=INPROC but I got a . COM error

020128 Re: Grabbing domain from email address

2002-01-28 Thread cf . talk
Hi Will. Here's the one-line source you need. Dare I suggest that unless you're being humongusly structural, it's hardly worth building a tag :) CFSET this_domain = ListLast(emailaddress,@) Regards, Big Ben [EMAIL PROTECTED] | Date: Mon, 28 Jan 2002 09:09:31 - | From: W Luke [EMAIL

RE: UltraDev

2002-01-28 Thread Neil Clark
Maybe the design tab was not that good, and indeed it wasnt given much attention... but the code editing of CFS is unmatched. A good hand-coder shouldn't need a design tab anyway - they should think in tables. :-) __ Get Your

RE: UltraDev

2002-01-28 Thread Carlisle, Eric
Well said! To this day, I feel very limited in a WYSIWYG interface. No matter how many times I try to use Dreamweaver, I always come crawling back to Studio. That's not to say that one is right and the other is wrong. It's just the way I'm accustomed to coding. EC -Original

RE: UltraDev

2002-01-28 Thread Neil Clark
table tr tdyep, i'm with ya on that./td /tr /table __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

pound signs inside DE('') - help!

2002-01-28 Thread Gyrus
Having problems with some pound signs / hash marks. Trying to write style tag into the HTML head tag as follows: cfhtmlhead text=style type=text/css#IIf(request.fieldValues.SQLMethod EQ 'insertSelect', DE('#extrasInsertSelect {display: block;}'), DE('#extrasInsertSelect {display:

RE: pound signs inside DE('') - help!

2002-01-28 Thread Pascal Peters
I try to avoid IIF, consider using cfif and cf_htmlhead/cf_htmlhead. But if you insist: cfhtmlhead text=style type=text/css#IIf(request.fieldValues.SQLMethod EQ 'insertSelect', DE('extrasInsertSelect {display: block;}'), DE('extrasInsertSelect {display: none;}'))#/style Pascal

Re: pound signs inside DE('') - help!

2002-01-28 Thread Gyrus
I try to avoid IIF, consider using cfif and cf_htmlhead/cf_htmlhead. But if you insist: cfhtmlhead is necessary so that valid XHTML is generated - style blocks aren't allowed outside the head tag, and when the head code is generated there's no easy way of knowing what styles subsequent

RE: UltraDev

2002-01-28 Thread Mark A. Kruger - CFG
I'd be curious to know how you'all debug. I've tried the de-bugger, but I always come back to hand coding debug code and testing in a browser when I'm doing something really complex. Anyone? mark -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28,

OT: IIS 5 on Win 2K help

2002-01-28 Thread Phillip Broussard
Does anyone know of some good resources that could help a beginer with Win 2K and IIS 5? I got stuck as the server admin and have no idea what I am doing. I have to set it up for multipule websites and FTP for each one. I cant seem to find anything online for what I need. Thanks Phillip

Session Swapping incident

2002-01-28 Thread Chris Bohill
We are developing an web based application, and have recently been experiencing a number of Session swapping incidents. On two occasions a user has been navigating the system, only to Swap sessions with another user, who (we are not 100% sure) may also be viewing the site at the same time.

RE: Grabbing domain from email address

2002-01-28 Thread Larry Juncker
You can do it very easily with the following: cfset domain = #ListLast(email,@)# -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 3:10 AM To: CF-Talk Subject: Grabbing domain from email address Hi. Can anyone recommend a tag to strip just the

RE: IIS 5 on Win 2K help

2002-01-28 Thread Neil Clark
Give me a shout off-list and will give you any info you need! Neil __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

RE: Session Swapping incident

2002-01-28 Thread Carlisle, Eric
Is the application running in a clustered environment? Session variables aren't well suited for that. EC -Original Message- From: Chris Bohill [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 10:04 AM To: CF-Talk Subject: Session Swapping incident We are developing an

RE: IIS 5 on Win 2K help

2002-01-28 Thread Brendan Avery
setting up multiple websites/domains with iis is pretty easy. every time you create a new website, you'll need to add 'host header' information for that website for both the .com and www..com . just right-click on the website name and choose 'properties'. the default tab of 'web

RE: UltraDev

2002-01-28 Thread Neil Clark
Jeez! the debugger has never really worked to any sort of degree to make it useful (unline Director's real-time watcher/debugger which is a god send for debugging.) I personally tend to just use a well placed CFABORT when it all goes wrong to try and find a bug. If you know the code it

RE: Session Swapping incident

2002-01-28 Thread Chris Bohill
No, the application is only stored on one server. -Original Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED]] Sent: 28 January 2002 15:20 To: CF-Talk Subject: RE: Session Swapping incident Is the application running in a clustered environment? Session variables aren't well

RE: Session Swapping incident

2002-01-28 Thread Andy Ewings
This is interesting. I had a nightmare with Session variables where I was adamant that I had locked properly but was still getting session variables expiring or swapping of sessions...for this reason I always use client variables -Original Message- From: Chris Bohill

RE: IIS 5 on Win 2K help

2002-01-28 Thread Lee Fuller
And don't forget.. Take a look at Min's toolkit. It's quite impressive... http://www.intrafoundation.com/ihtk.html Lee Does anyone know of some good resources that could help a beginer with Win 2K and IIS 5? I got stuck as the server admin and have no idea what I am

thistag structure (WAS: pound signs inside DE(''))

2002-01-28 Thread Gyrus
Yes, but you can avoid all of the nasty string handling by calling CFHTMLHEAD from a custom tag (which people often will name CF_HTMLHEAD. That tag might look like this: cfif ThisTag.ExecutionMode is end cfhtmlhead text=#ThisTag.GeneratedContent# cfset ThisTag.GeneratedContent = /cfif

Re: IIS 5 on Win 2K help

2002-01-28 Thread Tristram Charnley
Don't forget to add the relevant entries to the 'hosts' file as well Tristram Charnley --- [EMAIL PROTECTED] Allaire Certified ColdFusion Developer - Original Message - From: Brendan Avery [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January

SQL query help

2002-01-28 Thread Darren Adams
Hi guys Can anyone help, I just need to check that the date of a record in a database is within a specific range. cfset today = dateformat(now(),dd/mm/) cfoutput#today#/cfoutput cfquery name=browse datasource=marketing dbtype=ODBC select * from main_table where 1=1 cfif #date# NEQ

RE: IIS 5 on Win 2K help

2002-01-28 Thread Christopher Olive
you don't need to modify etc/hosts to handle multiple virtual sites. IIS will handle everytihng (as long as the DNS for each site is handled correctly. christopher olive, cto, vp of web development cresco technologies, inc 410.825.0383 http://www.crescotech.com -Original Message- From:

RE: pound signs inside DE('') - help!

2002-01-28 Thread Pascal Peters
That's exactly what I ment, but I was in a hurry -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: maandag 28 januari 2002 15:58 To: CF-Talk Subject: RE: pound signs inside DE('') - help! I try to avoid IIF, consider using cfif and cf_htmlhead/cf_htmlhead. But if

RE: thistag structure (WAS: pound signs inside DE(''))

2002-01-28 Thread Dave Watts
One question I can't find a reference for: is the ThisTag structure supported in CF4.0? Yes, it is. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 __ Why Share?

RE: IIS 5 on Win 2K help

2002-01-28 Thread Neil Clark
Yep, IIS generally is a point and click procedure, no rocket science involved. __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

RE: thistag structure (WAS: pound signs inside DE(''))

2002-01-28 Thread Pascal Peters
Nested CT's were introduced in CF 4.0 if I'm not mistaken. (and so was the thistag scope) I'm not sure thistag was a structure in CF 4.0, maybe just a scope. Pascal -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: maandag 28 januari 2002 16:29 To: CF-Talk Subject: thistag

RE: Session Swapping incident

2002-01-28 Thread Herbener, Martin - School Information Technology
While locking is a good thing, I don't think the fact that your locks are clean (or not) necessarily has anything to do with session swapping, and I doubt that single-threading sessions would help. I would expect session swapping to happen if a browser started submitting requests with the wrong

Re: Session Swapping incident

2002-01-28 Thread Jeffry Houser
At 03:04 PM 01/28/2002 +, you wrote: We have locked all session variables and only refer to them as local variables on pages that need them. see below: cflock timeout=10 type=READONLY scope=SESSION cfset Variables.VarOne= session.VarOne cfset Variables.VarTwo= session.VarTwo /cflock I see

RE: SQL query help

2002-01-28 Thread Darren Adams
Well there are a number of options which users can search by. All the other ones work but, when they enter a date I cant compare the dates and get it too work. I tried the simple datestamp date but, that just didnt do anything so I tried to do a between comparison. Really all I want to do

RE: Session Swapping incident

2002-01-28 Thread Neil Clark
in the words of our immortal Jedi Master on another list.. Repeat after me - if I _type_ session, application, or server, I should __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant

RE: UltraDev

2002-01-28 Thread Mark A. Kruger - CFG
That was my experience as well. I have also found Cfdump to be a great tag for the purpose of debugging. I used to write lots of output code to figure out what's my variables contain - now it's a one step deal. -Original Message- From: Neil Clark [mailto:[EMAIL PROTECTED]] Sent:

Re: IIS 5 on Win 2K help

2002-01-28 Thread Tristram Charnley
If your ISP has given your box an internal IP address different to the external IP address you will need to use hosts. Thats the way I've always done it. Tristram Charnley --- [EMAIL PROTECTED] Allaire Certified ColdFusion Developer - Original Message - From:

Re: SQL query help

2002-01-28 Thread Douglas Brown
What error do you get? There are two major products that come out of Berkeley: LSD and [Unix] BSD. We don't believe this to be a coincidence. Doug Brown - Original Message - From: Darren Adams [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January 28, 2002 7:40 AM

RE: Session Swapping incident

2002-01-28 Thread Jeffry Houser
The obvious answer is Lock, although if it's something different I'm lost. Was the following message hit by the line monster? The original poster specified that he was locking, and based on his description he was locking properly. At 04:21 PM 01/28/2002 +, you wrote: in the words of

Re: Macromedia's destruction of the Allaire Site...

2002-01-28 Thread Pete Ruckelshaus
OMG, they didn't even use THEIR OWN content management system (Spectra)? Oh, the humanity! Pete - Original Message - From: tom muck [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, January 26, 2002 3:01 PM Subject: Re: Macromedia's destruction of the Allaire Site...

RE: Session Swapping incident

2002-01-28 Thread Neil Clark
Doh Repeat after me - if I _type_ session, application, or server, I should type lock. You suggested that it may be overkill to lock - he's saying it should always be the case... N __ Why Share? Dedicated Win 2000 Server ·

RE: Macromedia's destruction of the Allaire Site...

2002-01-28 Thread Neil Clark
AFAIK, the Old Allaire site used Spectra to build its own site - well a version of it. I think this was the original version of Spectra developed and coded by Jeremy himself. Neil __ Dedicated Windows 2000 Server PIII 800 /

CF4.5 Support?

2002-01-28 Thread Tim Stadinski
Does anyone know how long MM plans on supporting CF4.5.x? We are in the process of planning our migration to CF5/Neo and I would like to know if we need to expediate this. thanks Timothy Stadinski Senior Software Engineer Afternic.com [EMAIL PROTECTED]

Re: IIS 5 on Win 2K help

2002-01-28 Thread Jim McAtee
One of the better resources is www.iisfaq.com Jim - Original Message - From: Phillip Broussard [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, January 28, 2002 8:10 AM Subject: OT: IIS 5 on Win 2K help Does anyone know of some good resources that could help a beginer

RE: IIS 5 on Win 2K help

2002-01-28 Thread Christopher Olive
? why would you use an ISP like that if you're running a public webserver for multiple clients? and how do they manage to do that anyway? if you're using NAT, you should handle it at the NATting level, not the webserver level. christopher olive, cto, vp of web development cresco

RE: extracting data from a huge text file (my update on it)

2002-01-28 Thread Sima Lee
Hi Chris and Andre, Now I made this java class code works on both CF4.5 and CF5.0. On both version the class file is OK, nothing needs to be changed. But changes should be made on the JavaFileTest.cfm , the sample test file. For it to work on CF4.5 just take out the cfflush tag in the

Re: SQL query help

2002-01-28 Thread Douglas Brown
P.S have you tried just putting it into query analyzer? select * from main_table where datestamp '12/01/2000' If so did it work? There are two major products that come out of Berkeley: LSD and [Unix] BSD. We don't believe this to be a coincidence. Doug Brown - Original Message

RE: SQL query help

2002-01-28 Thread Darren Adams
Even though the datestamp field is a date/time field in access I still get this error message. ODBC Error Code = 22005 (Error in assignment) [Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression. Data Source = marketing SQL = select * from main_table where

RE: RE: Macromedia.com

2002-01-28 Thread Earl, George
And we get to play with the next releases of all the products . . . George [EMAIL PROTECTED] Perhaps a group of us should get together and submit a proposal to Macromedia for the developer site and see if they'd contract it out to us. That way we get the site we want, they get happy

fileExists for multiple files

2002-01-28 Thread Gilbert Midonnet
I've gone through my books, went to my favorite cf site cfhub, and did various google searches but am unable to solve a problem. I have a calendar script which displays all 12 months of the year at once. The script separates previous months from the current month from future months. I would

RE: SQL query help

2002-01-28 Thread Michael Blair
Try reversing the mm/dd/yy into the db and see. -Original Message- From: Darren Adams [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 10:44 AM To: CF-Talk Subject: RE: SQL query help Even though the datestamp field is a date/time field in access I still get this error

Login forms

2002-01-28 Thread Chris Luksha
I am new to CF and wondering if there is a way to have a login page that would be accessed when a user comes to any page in the application, (Say they bookmarked a page deeper than the root,) and the user would be sent to the originally requested page after logging in. ie. User goes to

Re: Best way to store credit cards in database?

2002-01-28 Thread Michael Ross
here here, all we keep are the last 4 numbers.let the banks worry ... [EMAIL PROTECTED] 01/27/02 07:00PM Don't store the credit card numbers at all. Just process the transac tion immediately and store the rest of the order information. - Original Message - From: Jeff Fongemie

Re: Macromedia's rebuilding of the Allaire Site...

2002-01-28 Thread Jon Hall
Did you expect them to change overnight? I believe Matt already mentioned that a lot of the current site is being redone in CF. Besides it makes no sense at all to use CF if the majority of your programmers have java/jsp expertise. I'd bet that before the merger CF developers were definitely a

Re: IIS 5 on Win 2K help

2002-01-28 Thread Tristram Charnley
We have one external IP address mapped to multiple domains. Is that so unusual? Tristram Charnley --- [EMAIL PROTECTED] Allaire Certified ColdFusion Developer - Original Message - From: Christopher Olive [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: SQL query help

2002-01-28 Thread Darren Adams
I think it was just that id didnt like the value in quotes !! -Original Message- From: Michael Blair [mailto:[EMAIL PROTECTED]] Sent: 28 January 2002 16:54 To: CF-Talk Subject: RE: SQL query help Try reversing the mm/dd/yy into the db and see. -Original Message- From: Darren

RE: Session Swapping incident

2002-01-28 Thread Andre Turrettini
First off, I find sessions locking to be the most annoying thing in the world and thus use databased client vars. If you think theres even a slight chance of moving to a clusterd environment, then this is the time to switch. It ends up with cleaner code so you might want to try it anyway.

RE: Login forms

2002-01-28 Thread Michael Blair
Try this: CFSET #Page_Type# = Logon_approved cflocation URL=/photos/addphoto.cfm?Page_type=#page_type# It will allow you to point a user using CFLocation, then send variables t o verify they are supposed to be their. You cold also recheck the cookie. Michael

CF mail client

2002-01-28 Thread Jeff Britts
Anyone know of a freeware CF based mail client (before I go ahead and write it myself) __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

RE: Session Swapping incident

2002-01-28 Thread Jeffry Houser
I was either unclear or you misunderstood what I originally intended. I meant that if there are only two session variables it may be overkill to copy them into variables scope to avoid locking within the page. At 04:31 PM 01/28/2002 +, you wrote: Doh Repeat after me - if I _type_

RE: Login forms

2002-01-28 Thread Neil Clark
Yep, try this http://devex.macromedia.com/developer/gallery/info.cfm?ID=CA347532-2830-11D4 -AA9700508B94F380method=Full this is a script which I have been using for years and it v.v.good. __ Get Your Own Dedicated Windows

RE: extracting data from a huge text file (my update on it)

2002-01-28 Thread Andre Turrettini
Thanks Sima, Thats some pretty cool functionality. Thanks again for debugging it. I'll look forward to using it. DRE -Original Message- From: Sima Lee [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 9:48 AM To: CF-Talk Subject: RE: extracting data from a huge text file (my

RE: UltraDev

2002-01-28 Thread Neil Clark
You could also try CF_Debug v3.0 from pengoworks.com thats good. __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

Re: CFSET

2002-01-28 Thread phumes1
Hi, I want to be able to replace some text within a variable with the code below: The return string of url.filename in this example is d:\directory1\sub-directory1\filename.dat #url.filename# cfset FileName = ListLast(url.filename, \) cfset DirPath = Left(url.filename,

Changing access

2002-01-28 Thread Janine Jakim
I have an application where users edit information each quarter. Once the end of quarter date is reached they can no longer enter any data- it becomes view only. On occassion these users need to go in and fix errors in the past quarter(s). I need a way for the admin to open it up for them to

Re: Login forms

2002-01-28 Thread Jeffry Houser
Yes, this is a common application. I describe how to do this in Instant ColdFusion (my 1st book), but the basics are: Create a log-in page. When the user logs in, set a session variable, something along the lines of 'IsLoggedIn' or if you are dealing with group level access, I like to

RE: Session Swapping incident

2002-01-28 Thread Neil Clark
ahh! :-) __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb FAQ:

RE: IIS 5 on Win 2K help

2002-01-28 Thread Mark A. Kruger - CFG
In my experience NAT is a common practice - and useful for a number of reasons. The way we handle it is we have an internal and external DNS server. When we are inside the pix (using the NAT address) we are pointed to the internal DNS - which then resolves www.xxx.xxx to 10.x.x.x (non-

RE: SQL query help

2002-01-28 Thread Chris Sinkwitz
Darren, since you are using an Access db go into your Access program. Start to create a query to return the value you want. Then look at the SQL of this query you created in Access. Access doesn't use standard SQL and has a lot of different keywords. So this will get you on the right track

RE: Login forms

2002-01-28 Thread Chris Luksha
So far I seem to be getting great responses, but none seem to address the actual problem. I want the user to be sent to the page that he originally requested after logging in. It should not matter what page he tried to get to. He should go to that page, not a page that is programmed

Re: CF mail client

2002-01-28 Thread Tracy Bost
Take a look at http://www.advancedwebmail.com/ . I evaluated this one about a year half ago before deciding on one writt en in PHP. I'm sure it has come a long ways though. Quoting Jeff Britts [EMAIL PROTECTED]: Anyone know of a freeware CF based mail client (before I go ahead and write

RE: Login forms

2002-01-28 Thread Perez, Bismark
since no matter what, they are first going to hit the page that you don't want to display without first login in, then on that page (before you send then to the login page) set a client variable (or session, if you are not using distributed computing) to the name of the page they should return

RE: Login forms

2002-01-28 Thread Dave Watts
I want the user to be sent to the page that he originally requested after logging in. It should not matter what page he tried to get to. He should go to that page, not a page that is programmed statically into the login page. This is pretty simple. Track the requested page URL as a

Re: Login forms

2002-01-28 Thread Stephen Moretti
Chris, So far I seem to be getting great responses, but none seem to address the actual problem. I want the user to be sent to the page that he originally requested after logging in. It should not matter what page he tried to get to. He should go to that page, not a page that is

Re: Login forms

2002-01-28 Thread Scott Brady
I want the user to be sent to the page that he originally requested after logging in. It should not matter what page he tried to get to. He should go to that page, not a page that is programmed statically into the login page. I'm working on an app that does this now. The way I have it

Re: Best way to store credit cards in database?

2002-01-28 Thread Chad Gray
What about return visitors that want to store their CC number? MD5 hash on the number? then store it in the database? At 11:56 AM 1/28/2002 -0500, you wrote: here here, all we keep are the last 4 numbers.let the banks worry ... [EMAIL PROTECTED] 01/27/02 07:00PM Don't store the

Re: Macromedia.com

2002-01-28 Thread Matt Brown
Hi just wanted to alert you that there is a developer site at Macromedia.com at: http://www.macromedia.com/desdev/developer/ This is going to be our primary location for developer articles and reviews and all that. You should take a look here. There is the MM branding to the site, but our

RE: Best way to store credit cards in database?

2002-01-28 Thread Brendan Avery
it's generally a bad thing to store credit card numbers, but if you really wanna, try using something like pgp and have the passphrase be a product of their password. of course don't store the password ever either (that should be asymmetrically hashed ala md5 or stronger, preferably with some

RE: Best way to store credit cards in database?

2002-01-28 Thread Kurt Ward
Depends on how the transactions are set up and how complicated you want to make it. A project I had in the past that wanted return customers to have the ability to store CC numbers. Card transactions were not real-time, so what we had was a bit field indicating whether or not the customer had a

RE: Login forms

2002-01-28 Thread Jeffry Houser
At 12:23 PM 01/28/2002 -0500, you wrote: So far I seem to be getting great responses, but none seem to address the actual problem. I want the user to be sent to the page that he originally requested after logging in. It should not matter what page he tried to get to. He should go to

RE: IIS 5 on Win 2K help

2002-01-28 Thread Christopher Olive
no. that was my original point. if that's your case, you shouldn't have to monkey with etc/hosts. christopher olive, cto, vp of web development cresco technologies, inc 410.931.4092 http://www.crescotech.com -Original Message- From: Tristram Charnley [mailto:[EMAIL PROTECTED]] Sent:

RE: IIS 5 on Win 2K help

2002-01-28 Thread Christopher Olive
i understand NAT (and the point of using NAT). my only question was about the example provided. i didn't understand to what tristram was referring. christopher olive, cto, vp of web development cresco technologies, inc 410.931.4092 http://www.crescotech.com -Original Message- From:

Re: Login forms

2002-01-28 Thread Douglas Brown
There is a tag for this, it is based on fusebox, but can be modified for your needs. You can find it here it's called ( returnfuseaction ) http://www.fusebox.org/index.cfm?fuseaction=learn.gallery This would be placed in the page before the login request. CF_RETURNFUSEACTION ACTION=set

Integrating the Full Verity K2 Server with CF

2002-01-28 Thread Garza, Jeff
Has anyone out there integrated the Full Verity K2 Server with ColdFusion? We are looking at purchasing the full version of Verity K2 to augment our intranet search/cataloging capabilities. I am curious to hear about your nightmares/success stories in the implementation. Any issues wrapping the

Sessions - Maybe a stupid question?

2002-01-28 Thread jgrubb
I am setting up a portal with another server where that server submits an HTTP POST request to my application, I do a bunch of queries and send the results back in an XML output. My question is: If multiple users on the other end submit requests to my server and a request hits my server before

Re: Sessions - Maybe a stupid question?

2002-01-28 Thread Jeffry Houser
At 01:16 PM 01/28/2002 -0500, you wrote: I am setting up a portal with another server where that server submits an HTTP POST request to my application, I do a bunch of queries and send the results back in an XML output. My question is: If multiple users on the other end submit requests to my

Re: Best way to store credit cards in database?

2002-01-28 Thread Michael Ross
Store everything but the number and communicate with the users why yo u are not storing them. Asking them to retype everything is a pain b ut just the CC, na, I don't think you would here anyone complain, the y would probably like that... [EMAIL PROTECTED] 01/28/02 12:48PM What about return

Re: Best way to store credit cards in database?

2002-01-28 Thread Bill Davidson
Sorry about that. I made the all ever mistake of sending emails without thinking them through... several times yesterday - probably came from having to build a rather large app all in one day, on a Sunday, while acting as creative director for a show open for Discovery Channel. My plate's full!

Crystal Reports help

2002-01-28 Thread Angel Stewart
Hi guys and gals, Is there anyone out there who is fairly good in Crystal Reports? I am crashing ehre trying to hurry down what should be a simple report. I have three tables..tblMainEntry, tblEquipEntry and Equipment_tbl. I just add all three tables and I get the error that there are

cfqueryparam error w/ oracle

2002-01-28 Thread Ricq Pattay
My query is this: = cfquery datasource=my_dsn name=get_users select * from vcross_user where user_id = CFQUERYPARAM VALUE=#x# CFSQLTYPE=CF_SQL_NUMERIC /cfquery = The error I receive is this:

OT - User Friendly?

2002-01-28 Thread Mary Fowler
Has anyone had to come up with contract language that helps nail down the elusive term 'user friendly' in a fixed priced contract? It is a point being negotiated at this time with a client. The quote has to be fixed cost. The quote has to be done fast. The client uses the term a lot in thier

Check Writing

2002-01-28 Thread S V
I am working on an application that prints out checks and need to spell out the amount. For example, if the amount is $3022.33 , I need to spell out to Three thousand and twenty two dollars and thirty three cents. Does any one know of a tag that can do this??? Thanks

RE: OT - User Friendly?

2002-01-28 Thread Chris Combs
One way around this delimma is to make a business assessment or design specs as the next step in a multi-step process, so you dont get screwed. Sounds very familiar, like someone who is trying to get something for nothing. :) Chris Combs New Creation Consulting -Original Message- From:

RE: Crystal Reports help

2002-01-28 Thread Hays, Duncan
I haven't practiced much with Crystal but... I would start fresh using the Crystal wizard. Select all 3 tables you need and make sure you relate them. I've never seen a multiple starting points message but that sounds like you have unrelated tables. Make sure you make all tables and columns

RE: OT - User Friendly?

2002-01-28 Thread Zac Belado
They are asking us what the 'industry standard' wording for 'user friendly' is. I say we need more design specifications. Sound familiar? Too familiar. I'd lose the phrase entirely. There is no (AFAIK) industry specification for what user friendly is. The client needs to define what

Re[2]: Macromedia.com

2002-01-28 Thread Jim Priest
Why the HUGE flash nav block that does nothing more than a few (3 exactly) lines of simple HTML code would do in a lot less space? It eats up at least 1/3 of my screen at 1024x768 and serves little purpose other than to remind everyone we're on Macromedia's (we make Flash) site. Otherwise I

Problem

2002-01-28 Thread Michael Ross
Okay so I think I have a problem. I found out that I have 3 folders on my server that shouldn't be there. they are called com1 , com 1, pubstealers suck. NO matter what I do I can't delete them...I would really like to not have to format my HD either I can't find much on the net

RE: OT - User Friendly?

2002-01-28 Thread Dan Phillips
The more specifics you have the better IMHO. This clearly outlines what the client expects and what you are required to build. Using a vauge term leaves too many doors open for disputes down the road. -Original Message- From: Mary Fowler [mailto:[EMAIL PROTECTED]] Sent: Monday, January

RE: Sessions - Maybe a stupid question?

2002-01-28 Thread jgrubb
Thanks for the answer. Just wanted to reply to the list to close the thread. Boy, do I feel stupid. I've used session variables so much in the browser-related end of the application, I just totally went on auto-pilot. I now realize what a goof I made in trying to use session variables for post

RE: Problem

2002-01-28 Thread Brendan Avery
sounds like you got war ftp'd (NOT to be confused with jgaa's war-ftp server) i had a box that i hadn't secured much or checked in a while and noticed i had about 40 odd folders in my ftp root which had been in use as a place for folks uploading and downloading cracked apps and games; there

Re: Problem

2002-01-28 Thread W Luke
Ross, I take it you've virus scanned? Will - Original Message - From: Michael Ross [EMAIL PROTECTED] Newsgroups: gradwell.lists.cftalk Sent: Monday, January 28, 2002 7:47 PM Subject: Problem Okay so I think I have a problem. I found out that I have 3 folders on my server that

  1   2   3   >