RE: mysql EXPLAIN [tablename] in CFQUERY?

2002-08-21 Thread Lon Lentz
I run this: cfquery name=TableColumns datasource=#Client.Database# explain #form.tablename# /cfquery cfdump var=#TableColumns# And get this: Error resolving parameter TABLECOLUMNS ColdFusion was unable to determine the value of the parameter. This problem is very likely due to

RE: mysql EXPLAIN [tablename] in CFQUERY?

2002-08-21 Thread Lon Lentz
, MySQL doesn't use 'explain table' it uses 'describe table' On Wed, 21 Aug 2002, Lon Lentz wrote: I run this: cfquery name=TableColumns datasource=#Client.Database# explain #form.tablename# /cfquery cfdump var=#TableColumns# And get this: Error resolving parameter TABLECOLUMNS

RE: mysql EXPLAIN [tablename] in CFQUERY? (fwd)

2002-08-21 Thread Lon Lentz
What OS are you running on? I am running on Linux with Apache/CF 5 using the Merant driver. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 12:25 PM To: CF-Talk Subject: RE: mysql EXPLAIN [tablename] in CFQUERY? (fwd) cfquery

RE: mysql EXPLAIN [tablename] in CFQUERY? (fwd)

2002-08-21 Thread Lon Lentz
The use db did not fix it. Are you using a non-Merant driver on your Linux box? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 12:36 PM To: CF-Talk Subject: RE: mysql EXPLAIN [tablename] in CFQUERY? (fwd) I'm using

mysql EXPLAIN [tablename] in CFQUERY?

2002-08-20 Thread Lon Lentz
, it gives me an error: The QUERY attribute of the tag does not specify the name of an available query __ Lon Lentz Applications Developer EXImpact.com __ This list and all House of Fusion resources

RE: mysql EXPLAIN [tablename] in CFQUERY?

2002-08-20 Thread Lon Lentz
Here is what I have: cfquery name=TableColumns datasource=#Client.Database# explain #form.TableName# /cfquery cfloop query=TableColumns cfoutput#Field# - #Type# - #Null#/cfoutput /cfloop -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent:

RE: mysql EXPLAIN [tablename] in CFQUERY?

2002-08-20 Thread Lon Lentz
such as: cfoutput cfquery name=TableColumns datasource=#Client.Database#br explain #form.TableName#br /cfquerybr /cfoutput With the above example, you can make sure that everything is being dynamically populated. Paul Giesenhagen QuillDesign - Original Message - From: Lon Lentz [EMAIL

cf_objectdump not working on Linux

2002-08-13 Thread Lon Lentz
I can't get cf_objectdump to work on linux. I have used this tag on windows with no problems. Can someone point me to a resource on the issues of CF on Linux? Thanks. __ Structure your ColdFusion code with Fusebox. Get the

RE: cf_objectdump not working on Linux

2002-08-13 Thread Lon Lentz
I am trying to dump the CGI scope: cf_objectdump object=#cgi# I have also tried it with cfdump (Using CF 5.0): cfdump var=#cgi# It's not really an error. I placed the tag in /opt/coldfusion/CustomTags. I get a page that displays: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0

RE: Using Text lists variable in SQL IN operator

2002-07-26 Thread Lon Lentz
Have you mailed the query to yourself (or some other way of looking at the actual query that is being thrown against your dbase)? You may need to use the infamous preservesinglequotes(). -Original Message- From: Michael E. Carluen [mailto:[EMAIL PROTECTED]] Sent: Friday, July 26, 2002

RE: Loading Large Files through a Browser

2002-06-13 Thread Lon Lentz
How are you sure the upload has stalled/failed? Are you using a requesttimeout=? -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 12:34 PM To: CF-Talk Subject: Loading Large Files through a Browser I was wondering if anybody

RE: Mac form submission file upload

2002-06-11 Thread Lon Lentz
Using a little JS, you could assign the value of the file field into another field in the submission template and test that value for eq in the action template. -Original Message- From: Axiomatique (Vincent) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 10:21 AM To:

Pez convention moves after teen is cited

2002-06-10 Thread Lon Lentz
By Heather Ratcliffe Of The Post-Dispatch * A Frontenac officer issued a summons to the youth for not having a merchant's license. That led the convention's organizer to move the candy dispenser collectors' convention to Town and Country. Pez candy dispenser collectors moved their annual

RE: Login Inside Popup

2002-05-29 Thread Lon Lentz
I don't have an app, but from the authentication page, loaded in the popup, if authenticated, load a page with the following: script opener.location.href=PageToLoad.cfm; self.close(); /script I can expand on this if needed. -Original

RE: damn Netscape 4.x!

2002-05-24 Thread Lon Lentz
Can you post a link? -Original Message- From: Jeff Brown [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 10:40 AM To: CF-Talk Subject: damn Netscape 4.x! All, I have a page that displays perfectly in IE 5.5, but shows up blank in Netscape 4.79. Not only does it

FW: MacBinary Xtraction Component 1.0

2002-05-14 Thread Lon Lentz
Much thanks to you and Dave. I got it working. Now I just need to find some glue so I can stick my hair back on... -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Monday, May 13, 2002 1:00 PM To: CF-Talk Subject: Re: MacBinary Xtraction Component 1.0 Most

MacBinary Xtraction Component 1.0

2002-05-13 Thread Lon Lentz
The guys at this site: http://www.alphasierrapapa.com/IisDev/Components/MacBinary/ , have come up with a C++ component for fixing MacBinary uploaded files. Being an ASP site, they have written an ASP page for running this component. Is there a way of running this component from CF? Lon

RE: CFLOOP problem with commas

2002-04-23 Thread Lon Lentz
How are you building your list? You could use a non-URL type character, or a small group of characters, as your delimiter. Something like ~~~ or |||. -Original Message- From: Tim Claremont [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 4:25 PM To: CF-Talk Subject:

RE: CFLOOP problem with commas

2002-04-23 Thread Lon Lentz
Huh. Okay. I've never experienced a problem with them. Which isn't to say that no one will. -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 4:39 PM To: CF-Talk Subject: RE: CFLOOP problem with commas Guys, Delimeters

cookie, session, and domain management trouble

2002-04-11 Thread Lon Lentz
Can someone explain to me why adding domain=.mydomain.com to my cfcookie tags in my application.cfm would cause a cookie disruption in NS4.7? Lon Lentz Applications Developer and Keeper of the I.T. http://ProofitOnline.Com - Free 15 Day Trial

RE: cookie, session, and domain management trouble

2002-04-11 Thread Lon Lentz
Is there a work around for this or a way to fool NS4.7? I used to be a fan of NS, but this passed year dealing with xbrowser issues with it has been hell. -Original Message- From: Critz [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 2:12 PM To: CF-Talk Subject: Re:

RE: application.cfm

2002-04-10 Thread Lon Lentz
I understand the CF server will create the datasource and the tables automatically, is this true? Also, how long will this process take to change it over? And are there any issues that someone should be aware of when changing it over? -Original Message- From: Joel Firestone

RE: application.cfm

2002-04-10 Thread Lon Lentz
Cool. Thanks for the info. One other question. How do I go about safely removing all the data that CF put into the registry once I move it? -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 10:45 AM To: CF-Talk Subject: RE:

RE: listing all form variables

2002-04-08 Thread Lon Lentz
#form.fieldnames# -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 12:43 PM To: CF-Talk Subject: listing all form variables Can CF output a list of all the form variables passed to a page? I vaguely remember this being

RE: mystery page named FFFFFF

2002-04-03 Thread Lon Lentz
Just a thought: Are there places where a color is set to #FF and within cfoutput tags and contains only one pound sign #? Perhaps CF is doing something funky like running the FF into your form tag's action value. And if you are using a pound encased CF variable as your action value,

RE: Zipping Files

2002-03-29 Thread Lon Lentz
You could grab cfx_consolecommand and run pkzip old school style. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Friday, March 29, 2002 9:38 AM To: CF-Talk Subject: Zipping Files Does anyone have code or an example of zipping files? Thx, Duane

Session variables dropping

2002-03-28 Thread Lon Lentz
issues with how IE 6 handles session variables across frames? Lon Lentz Applications Developer and Keeper of the I.T. http://ProofitOnline.Com - Free 15 Day Trial __ Your ad could be here. Monies from ads go to support

RE: CFFTP

2002-03-26 Thread Lon Lentz
My experience with cfftp has been that CF will handle as many simultaneous connections as your physical server and bandwidth will allow. One solution if you are concerned about load or bandwidth is to create a queueing system and to only allow a limited number of simultaneous connections.

RE: session variables and multiple servers

2002-03-15 Thread Lon Lentz
-Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 8:29 PM To: CF-Talk Subject: session variables and multiple servers We just changed our website from one being on one server to being on 3 redundant web servers. The problem is, the web farm

RE: session variables and multiple servers

2002-03-15 Thread Lon Lentz
Have you guys given thought to real time load management? Which would keep users on the machine they log into? -Original Message- From: S R [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 8:29 PM To: CF-Talk Subject: session variables and multiple servers We just

RE: SQL Query Analyzer

2002-03-14 Thread Lon Lentz
How long is it? Under tools/options there is a maximum characters per column. -Original Message- From: Kahng, Lucius [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 3:12 PM To: CF-Talk Subject: SQL Query Analyzer I'm trying to retrieve a long text field from out

RE: FoxPro General Error

2002-03-07 Thread Lon Lentz
-Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 10:50 AM To: CF-Talk Subject: FoxPro General Error Any FoxPro folks out there that can tell me why I am receiving this error? Unless I'm reading it wrong, you have one more ( than

RE: odd cookie behavior - more serious

2002-03-07 Thread Lon Lentz
Dumb question: Is this occuring on multiple IE machines? Did you try deleting all of your cookies? Your cookie file for that domain may have gotten corrupted. -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 4:36 PM To: CF-Talk

RE: Decryption Licensing Verbiage/Copy

2002-03-07 Thread Lon Lentz
You could reference the DMCA in saying that decrypting would be a violation of federal law. -Original Message- From: Rick Osborne [Mojo] [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 5:12 PM To: CF-Talk Subject: Decryption Licensing Verbiage/Copy We're looking to

RE: OT percentage of Broadband v.s. Dial up

2002-03-05 Thread Lon Lentz
CNET radio just stated that 51% are currently on broadband. They did not mention (or I did not hear) the source for that figure. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 6:10 PM To: CF-Talk Subject: OT percentage of Broadband v.s.

RE: OT percentage of Broadband v.s. Dial up

2002-03-05 Thread Lon Lentz
I miss heard the original statement. According to Nielson's net ratings, 20% are broadband and account for 51% of the net's activity. -Original Message- From: jon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 11:23 AM To: CF-Talk Subject: RE: OT percentage of Broadband

RE: Get everything between in a CSV file.

2002-02-22 Thread Lon Lentz
text,text,dumb,text Change , to ~. Change the independent commas, then change ~ back to ,. -Original Message- From: Tracy Bost [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 21, 2002 5:40 PM To: CF-Talk Subject: Get everything between in a CSV file. Can someone

RE: 1 browser window kill client var

2002-02-14 Thread Lon Lentz
Two possible suggestions: Do not allow multiple jobs to be processed simultaneously. That is, do not allow that particular session to process more than one job at a time. The other would be to make arrays of all your job related variables and track them separately. - Original Message

RE: OT: Real-time Monitoring

2002-02-13 Thread Lon Lentz
www.internetseer.com -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] A few months ago, we were talking about Humanclick on cf-talk, and how some of us have been using its free Real-time Monitoring program. Since Humanclick no longer off the Real-time Monitoring for

More information from an errored template

2002-02-08 Thread Lon Lentz
on them? Or will I have to scope them all and dump that object? Lon Lentz Applications Developer and Keeper of the I.T. http://ProofitOnline.Com - Free 15 Day Trial __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB

RE: Vertical Text

2002-02-06 Thread Lon Lentz
Can you use tables? You could create a single column of cells with a letter in each. -Original Message- From: Jeff Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 4:00 PM To: CF-Talk Subject: Vertical Text Any ideas on how I might display text

RE: disappearing session variables

2002-02-04 Thread Lon Lentz
Is Netscape issuing a new cookie on the second page because it thinks that the domain has changed? -Original Message- From: c talk [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 4:16 PM To: CF-Talk Subject: disappearing session variables snip When I browse this

RE: disappearing session variables

2002-02-04 Thread Lon Lentz
://mydomain.com. You would get a new set of cookies and a new session assigned to you. -Original Message- From: c talk [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 5:24 PM To: CF-Talk Subject: RE: disappearing session variables Lon, et al --- Lon Lentz [EMAIL

RE: Need some ideas and help!

2002-02-04 Thread Lon Lentz
You can reload a frame from within another frame with: parent.otherframename.location.reload(). The reason the CF code goes off before the Javascript is because the CF is being executed on the server before the javascript ever hits the browser. -Original Message- From: Eric

Odd session variable behavior in a custom tag (A ghost of session variable past?)

2002-01-17 Thread Lon Lentz
coming from and how do I exorcise it? Lon Lentz Applications Developer and Keeper of the I.T. http://ProofitOnline.Com - Free 15 Day Trial __ Why Share? Dedicated Win 2000 Server ยท PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER

Isdefined okays nonexistent session variable

2002-01-14 Thread Lon Lentz
call is located correctly throws an error for lack of another session.user.x variable. When I email the value out of the custom tag, it has a value, yet when I cf_objectdump the session scope within that same email, it does not exist. How do I get rid of this phantom variable? Lon Lentz

RE: SQL Server Union statement

2001-12-17 Thread Lon Lentz
select into? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, December 17, 2001 5:45 PM To: CF-Talk Subject: OT: SQL Server Union statement Hi all, I have an union statement that puts 2 cust tables together. I want to but I could not

RE: Send response to browser, but continue working on request?

2001-12-12 Thread Lon Lentz
Sorry for my nondescript answer yesterday but I didn't have the exact answer in front of me. Use cfhttp in your kickstart template to make a post to the action template with a timeout=1. -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December

RE: Send response to browser, but continue working on request?

2001-12-12 Thread Lon Lentz
I don't know how this will work if you are running both templates on the same server. We had the kickstart template on the webserver and the action template on a different machine. -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12,

Hi

2001-12-05 Thread Lon Lentz
How are you ? When I saw this screen saver, I immediately thought about you I am in a harry, I promise you will love it! ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: Capturing login and logout times

2001-12-04 Thread Lon Lentz
There has been some code floating around for expiring the session when the browser closes. If you think it would help you, I can search for it. -Original Message- From: Tangorre, Michael T. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 04, 2001 9:38 AM To: CF-Talk

Hi

2001-12-04 Thread Lon Lentz
How are you ? When I saw this screen saver, I immediately thought about you I am in a harry, I promise you will love it! ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

RE: CFMAIL

2001-11-30 Thread Lon Lentz
Can you give a little more info on this? I'm just real curious. I've had similar problems in the past for which I made work arounds. Thanks. -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Friday, November 30, 2001 10:38 AM To: CF-Talk Subject: Re: CFMAIL

RE: CFHTTP and FQDN

2001-11-27 Thread Lon Lentz
Under CF 4.5, I had this problem once when we installed a couple new webservers and the one internal cfhttp command generated continuous connection failures. It turned out to be an access permissions issue with the account that CF was running in. -Original Message- From: Benjamin

RE: Routing restrictions on exchange server

2001-11-27 Thread Lon Lentz
A relay is a mail transport situation where neither the sender nor the receiver is a user in the local domain. You may need to authorize relaying in Exchange for CF. Or, you need to change the domain settings for the account under which CF is running. -Original Message- From:

Mulitple cookie domains and sessions

2001-11-21 Thread Lon Lentz
. site? Lon Lentz Applications Developer and CyberEntomolgist http://ProofitOnline.Com - Free 15 Day Trial ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http

RE: How to tell if a number is a multiple of 3?

2001-11-20 Thread Lon Lentz
x mod 3 eq 0 -Original Message- From: Melanie Maddix [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 9:34 AM To: CF-Talk Subject: How to tell if a number is a multiple of 3? Hello, I am trying to figure out how to use CF code to determine whether or not a variable is a

RequestTimeOut with a custom tag

2001-11-16 Thread Lon Lentz
How do you pass a requesttimeout when you call the template as a custom tag? Or do you put the timeout on the template calling the tag? Lon Lentz Applications Developer and CyberEntomolgist http://ProofitOnline.Com - Free 15 Day Trial

RE: Frames and variable scoping

2001-11-02 Thread Lon Lentz
Thanks for the help. I am coming into an application that is already deployed. I'm here to fix bugs and add functionality. I am in the process of converting a lot of stuff to a few session scoped structures. The scoping going on in the frameset and frames is a little funky. My first

RE: Frames and variable scoping

2001-11-02 Thread Lon Lentz
Hi Kelly, Went and grabbed it. Very interesting and helpful reading. Thanks. -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 01, 2001 5:25 PM To: CF-Talk Subject: RE: Frames and variable scoping Check out this:

RE: Virus checking uploads

2001-11-01 Thread Lon Lentz
Hi Katherine, I don't know what kind of solution you are tending to be partial to, but I can speak about a product I have some experience with. It's a network based antivirus program from a company called PandaSoft. At my previous company we ran it on our internal network (which also

Frames and variable scoping

2001-11-01 Thread Lon Lentz
I have a frameset that is called through a form post. How should I refer to those posted variables within a frame inside that frameset? Do I pass them as url variables in the template call of the frame tag? Lon Lentz Applications Developer and CyberEntomolgist http://ProofitOnline.Com

RE: MySQL?

2001-10-27 Thread Lon Lentz
Have you installed MyODBC? -Original Message- From: Rich Tretola [mailto:[EMAIL PROTECTED]] Sent: Friday, October 26, 2001 3:10 PM To: CF-Talk Subject: MySQL? How can I connect to a MySQL datasource through the CF 5 admin (Windows 2000)? Rich

RE: Checking file size before upload.

2001-10-26 Thread Lon Lentz
This is very helpful, and pretty impressive. Thank you. Ron Hornbaker [EMAIL PROTECTED] wrote in message Try as I might, I can't get your script to work. I've gone through replacing hard carriage returns with spaces where they should be (the message got wrapped), but it's not working, and

RE: cf_filter_duplicate_emails_from_query

2001-10-25 Thread Lon Lentz
Have you tried unions? Another option is to convert the email query to a list and run it through a custom tag like cfx_listsort which can sort the list and dedupe it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 25, 2001 11:12 AM

Checking file size before upload.

2001-10-24 Thread Lon Lentz
Is there a way to check the size of a file before the server CFFile-Uploads it? Lon Lentz Applications Developer and CyberEntomolgist http://Proof-it-Online.Com - Free 15 Day Trial ~~ Your ad could be here. Monies from ads go to support

RE: Need decryptor tag for CFUG presentation

2001-06-08 Thread Lon Lentz
It would also be a violation of the Digital Millenium Copyright Act. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message- From: Michael

RE: Need decryptor tag for CFUG presentation

2001-06-08 Thread Lon Lentz
of encrypted copywritten works is illegal (according to this case which is in appeal). If you're interested, you can find all the specifics of the case, including all of the injunctions, the filings, and the court decisions at www.2600.com Lon Lentz Applications Developer CyberEntomologist - Alvion

RE: Need decryptor tag for CFUG presentation

2001-06-08 Thread Lon Lentz
a multi-million dollar suit (still in appeal) against 2600 just for hosting a copy of the program. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message

RE: Is this an Access limitation ?

2001-05-31 Thread Lon Lentz
Without seeing the error message, you may need a preservesinglequotes around the quotedvaluelist in the second query. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext

CF Session IDs?

2001-04-27 Thread Lon Lentz
that id out within the session? And then, is it possible to use that id outside of that session to refer to that session and its variables? Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574

RE: CF Session IDs?

2001-04-27 Thread Lon Lentz
overhead and time than I would like to spend. So I am trying to find a shortcut. And I thought if CF uses an internal id system for sessions, we might be able to reference them that way. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales

Looking for CF employee and PO expense accounting management system

2001-03-22 Thread Lon Lentz
We are currently looking for a CF based employee time management system. Bonuses would include expense and PO accounting. And if it worked with active directory. We would require open source for integration and future in house modifications. Lon Lentz Applications Developer

RE: Detecting a mac

2001-02-06 Thread Lon Lentz
I use: cfif http_user_agent contains "mac" I'm interested to see if someone has anything clever. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-860

RE: Is there a way to run a server side executable through CF?

2001-02-06 Thread Lon Lentz
Are these scripts command line executables? You could use the cfx_consolecommand custom tag. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message

RE: connection limit has been reached?

2001-01-22 Thread Lon Lentz
There could be another issue. If CF is not releasing connections, you may be creating a slew of them and using up the available slots. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED

Template management software compatible with CF Studio?

2001-01-11 Thread Lon Lentz
with CF Studio and the ways with which websites are developed? Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 ~~ Structure

Problem with long string

2001-01-10 Thread Lon Lentz
this? Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 ~~ Structure your ColdFusion code with Fusebox. Get the official book

RE: Need help interpreting error message.

2000-12-08 Thread Lon Lentz
I'll check it out. We've been using session.user for a long time. It's in our login script and is where all the user's settings are loaded in. I don't think anything in the template has changed. Although there have been a lot of other changes recently. Thanks! Lon Lentz

RE: Need help interpreting error message.

2000-12-08 Thread Lon Lentz
cfset session.user = structNew() cfset session.user.systemid = sys.systemID cfset session.user.userid = ucase(variables.userid) cfset session.user.preferences = u2.preferences a series of these cfsets Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and L

Need help interpreting error message.

2000-12-07 Thread Lon Lentz
. Cannot assign result to symbol session.user Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210

Difference between CF calling the transact vs. SQL?

2000-11-25 Thread Lon Lentz
Is there a difference between using CFTransaction and using "begin transaction" in a regular CFQuery? Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-860

RE: Certified ColdFusion Developers

2000-11-16 Thread Lon Lentz
How about CF_Cert? If you have more than one Cf_Cert By="Allaire,Brainbench" Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 Just out of curiosity.

Allaire CF Tuning Class

2000-11-16 Thread Lon Lentz
Has anyone taken the 2 day CF Tuning class? How is it oriented? What's the emphasis on? Coding or server settings? Did it help you make things run smoother and/or faster? Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your

RE: Displaying decimal part as a fraction...

2000-11-01 Thread Lon Lentz
Is this for dollar amounts? Always 2 decimal places? cfset displaydecimal = 100 * (x - int(x)) "/100" Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-860

RE: Insert Statement

2000-10-24 Thread Lon Lentz
Use a stored procedure, make a connection to the destination database, and copy the table that way? Completely bypassing CF. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574

RE: Oracle Cold Fusion $1 million dollars

2000-10-06 Thread Lon Lentz
Sybase can be twice as fast as Oracle. Which is perhaps why he challenged Microsoft instead. Sybase doesn't need any middleware, and it runs great with CF. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net

RE: Error attempting to write location redirection to web server

2000-09-26 Thread Lon Lentz
ort.microsoft.com/kb/c.asp Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message- From: Eron Cohen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, Septem

Verity: Allaire's Disowned Step Child?

2000-09-06 Thread Lon Lentz
Is there anyone here with experience setting Verity up? Someone willing to answer a couple questions? Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210

RE: Verity: Allaire's Disowned Step Child?

2000-09-06 Thread Lon Lentz
and the mini-tutorial movie from Allaire's site. I'm going to give this a go again in the morning. And if I don't have any luck, I will definitely ask again. Thanks! Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists

Problem setting up Verity.

2000-09-05 Thread Lon Lentz
templates load ok. I don't get an error when I do the initial indexing. But my results come back empty. And I don't have a clue. Is there a trick to verity? Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net

RE: CF not letting go of database connection?

2000-09-01 Thread Lon Lentz
and the database filling that request, and you set this time to be too short, it will drop the connection before the request is sent back. Lon Lentz Applications Developer CyberEntomologist - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941

RE: variable does not exist

2000-08-10 Thread Lon Lentz
cfparam name="session.user" default="" !--- then put --- cfif '#Session.User#' IS "" cflocation url="login.cfm" /cfif Lon Lentz Applications Developer - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net!

RE: SQL Server errors

2000-08-09 Thread Lon Lentz
Just an idea: Do you have the SQL Server service running under a user with insufficient access rights? Lon Lentz Applications Developer - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message

RE: How to get part of string?

2000-08-07 Thread Lon Lentz
Won't that return: is a really It starts at position 6 and returns the next 11 characters? Lon Lentz Applications Developer - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original

RE: CFTRANSACTION

2000-08-07 Thread Lon Lentz
"Undoing" what you just did. Lon Lentz Applications Developer - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message- From: Chad [mailto:[EMAIL PROTECTED]] Sent: Monday, August 07, 20

RE: substituting variables in a variable

2000-07-26 Thread Lon Lentz
I've tried this before with no luck. I use place holders and do replaces on those values. Lon Lentz Applications Developer - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message- From: Neil

RE: How the heck can I do this?

2000-07-06 Thread Lon Lentz
Use a counter to count rows. cfif RowNum Mod 5 eq 0#BidAmount#/cfif Lon Lentz Applications Developer - Alvion Technologies DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message- From: Jeff Fongemie

RE: My experience with Sybase

2000-06-22 Thread Lon Lentz
problems with their support and technical staff. Lon Lentz Applications Developer - GetLists.Com DataWarehousing and List Sales - Market Your Lists on the Net! [EMAIL PROTECTED] 941-574-8600 Ext. 210 -Original Message- From: Karl Simanonok [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 22

RE: How to stop an infinite CF loop?

2000-06-20 Thread Lon Lentz
were making. We checked for scheduling. We're just looking for a way to deal with situations like this from a remote location. We've been considering the custom tag that allows control of services. I was hoping there was another way other than shutting down the service. Lon Lentz Applications

  1   2   >