Re: stripping output from Custom Tag

2000-10-21 Thread Jim McAtee
Im using a tag from the Allaire Developers Exchange , it is being called using CFMODULE. This tag outputs a string of images, for some reason (bug I believe) after the images there is a /tr/table being written out and it is screwing up my page layout. Is there some way I can strip this off,

Re: MSDE on Win2K... anyone successfully install it?

2000-10-21 Thread Jim McAtee
MSDE appears to the developer exactly like SQL Server. It does not come with SQL Enterprise Manager, so you'll either have to get a copy of that, or use MSAccess 2000 as the front end. Using Access, you'll set up a Project that connects to the MSDE engine. The nice thing about using Access

Re: number of occurances in a string

2000-10-16 Thread Jim McAtee
Because of the way Allaire chose to implement the list functions, this also doesn't work correctly if any of the desired characters are back-to-back, or at the beginning or end of the string, as in: ListLen("abc;;def;ghi;jklmn;;opqrstuv;wxyz;", ";") You'd want it to count 8, but it returns 6.

Re: URL.RequestTimeout

2000-10-14 Thread Jim McAtee
I have a specific page that I know will take longer than 60 seconds to process. I want to change the Timeout for that page. The only way I know how is to pass "mypage.cfm?RequestTimeout=300" (for example) in the URL. I tried setting cfset URL.RequestTimeout=300 on the first line of the page but

Re: IP Sort

2000-10-13 Thread Jim McAtee
I have a bunch of IP numbers stored in a VarChar field in SQL7. When I sort them, it sorts like text, as it should, with not great results. Is there a quick and easy way to get the IP numbers to sort like a number? Pad out each octet with 0's. 206.168.47.6 = 206.168.047.006. Create another

Re: CFX Tags

2000-10-13 Thread Jim McAtee
Nope. - Original Message - From: "Gary J. Groomer" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 13, 2000 7:18 PM Subject: CFX Tags Is there a way to use a CFX tag without registering it through the ColdFusion administrator? The site that I want to use the

Re: pointing different domain names to different sub directories on the one server

2000-10-12 Thread Jim McAtee
interland came back and told me it would coast me 450 per month to upgrade to a higher level service in order to be able to have the multiple domains pointing to specific subdirectories my solution at this stage is to create a splash / doorway page for the site and have on it links to

Re: OT SCHEDULED actions

2000-10-12 Thread Jim McAtee
Hello, Since most servers can not allow accesss to the CF Administrator is = CFSCHEDULE the way to produce timed functions? I'm trying to send a = series of emails periodically based on a flag placed in my data base for = incomplete functions. Any help appreciated, Mike If I'm not

Re: Reset application.log file regularly?

2000-10-11 Thread Jim McAtee
- Original Message - From: "Chris Norloff" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, October 11, 2000 2:29 PM Subject: "Reset" application.log file regularly? I'd like to save the application.log file regularly, then delete the file from the log directory -

Re: Developer Directory?

2000-10-11 Thread Jim McAtee
- Original Message - From: "Michael Dinowitz" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, October 11, 2000 3:45 PM Subject: Re: Developer Directory? Hm. So if I move HoF to California, every piece of spam sent through it or to people on it would net me $50?

Re: CFSTOREDPROC and caching

2000-10-11 Thread Jim McAtee
It's an unfortunate omission that CFSTOREDPROC doesn't support the query caching introduced in CF 4. However, if you're using a platform that supports the ODBC call syntax for executing stored procedures through the CFQUERY tag, you can call your stored procedure and have it cached:

Re: CF 5.0???

2000-10-11 Thread Jim McAtee
it's not very likely that you'll be seeing CF Server 5.0, which is a complete rewrite, That's the first I've heard anyone mention that 5.0 would be a "complete rewrite". Wasn't 4.5 a complete rewrite? How often do they need to start from scratch? That's genuinely sobering news if it's true

Re: OT Increasing Traffic

2000-10-11 Thread Jim McAtee
You guys are in the development field... how do you go about increasing traffic to your sites? What do you tell your clients when they ask how to increase traffic? Any ideas other then meta tag optimization and search engines, etc? One thing we're beginning to notice is that meta tags and

Re: cfx_image

2000-10-10 Thread Jim McAtee
A commercial alternative is www.jasc.com for Image Robot. Can be called from CF or run stand-alone. How can Image Robot be called from CF? Or do you mean spawning the executable? Jim -- Archives:

Re: padding string with blanks

2000-10-09 Thread Jim McAtee
I need to pass a string to a bar-coding process and it must have a fixed length of 18, so if the string length is 10 I need to pad 8 blanks in front of it. Ive been playing with the below code. I know it doesn't work but its a start, what happens is the value of blanks get appended to the

Re: Splitting lists

2000-10-09 Thread Jim McAtee
anyone run backend events in coldfusion? I mean, maybe you're thinking i'm using a hammer to dig a hole, but for the time being I am. I've got to move stuff from a foxpro download to my SQL db and I don't know Java. I am noticing that exceptionally long requests (4 to 40 hours) slow down as

Re: Directory Listing?

2000-10-08 Thread Jim McAtee
I have to create a list of files to Display. Also want to add small descriptions and Author pulled from a database that is updated when file is uploaded from a form. However not all files will have an author and not all will have a description. In the table display of the files (which is

Re: How To Determine the URL users used to view my site ??

2000-10-08 Thread Jim McAtee
I do not think I explained myself correctly I am trying to determine how to know what url the user is using to look at my site as I have many domains pointing to the one site The best way to determine what information is available to you is to turn on debugging for your IP address and see

Re: accessing a query as an array

2000-10-06 Thread Jim McAtee
I am trying to populate an array from a query and I am running into = problems... From what I have infered from the CF docs, CFQuery's are actually = arrays.=20 If we assume that then, #QueryName[1][4]# should return the data in the = first row and the fourth column..right?? My

Re: Perl-based BB's for comparison

2000-10-06 Thread Jim McAtee
I'm looking for some examples of good Perl-based web bulletin boards (threaded discussions) for comparison purposes. Which are the more popular among these? Also, which are the better indexing systems to run on Unix/Apache? Do most people use SWISH-E? Ultimate Bulletin Board

Cached Queries

2000-10-06 Thread Jim McAtee
Is it advisable to use locking when referencing a cached query? I would assume a cached query fits the bill of being shared data. If so, then wouldn't the lock need to be around the cfquery statment as well as references to any query values? Does modifying the contents of a cached query

Re: Reliability of CFSCHEDULE in CF 4.5.1. SP2?

2000-10-05 Thread Jim McAtee
Damon, Will increasing the number of simultaneous requests make the scheduler any more reliable? Jim - Original Message - From: "Damon Cooper" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, October 05, 2000 12:30 PM Subject: RE: Reliability of

CFFTP Error codes/messages

2000-10-05 Thread Jim McAtee
Is there a published list of CFFTP error codes and their corresponding meanings? For some reason whenever I get an error, no matter the number, I'm always getting the same message. cfoutputERROR #cfftp.errorcode#: #cfftp.errortext#"/cfoutput ERROR 1: No response from server. ERROR 15: No

Re: CFFTP Error codes/messages

2000-10-05 Thread Jim McAtee
- Original Message - From: "Jim McAtee" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 05, 2000 3:19 PM Subject: CFFTP Error codes/messages Is there a published list of CFFTP error codes and their corresponding meanings? For some r

Re: Realsim and 4D Arrays

2000-10-05 Thread Jim McAtee
I'm hoping your hi-fi example is just a bad analogy. I'd represent it as a structure or a one dimensional array with 10 items. Jim - Original Message - From: "Lee Borkman" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 06, 2000 9:45 AM Subject: RE: Realsim and

Re: CF Arrays question

2000-10-05 Thread Jim McAtee
I am playing around with arrays for the first time and I get this error when I try to initialize an array with more than 3 columns. Can arrays only have 3 columns? jon Error Diagnostic Information Parameter 1 of function ArrayNew which is now "4" must be an integer in the range 1 to 3

Re: Reliability of CFSCHEDULE in CF 4.5.1

2000-10-04 Thread Jim McAtee
Here's an example of a batch file that you could schedule via AT or WinAT (or any other non-CF scheduling service). The first two lines set NT environment variables. QUERY_STRING is anything that might appear after the ? in a URL calling your template. You'll probably need the double quotes

Re: UNC Paths...

2000-10-03 Thread Jim McAtee
Most importantly, you have to run CF server under a domain user account, not as local SYSTEM. The SYSTEM account cannot access network shares. The quick and dirty way to do this (not recommended) is to use a domain administrator account. Otherwise, there's a good article at www.defusion.com on

Does anyone know how this REALLY works?

2000-10-03 Thread Jim McAtee
I'm trying to something dead simple with CFPOP. I retrieve all of the email from a mailbox, loop through the messages, parse the message and place data from the message body into a database. To avoid importing the data more than once, I delete the message when I'm done with it. For some

Re: Does anyone know how this REALLY works?

2000-10-03 Thread Jim McAtee
That might be a possibility. I know this scenario is possible if CFPOP is running and you begin deleting messages from the mailbox using another email client. The template would be gauranteed to crap out if another copy of the template were executing simultaneously. Jim - Original Message

Reliability of CFSCHEDULE in CF 4.5.1

2000-10-03 Thread Jim McAtee
Is CFSCHEDULE any more reliable in v4.5.1 than in past releases? I've never trusted it, always using Windows AT to run batch files launching templates. Just wondering if Allaire has finally gotten a handle on all the past problems. I need to develope somethiing for an environment running 4.5.1

Re: Does anyone know how this REALLY works?

2000-10-03 Thread Jim McAtee
Doug, This and the previous posts verify my understanding of how CFPOP operates with message numbers. If I knew with absolute certainty that my template would never throw an error, then I'd use exactly the technique that you've shown. Like you say, then I'm only calling CFPOP twice. The

Re: CFQuery in 4.5 Truncating SQL7 varchar field

2000-10-03 Thread Jim McAtee
Yep. You're using an older SQL ODBC driver that released before SQL 7. SQL 6.5 had a 255 character limit in varchar fields. Update the driver. Jim - Original Message - From: "Mike Dorr" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, October 03, 2000 5:18 PM

Re: Bind problems

2000-10-02 Thread Jim McAtee
Has that domain been registered? What most developers do is create subdomains beneath a domain that they already own. For example, a web development company named 'Bob's Development' might have as their main domain name 'bobdev.co.uk'. Then, if needed, they create subdomains for client test

Re: Reading a file one line at a time with CFfile?

2000-09-30 Thread Jim McAtee
With CFFILE you're only able to read the entire file into a variable. Treat the file contents as a list, using carriage returns and/or line feeds as delimiters. Because of the way CF handles lists and delimiters, the following code works regardless of whether carriage returns, line feeds or any

Re: cutting edge or what ???

2000-09-29 Thread Jim McAtee
Anybody successfully running CF 4.0.1 on Win2K? I'm not ready to move to CF 4.5.1, but the OS upgrade is starting to look good. Jim - Original Message - From: "Simon Horwith" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, September 29, 2000 11:10 AM Subject: RE:

Re: ColdFusion SP2

2000-09-27 Thread Jim McAtee
Run 4.0.1 until Allaire is finished beta testing 4.5. Or are you one of their paying beta testers? Jim -Original Message- From: HappyToad.com [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Wednesday, September 27, 2000 10:31 AM Subject: RE: ColdFusion SP2 I thought it was

Re: access to SQL server woes

2000-09-25 Thread Jim McAtee
I've only set up a SQL datasource a few times and haven't yet had any luck doing it from the CF Administrator. On the Administrator's 'Edit ODBC Datasource' page (in CF 4.0.1 anyway), under 'Login Info' there's form field where you can fill in the database. One other thing that tripped me up

Re: SQL Help

2000-09-25 Thread Jim McAtee
) or =* (include all rows in second table) -Original Message----- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 24, 2000 4:10 PM To: CF-Talk Subject: SQL Help Try it again, with a subject this time... Can't figure out why the following query behaves like it does, but I'm

Re: Flushing mech..in CF

2000-09-25 Thread Jim McAtee
n u please explain whats this 'jiggle the handle'. I couldnt get it. --- Jim McAtee [EMAIL PROTECTED] wrote: You need to jiggle the handle. Jim -Original Message- From: Venkata Ramakrishna [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Saturday, September 23, 2000 11:56 P

Re: Using a TARGET in a CFLOCATION URL

2000-09-25 Thread Jim McAtee
The thing to keep in mind is where the action is processed. A CFLOCATION is executed on the server, by CF, and CF has no way to know (and doesn't care) into which window the browser is going to load the requested page. A target="xyz" in an HREF is processed by the browser. If you need a new

Re: checkboxes in a list

2000-09-25 Thread Jim McAtee
Greg, Assuming your list of user id's is also named 'userPermissions', try: input type="checkbox" name="userPermissions" value="userID"cfif ListFindNoCase(userPermissions, userID) checked/cfif#userID# Jim -Original Message- From: Albert, Gregory Mitchell (Greg) [EMAIL PROTECTED] To:

Re: Flushing mech..in CF

2000-09-24 Thread Jim McAtee
You need to jiggle the handle. Jim -Original Message- From: Venkata Ramakrishna [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Saturday, September 23, 2000 11:56 PM Subject: Flushing mech..in CF Hi, Can somebody please enlighten me on the flushing mechanisms available in CF.

No Subject

2000-09-24 Thread Jim McAtee
Can't figure out why the following query behaves like it does, but I'm guessing there must be something fundamental about how SQL operates that I'm not comprehending. I've got a one:many relationship between table A and table B. Table B records represent "new for year" for a given record

Re: Newbie CFIF for range of data

2000-09-24 Thread Jim McAtee
If you're not worried about the number being negative: cfif data gte 2000 cfset words = "large" cfelseif data gte 1000 cfset words = "medium" cfelse cfset words = "small" /cfif Jim -Original Message- From: Olson, Kelly [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date:

SQL Help

2000-09-24 Thread Jim McAtee
Try it again, with a subject this time... Can't figure out why the following query behaves like it does, but I'm guessing there must be something fundamental about how SQL operates that I'm not comprehending. I've got a one:many relationship between table A and table B. Table B records

Re: SQL Help

2000-09-24 Thread Jim McAtee
Yep. Left, right and inner joins all produce the same result. Jim -Original Message- From: Mark Warrick [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Sunday, September 24, 2000 4:15 PM Subject: RE: SQL Help Silly question but have you tried a right outer join? SELECT A.*,

Re: Discussing Rates in a Public Forum -- was National Radio Commercial

2000-09-24 Thread Jim McAtee
Thanks for the advice, Steve. I'm raising my fees. (Now your in for it). ;-) Jim -Original Message- From: Steve Pierce [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Date: Sunday, September 24, 2000 6:13 PM Subject: RE: Discussing Rates in a Public Forum -- was National Radio

Re: access to SQL server woes

2000-09-24 Thread Jim McAtee
I recently got this error when I failed to change the default database during the ODBC setup. If you do the ODBC setup from the control panel, and within the setup wizard you fail to notice this step, then you're likely pointing your ODBC datasource at the 'master' database. I believe the

CFPOP Problems

2000-09-21 Thread Jim McAtee
I'm having two problems using CFPOP under CF 4.5.1 SP1: First, I sometimes receive an error when deleting messages. I do a CFPOP, retrieve multiple messages, loop through them and do my thing. Then when I try to use CFPOP to delete a message (I delete each one inside the loop), I'll get this

Re: CFPOP Problems

2000-09-21 Thread Jim McAtee
hing to do is to remove the messages in reverse order, so using the cfloop from=Total to=1 step=-1 will do the trick:-) regards Andrew Scott ANZ eCommerce Centre * Ph 9273 0693 * [EMAIL PROTECTED] -Original Message----- From: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: 22 September 2000 12:13 T

Destroying a Query [CF-Talk]

2000-09-20 Thread Jim McAtee
Can I release a query that has been created within a template and is no longer needed? (CF 4.0.1) A couple of other questions: Are queries in the variables scope or do they have their own scope? If I can release, delete, undefine, redefine, or otherwise get rid of the query, does CF actually

Associative Array Indexing [CF-Talk]

2000-09-20 Thread Jim McAtee
Are the following ways of addressing an associate array key equivalent? The numeric values are what I'm unsure of. Does CF simply convert them to strings for use as the key? cfset region = 7 cfset aa = StructNew() cfset aa[7] = "West" cfset aa["7"] = "West" cfset aa[region] = "West"

Re: [CF-Talk] Random Images-Resources for Information?

2000-09-20 Thread Jim McAtee
Depends what you're thinking when you say random. If you mean calling the function 7 times always pulls up 7 different numbers, then that is NOT a random sequence. By chance (err... 'randomness') you could conceivably pull up the same number 7 times in a row (or a hundred times in a row).

Re: [CF-Talk] Incorrect use of CFPARAM?

2000-09-18 Thread Jim McAtee
That's the way it should work. You shouldn't really need to set default values passed in from a select box, since a value will always be passed. By default, the browser will preselect the first one, unless told otherwise, and that value will be passed if the user doesn't change it. I'd guess

Re: MS SQL 7 Varchar

2000-09-17 Thread Jim McAtee
: Jim McAtee [mailto:[EMAIL PROTECTED]] Sent: Friday, September 15, 2000 10:19 AM To: [EMAIL PROTECTED] Subject: MS SQL 7 Varchar I've got a MS SQL 7 table with some fields defined as Varchar(510). When I retrieve them in CF Pro 4.01 via ODBC, they get truncated to 255 characters. Is there a reason

CFPOP's MessageNumber

2000-09-17 Thread Jim McAtee
If I do a CFPOP with ACTION="GetAll" and then later do an ACTION="Delete", how does CF keep track of which message I'm referring to? What if in the meantime another process had deleted one or more of the messages returned in the original call to CFPOP - will message #10 still be the message I

Re: Null values within lists

2000-09-16 Thread Jim McAtee
Replace all the delimiters in the list with spacedelimiterspace. Then use Trim() to get rid of the extra spaces. cfset List = ",2,3,4, , ,7,,913,,," cfoutput Original List: #List#brbr cfset List = Replace(List, ",", " , ", "all") cfloop index="i" from="1" to="#ListLen(List)#" Item ## #i#:

Re: WOT: Allaire stock price

2000-09-16 Thread Jim McAtee
-Original Message- From: Adrian Cooper [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Saturday, September 16, 2000 1:00 PM Subject: Re: WOT: Allaire stock price - Original Message - From: "Len Conrad" [EMAIL PROTECTED] Sent: Saturday, September 16, 2000 7:39

MS SQL 7 Varchar

2000-09-15 Thread Jim McAtee
I've got a MS SQL 7 table with some fields defined as Varchar(510). When I retrieve them in CF Pro 4.01 via ODBC, they get truncated to 255 characters. Is there a reason for this? How about a workaround? Jim --

Application Variables in DB?

2000-09-15 Thread Jim McAtee
Can application variables be stored in a database (by CF, not by me) like client variables? This would be handy for persistence between application runs should the server be rebooted. Jim -- Archives:

SQL Varchar

2000-09-14 Thread Jim McAtee
I've got a MS SQL 7 table with some fields defined as Varchar(510). When I retrieve them in CF Pro 4.01 via ODBC, they get truncated to 255 characters. Is there a reason for this? How about a workaround? Jim --

Re: what happens after browser STOPS

2000-09-13 Thread Jim McAtee
Does a STOP send any type of explicit 'request' to the web server? Jim -Original Message- From: Aaron Johnson [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Wednesday, September 13, 2000 12:44 AM Subject: RE: what happens after browser STOPS Adrian, The query will

CFOBJECT Help

2000-09-12 Thread Jim McAtee
Sorry to post this again, but someone must have an idea what this error message indicates. Looking at it again, I realize it's a CF error, not a COM error. Any ideas? This is my first use of CFOBJECT. What does the "dll was not loaded" error message below mean? The dll is registered on the

Re: CFOBJECT Help

2000-09-12 Thread Jim McAtee
A... Very good point. The COM object is essentially a wrapper for the GoldMine API dll. That must be the dll that isn't loaded (and it's not, since GM is actually running on a separate machine, along with MS SQL). I think I'll try calling the COM object on the other machine using

Re: CFDIRECTORY Filtering?

2000-09-07 Thread Jim McAtee
You can't do this in the filter. Two workarounds: 1) Use a cfif within a loop over your query results. 2) rename the file before and after the call to cfdirectory. Jim -Original Message- From: Claremont, Timothy S [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Date:

Re: Is CF a high risk application?

2000-09-07 Thread Jim McAtee
You don't say if this is to be run on a dedicated ("managed"?) server or on a shared host? If the the hosting provider has such extreme reservations about hosting and supporting CF applications, then someone definitely picked the wrong host and you may be in for quite a nightmare if you run into

Re: CFLOCK on Session Variables

2000-09-01 Thread Jim McAtee
-Original Message- From: Kevin Miller [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED]; [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Thursday, August 31, 2000 6:57 PM Subject: RE: CFLOCK on Session Variables I love Cold Fusion, but this is a really rotten basket that screams of

Re: Which one will take?

2000-09-01 Thread Jim McAtee
The original question is just an example of the many questions raised in migrating CF, an application server so rooted in NT, to a UNIX environment. Regardless of whether it's a good idea or not, there must be very cut and dried (read 'predictable') behaviors in situations like this, and they

Re: IIS Locking Files

2000-08-31 Thread Jim McAtee
Dave, You might also try a different approach to naming the uploaded files. If possible, have your webcam upload the images with a unique filename. For example, instead of uploading as "thispic.jpg", append a timestamp, as in "thispic1405.jpg". Your CF template that displays the image could do

Re: CFLOCK on Session Variables

2000-08-31 Thread Jim McAtee
-Original Message- From: Zachary Bedell [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Date: Thursday, August 31, 2000 11:28 AM Subject: RE: CFLOCK on Session Variables Okay... Last time now... This is your server [holds up egg]. This is your server with out locking

CFLOCK with CFPARAM

2000-08-30 Thread Jim McAtee
Should one use CFLOCK around cfparam statements that access session variables? cfparm name="session.blah" default="yes" Jim -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

CFLOCK on Session Variables

2000-08-30 Thread Jim McAtee
A couple of general questions regarding locking session variables (CF 4.0.1): Does a CFLOCK with name="#session.sesionid#" only lock the variables in memory for that particular session, or does it lock all session variables for the application? The CF 4.0.1 documentation for CFLOCK has the

Re: Query Help - Using 'GROUP'

2000-08-29 Thread Jim McAtee
al Message----- From: Jim McAtee [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Tuesday, August 29, 2000 6:17 PM Subject: Query Help - Using 'GROUP' I've got a one to many relationship linking tables A - B - C. For each item in A (sales reps), I've got multiple record

Re: Blank pages

2000-08-28 Thread Jim McAtee
This looks like some generic page thrown out by the web server. I'd suspect that the CF/Website Pro communication somehow failed. I've seen IIS do something similar. Jim -Original Message- From: Howie Hamlin [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Monday,

Re: CF and WebTrends

2000-08-28 Thread Jim McAtee
-Original Message- From: Zachary Bedell [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Date: Monday, August 28, 2000 11:41 AM Subject: RE: CF and WebTrends -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Is there any problem with using WebTrends on a CF site? Can I track

Re: Basic Authentication: Logging off

2000-08-26 Thread Jim McAtee
Sounds as though you're saying that once a browser receives a 401 response, it will no longer send the previously used credentials. Now, say the user "logs off", but fails to log in as someone else. Would the browser send the original, valid credentials if the user goes back (in the same

Re: Basic Authentication: Logging off

2000-08-26 Thread Jim McAtee
authorized" response from the server. Regards, Howie - Original Message - From: "Jim McAtee" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 26, 2000 12:34 PM Subject: Re: Basic Authentication: Logging off Sounds as though you're saying that

Stored Procedure BLOCKFACTOR

2000-08-22 Thread Jim McAtee
Could someone explain how the BLOCKFACTOR parameter of CFSTOREDPROCEDURE is used. It's not clear to me how the maximum number of rows returned by a result set can be limited to 100 (according to the CF 4 documentation). What am I missing? Thanks, Jim

Re: Stored Procedure BLOCKFACTOR

2000-08-22 Thread Jim McAtee
to any givent SP call. Jim -Original Message- From: Bud [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Tuesday, August 22, 2000 7:48 PM Subject: Re: Stored Procedure BLOCKFACTOR On 8/22/00, Jim McAtee penned: Could someone explain how the BLOCKFACTOR parameter

Re: Let's Brag...

2000-08-21 Thread Jim McAtee
-Original Message- From: Steve Bernard [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Monday, August 21, 2000 5:05 PM Subject: RE: Let's Brag... Stephen, IPSec is one means to control/secure traffic to and from the server. The box is behind a proxy/firewall that

Re: portable logon scheme

2000-08-20 Thread Jim McAtee
Try something like this within application.cfm. This should work, since the include will be relative to application.cfm, not the base template. Redirect to session.attemptedpage upon a successful login. cfif not session.loggedin cfset session.attemtpedpage = cgi.script_name cfinclude

Re: Help with CFFTP

2000-08-19 Thread Jim McAtee
Are you sure you're making the connection? Does it work when everything is valid? If not, the very first thing I'd do is test by using an FTP client and see if you can connect and log in. Then, I'd hard code the server address, username, password, etc. to see if you can do it from CF.

Re: CF's Redheaded Stepchild

2000-08-18 Thread Jim McAtee
-Original Message- From: Chris [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Friday, August 18, 2000 11:28 AM Subject: Re: CF's Redheaded Stepchild At 01:15 PM 8/18/2000 -0400, you wrote: Good explanation, Benjamin. Rey... Another problem with ToysRUs was that they

Re: Mailing List

2000-08-18 Thread Jim McAtee
First you want to use a list server. Most NT mail servers include a list server, although more efficient, dedicated list servers can be had, especially under the Unix OS variations. If the list server has an API that CF can talk to, and you keep your addresses in some type of database that can

Re: CFMAIL and exchange server

2000-08-15 Thread Jim McAtee
- Original Message - From: Jim McAtee [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 08, 2000 8:39 PM Subject: Re: CFMAIL and exchange server Really? What is the one minute delay? I've always gotten mail almost instantly from templates using CFMAIL. (CF 3.x and 4.0.x) Jim

SQL: Using LIKE with and without a wildcard

2000-08-14 Thread Jim McAtee
As a rule, will their be a performance penalty using LIKE instead of = in SQL queries if there's NOT a wildcard in the expression? That is, if my users have the option of using wildcards in their searches (on multiple fields), is it better to detect the presence/absence of a wildcard and adjust

Re: CFMAIL and exchange server

2000-08-08 Thread Jim McAtee
Really? What is the one minute delay? I've always gotten mail almost instantly from templates using CFMAIL. (CF 3.x and 4.0.x) Jim -Original Message- From: Howie Hamlin [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Tuesday, August 08, 2000 4:00 PM Subject: Re:

Re: cffile

2000-08-08 Thread Jim McAtee
Use the FileExists() function or the CFDIRECTORY tag to see if the file exists after doing the delete. Jim -Original Message- From: Phim [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Tuesday, August 08, 2000 11:39 PM Subject: cffile Hi Everyone, I use CFFILE Tag

Re: How to pipe CF code to a file?

2000-08-07 Thread Jim McAtee
Use CFHTTP, which can save directly to a file. Jim -Original Message- From: Ryan [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Monday, August 07, 2000 4:18 PM Subject: How to pipe CF code to a file? Hello. I need to be able to execute a set of CF tags but send the

Re: Forwarding mail which is sent to unknown postboxes ?

2000-08-05 Thread Jim McAtee
First off, I'm assuming that you can control the mail server configuration at 'domain.com', correct? Usually, you'd set this up in the mail server's alias table for the domain. Depending on the mail server, you probably have the ability to use wildcards in the aliases, which can make managing

Re: Hosting Solutions???

2000-08-04 Thread Jim McAtee
Jon, Man, you nailed it. I suspect most of the "good" shared server CF hosting that exists right now is done by development companies for their clients, for exactly the reasons you've mentioned. Fairly safe if you're writing all the code running on the box. In a "blind" shared environment you

Re: [OT] IE 5.5 and CSS

2000-08-02 Thread Jim McAtee
I noticed similar in IE 5.5. I haven't had time to investigate it yet, but I've heard two things about IE 5.5. One, the implementation of CSS is more compliant with established standards. Two, it's much buggier that IE 5. So, either the CSS that used to work, doesn't anymore because it's been

Re: appropriate SQL 7 licensing for CF website

2000-08-01 Thread Jim McAtee
Good point. MS SQL Server is pretty cheap compared to comparably performing alternatives. If you're putting up a web site for "Joe's Bait Tackle" and absolutely must have the security of MS SQL Server then you have to be willing to pay for it. For those advocating the purchase of CALs instead

Re: Quirky Date Bug: MM/YY

2000-07-31 Thread Jim McAtee
What CF is doing is interpretting 08/03 as August 3rd of the current year. It automatically assumes that a date that looks like month/day is in the current year. When you enter something like 08/32, it gets "smart" and says that if it can't interpret it as month/day, then maybe it's supposed to

Re: Milking..., High Scalability and $1000 servers

2000-07-28 Thread Jim McAtee
What about registered CFX tags residing in CustomTags? Don't you also have to redefine the paths to the DLL's within the CF Administrator? Jim -Original Message- From: Erki Esken [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Friday, July 28, 2000 9:17 AM Subject: Re:

Re: High-Powered Scaling - Was Milking Every Last Drop...

2000-07-26 Thread Jim McAtee
Great post. One thing to add, and one question: 7. Get web log data off the servers nightly. Why store this junk on your web server? Archive it nightly to free space. Also, tune your web server to only log the stats you ABSOLUTELY need. Otherwise you're wasting valuable resources on logging

Re: application.cfm

2000-07-25 Thread Jim McAtee
No. It was a dream. Pay no attention to the man behind the curtain. -Original Message- From: Parker, Kevin [EMAIL PROTECTED] To: CF Talk (E-mail) [EMAIL PROTECTED] Date: Tuesday, July 25, 2000 12:05 AM Subject: application.cfm Correct me if I'm wrong but I seem tor recall that in the

Re: Random Numbers and Banner Managers

2000-07-23 Thread Jim McAtee
That looks correct. You should probably also seed the random number generator. I'm not sure if you need to do this every time the code is called, but it can't hurt. Make sure you run a large test of the code's "randomness" before you conclude whether it works or not. Just create a loop that

CFHTTP to Pull Images?

2000-07-14 Thread Jim McAtee
Can CFHTTP be used to capture images from a remote web server? If not, is there anything in the tag gallery? Thanks, Jim -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

<    5   6   7   8   9   10   11   >