RE: ok....im losin it...

2003-03-13 Thread Kola Oyedeji
Tony Are you setting the variable you are checking for anywhere? If Login.cfm is in the same directory then you will end up in an infinite loop as you'll never get to view the login.cfm page Just a guess Kokla -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent:

Re: ok....im losin it...

2003-03-13 Thread Jann VanOver
Tony, is your login.cfm in the same directory as Application.cfm ?? If so, this WILL send you into an infinite loop. The key to remember is that when login.cfm begins to execute, it FIRST executes Application.cfm. See where the loop comes in? You can fix this in one of two ways: 1) put

Re: OT: NTLM Authentication

2003-03-13 Thread Jochem van Dieten
Jim McAtee wrote: If I enable Basic Authentication for an IIS 5 web site protected by NTFS ACLs, will Internet Explorer still use NTLM to authenticate if its able to? In other words, does enabling Basic Authentication keep IIS from using NTLM, or does it only enable Basic Authentication as

Graphing under MX

2003-03-13 Thread Adam Reynolds
Hi all, I was wondering if somebody had come up with a formula for determining how to get cfchart to display a good Y axis? What I mean is that if you define: scalefrom scaleto gridlines There should be a way to determine the correct set of points along the y axis. Currently I have gridlines

RE: ok....im losin it...

2003-03-13 Thread Tangorre, Michael
could it be that neither of your cflocation tags have the url attribute set to cnn.com?! -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 9:39 PM To: CF-Talk Subject: okim losin it... cfif isDefined(session.csrId)

Re: changing ColdFusion Log On As

2003-03-13 Thread Jochem van Dieten
Matthew Friedman wrote: Currently I am running CF5 on a WIN2K box and it is log on as LocalSystem. The Issue that I have is that I need to move some large files over my network to other computers. I have the dreivs mounter, but since CF is log on as localsystem, it can not see the other

RE: Graphing under MX

2003-03-13 Thread Daniel Napolitano
If you really want to graphing stuff properly you should probably use CFX Graphics Server http://www.cfxgraphicsserver.com It costs but it is quite a flexible graphing control. I think you can download a trial version from the site. Daniel -Original Message- From: Adam Reynolds

RE: Graphing under MX

2003-03-13 Thread Adam Reynolds
Thanks, But if my only gripe is the scale markers on the y axis... -Original Message- From: Daniel Napolitano [mailto:[EMAIL PROTECTED] Sent: 13 March 2003 11:34 To: CF-Talk Subject: RE: Graphing under MX If you really want to graphing stuff properly you should probably use CFX

Getting server uptime in NT/Win2K?

2003-03-13 Thread Lofback, Chris
Using CF4.5/5, does anyone know of a way to get NT/Win2K server uptime and status info, kind of like what 'uptime' offers on Unix? I'm building a CF monitoring system and I want to retrieve this info from some CF/Win boxes. Ideally, I need something that does not need to be installed. Is

RE: Getting server uptime in NT/Win2K?

2003-03-13 Thread Hugo Ahlenius
See if you can find an uptime.exe, I think there are several of them around. Here is one, for example: http://www.microsoft.com/ntserver/nts/downloads/management/uptime/default. asp ~| Archives:

RE: ok....im losin it...

2003-03-13 Thread Tony Weeg
jann, that's what I originally had, actually something more along the lines of findNoCase(cgi.template_path,'login.cfm',1) but that tripped up for some reason... not sure whyanyhow, I got it now :) thanks!!! ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer

RE: CFCs and Web Services

2003-03-13 Thread webguy
Sessions 'stick' to the server instance that created them. Session replication and buddy servers are optional - they increase network traffic, the tradeoff being that sessions are not lost if a server instance goes down unexpectedly. If This isn't true if you are using a hardware load

RE: Com and CFMX

2003-03-13 Thread Robert Bailey
Yeah, I gave up trying to get it to work. Guess I am moving over to ASP for this part of the application. Thanks! Robert Bailey Famous for nothing -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 6:01 PM To: CF-Talk Subject: Re: Com and

OT: Project Tracking, Issue Mgmt, Bug Reporting

2003-03-13 Thread Richmond, Pamela
Does anyone have suggestions of commercial apps that can track progress and status of programming projects? We're looking for the following features, though we are flexible. We are willing to use multiple products. * Track remaining tasks/issues/bugs * Generate a list of completed tasks or

Zip E-Mail

2003-03-13 Thread James Blaha
Hello All, Does anyone have a method with an example to zip a file on a web server and CFMAIL it using ColdFusion? Regards, James Blaha ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: CFCs and Web Services

2003-03-13 Thread Dave Carabetta
I said you cannot use session *replication* if you store CFCs in session scope. It's not really a case of sharing sessions across a cluster - it only affects failover (if one server instance goes down and you have buddy servers configured). Sessions 'stick' to the server instance that created

Re: Zip E-Mail

2003-03-13 Thread Melissa Fraher
Jim - Did you try Ben Forta's cfx_zip custom tag? Melissa James Blaha wrote: Hello All, Does anyone have a method with an example to zip a file on a web server and CFMAIL it using ColdFusion? Regards, James Blaha ~|

Re: OT: Project Tracking, Issue Mgmt, Bug Reporting

2003-03-13 Thread Dave Carabetta
Does anyone have suggestions of commercial apps that can track progress and status of programming projects? We're looking for the following features, though we are flexible. We are willing to use multiple products. * Track remaining tasks/issues/bugs * Generate a list of completed tasks or

RE: CFCs and Web Services

2003-03-13 Thread webguy
Is the inability to replicate session-scope stored CFCs a limitation of either JRun or CFMX as opposed to J2EE servers in general? AFAIK the reason cfcs cannot be replicated by Jrun is because they do not Implement Serializable.. I believe that this has been requested by several folk.. WG

Re: Zip E-Mail

2003-03-13 Thread James Blaha
Melissa, No but thanks, it that for MX only? JB Melissa Fraher wrote: Jim - Did you try Ben Forta's cfx_zip custom tag? Melissa James Blaha wrote: Hello All, Does anyone have a method with an example to zip a file on a web server and CFMAIL it using ColdFusion? Regards, James Blaha

RE: OT: Project Tracking, Issue Mgmt, Bug Reporting

2003-03-13 Thread Richmond, Pamela
Dave wrote: You didn't specify whether or not ColdFusion was the required technology for the system ColdFusion is not a requirement. We would run it on an W2K server and/or WinXP workstations. Pam ~| Archives:

RE: CFCs and Web Services

2003-03-13 Thread Dave Watts
Sessions 'stick' to the server instance that created them. This isn't true if you are using a hardware load balancing, right? It can be - it's typically an option you can enable. The load balancer will typically write a cookie identifying the server, and redirect requests with that

Query of Queries w/ subquery in CF 5?

2003-03-13 Thread Edwards Robert (air0rae)
I am using ColdFusion 5 Enterprise Edition. I have 2 separate oracle databases that cannot communicate to each other, but the web server can communicate to them individually. I am pulling back data from to queries as such. Query 1: Machine1 null Loc1 Machine2 null Loc2

RE: Query of Queries w/ subquery in CF 5?

2003-03-13 Thread Pascal Peters
I'm not sure, but I don't think you can do subqueries with QofQ. Try (not tested) Select * from Query1 where Q1MachineName not in (#QuotedValueList(Query2.Q2MachineName)#) UNION Select * from Query2 where Q2MachineName not in (#QuotedValueList(Query1.Q1MachineName)#) -Original Message-

RE: Query of Queries w/ subquery in CF 5?

2003-03-13 Thread Andre Mohamed
Rob, Not sure if CF5 query of queries can handling your sub-selects. Anyway, try this as a possible alternative: Select * from Query1 where Q1MachineName not in (#QuotedValueList(Query2.Q2MachineName)#) UNION Select * from Query2 where Q2MachineName not in

Coldfuion journal archives

2003-03-13 Thread Edwards Robert (air0rae)
I'm trying to read the Cold Cup of Joe articles in the CFDJ archives. When accessing, it says I need to enter my Access Code. I am a subscriber to the journal, but where do I find my access code? Rob ~| Archives:

SQL This (')

2003-03-13 Thread Ian Skinner
I think I have known this, but my brain is refusing to divulge the details. I have strings from a form that will be complete prose sentences and paragraphs that need to be inserted into SQL 2000 char and varchar fields with all their possible punctuation. What I can't remember is the best way to

CF Talking to a EJB

2003-03-13 Thread Michael Hoffman
All the code that I have found for a CF page talking to a EJB it does not include the PortableRemoteObject.narrow call. Any ideas on this? Narrowing is used on remote interfaces and not local interfaces? Narrowing checks to ensure that an object of a remote or abstract interface type can be

RE: SQL This (')

2003-03-13 Thread Douglas.Knudsen
check out cfqueryparam Doug -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 10:03 AM To: CF-Talk Subject: SQL This (') I think I have known this, but my brain is refusing to divulge the details. I have strings from a form that will be

RE: SQL This (')

2003-03-13 Thread Craig Dudley
cfqueryparam Or stored procedures -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: 13 March 2003 15:03 To: CF-Talk Subject: SQL This (') I think I have known this, but my brain is refusing to divulge the details. I have strings from a form that will be complete

RE: Graphing under MX

2003-03-13 Thread Ryan Kime
Adam, If you are getting your graphing info from a DB, you could get the max value of the resultset and add to it to X to get the next value of 10 (or 100 or 1000). So max value of 121, you would want 130578 - 580, etc... That would be your scaleto value. Here's a UDF to help you out...

Homesite+ Question

2003-03-13 Thread Venable, John
Hello, Just got a new XP machine and went ahead and installed MX Studio with Homesite+. I'm trying to set it up like I used to have my CF Studio set up, but I have two strange issues I can't figure out. 1) Under options settings resource tab preferences Lock Tabs is enabled but dimmed

Re: Homesite+ Question

2003-03-13 Thread Clint
Download and install the 5.2 updater and you will be able to disable the tabs. Clint - Original Message - From: Venable, John [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 13, 2003 9:21 AM Subject: Homesite+ Question Hello, Just got a new XP machine and went

Re: CFCs and Web Services

2003-03-13 Thread Sean A Corfield
On Thursday, Mar 13, 2003, at 05:41 US/Pacific, webguy wrote: Sessions 'stick' to the server instance that created them. Session replication and buddy servers are optional - they increase network traffic, the tradeoff being that sessions are not lost if a server instance goes down

RE: Homesite+ Question

2003-03-13 Thread Ken Wilson
I do believe that was the major impact of the Adobe litigation. That's also why I uninstalled Hoemsite+ in favor of CF Studio v5. While some dismiss the issue as minor, it's major annoyance for me. Not sure what the terms of the settlement were but it sure would be nice if the two had decided to

RE: Homesite+ Question

2003-03-13 Thread Ken Wilson
Download and install the 5.2 updater and you will be able to disable the tabs. Well now that's good news. Does that include the full capability of CF Studio i.e. can you add buttons and create custom toolbars? Ken ~| Archives:

RE: CF Talking to a EJB

2003-03-13 Thread webguy
You might need to create a instance or javax.rmi.PortableRemoteObject ?? WG -Original Message- From: Michael Hoffman [mailto:[EMAIL PROTECTED] Sent: 13 March 2003 15:12 To: CF-Talk Subject: CF Talking to a EJB All the code that I have found for a CF page talking to a EJB it does not

RE: Homesite+ Question

2003-03-13 Thread Raymond Camden
Just got the updater and you won't have the UI limitations. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Member of Team Macromedia Email: [EMAIL PROTECTED] Blog : www.camdenfamily.com/morpheus/blog Yahoo

CF Talking to a EJB

2003-03-13 Thread Mike Hoffman
How would I do this line? PortableRemoteObject.narrow(o, TitleSessionEJBHome.class); the .class is what I am not sure how to do. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Homesite+ Question

2003-03-13 Thread Raymond Camden
Yes. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc Member of Team Macromedia Email: [EMAIL PROTECTED] Blog : www.camdenfamily.com/morpheus/blog Yahoo IM : morpheus My ally is the Force, and a powerful

RE: Com and CFMX

2003-03-13 Thread Adrocknaphobia Jones
Robert, I feel your pain. Although is a huge pain in the arse, I found that by creating wrappers in .NET for the COM object I wanted to use, I was able to get them working properly in CF. I've also found that a lot of the time CFMX doesn't like the type of variables returned by COM and

Search Indexing

2003-03-13 Thread Jillian Carroll
Good Morning! I know I'm close here... but I'm having a few problems trying to get my search engine to index my static pages. The code below works... but I need to evolve it to do two more things, and I can't find anything through google/macromedia forums. My questions: How can I evolve my code

Re: Search Indexing

2003-03-13 Thread Jeff Garza
Jillian, Have you tried using the Verity K2 Spider on your site? It's a full web spider that will follow all the links on your site and index the content regardless of it being static or dynamic. Jeff - Original Message - From: Jillian Carroll [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: Com and CFMX

2003-03-13 Thread Robert Bailey
LOL, must have missed that memo. Yeah, it is a pain, but I figure I have to work around it, just going to make it an ASP web service and work with my objects via SOAP. Thanks! Robert Bailey Famous for nothing www.tinetics.com -Original Message- From: Adrocknaphobia Jones

RE: Search Indexing

2003-03-13 Thread Jillian Carroll
You know... I played around with that yesterday. I'm having two problems: My CF Server is Linux, so I don't think it can spider my PDF's right? What I've done is used pdf2text and just converted my PDF's to text for indexing. Also, I can't find any decent directions for a beginner to get that

Re: ok....im losin it...

2003-03-13 Thread Dave Lyons
someones been spending too much time with he half pipe;) - Original Message - From: Tony Weeg [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 9:38 PM Subject: okim losin it... cfif isDefined(session.csrId) cflocation url=index.cfm cfelse

RE: ok....im losin it...

2003-03-13 Thread Tony Weeg
I think I just got banged around too hard last weekendmessin my code all up :) ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original

RE: CF Talking to a EJB

2003-03-13 Thread Michael Hoffman
How would I do this line? PortableRemoteObject.narrow(o, TitleSessionEJBHome.class); the .class is what I am not sure how to do. Plus the constructor for PortableRemoteObject is protected. Original Message Follows From: webguy [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk

OT: enabling domain access without www

2003-03-13 Thread Clint
I cannot remember if setting http://mydomain.com is a webserver (IIS) or a DNS setting? Can someone verify this for me? Thanks, Clint ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Arrays -Deleting specific items

2003-03-13 Thread Bosky, Dave
I have an array and need to delete specific positions by using a list of positions to delete. Array contains 8 items and I need to delete the items at positions 2,3,4,5,6. I've been using the code below and it works most of the time if I delete one at time but once I try to delete multiple items

Re: OT: enabling domain access without www

2003-03-13 Thread jon hall
DSN, but depending on if the site is set up as a host header site it may need to be set up in IIS as well. -- jon mailto:[EMAIL PROTECTED] Thursday, March 13, 2003, 11:35:05 AM, you wrote: C I cannot remember if setting http://mydomain.com is a webserver (IIS) or a C DNS setting? C Can

Re: enabling domain access without www

2003-03-13 Thread samcfug
IIS setting if on Linux the setting is in the inetd.conf file = Douglas White group Manager mailto:[EMAIL PROTECTED] http://samcfug.org = - Original Message - From: Clint [EMAIL PROTECTED] To: CF-Talk [EMAIL

Re: enabling domain access without www

2003-03-13 Thread Dan Blickensderfer
Clint, In your dns server you should have a A record for your mydomain.com to the ip address. example below. mydomain.comA192.168.0.40 If you want the www to work as well. use below. www CNAMEmydomain.com. If you are housing multiable domains on the same ip

RE: CF Talking to a EJB

2003-03-13 Thread webguy
Well the .class would be your bean class. Yours is probably called TitleSessionBean.class. WG -Original Message- From: Michael Hoffman [mailto:[EMAIL PROTECTED] Sent: 13 March 2003 16:24 To: CF-Talk Subject: RE: CF Talking to a EJB How would I do this line?

RE: Arrays -Deleting specific items

2003-03-13 Thread Raymond Camden
Are you deleting backwards? If not, your code will not work. For example, if you want to remove ites 2 and 4, if you first remove item 2, the old item 4 is now item 3. If you go backwards (delete 4 then 2), then this will not happen.

RE: Graphing under MX

2003-03-13 Thread Adam Reynolds
I know... I worked it out... cfset gridlines = ((maxval - minval )/ 10) + 1 I floor the minval and ceiling the maxval to nearest 10 points -Original Message- From: Ryan Kime [mailto:[EMAIL PROTECTED] Sent: 13 March 2003 15:23 To: CF-Talk Subject: RE: Graphing under MX Adam,

RE: enabling domain access without www

2003-03-13 Thread webguy
ping mydomain.com and see if it finds your box IP ADDRESS wg -Original Message- From: Clint [mailto:[EMAIL PROTECTED] Sent: 13 March 2003 16:35 To: CF-Talk Subject: OT: enabling domain access without www I cannot remember if setting http://mydomain.com is a webserver (IIS) or a DNS

Re: enabling domain access without www

2003-03-13 Thread Clint
thanks, that's what I thought Just wanted to make sure before I start changing things ;) Thanks again, Clint - Original Message - From: Dan Blickensderfer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 13, 2003 10:40 AM Subject: Re: enabling domain access without

RE: CF Talking to a EJB

2003-03-13 Thread Michael Hoffman
CF does not know what .class is. Original Message Follows From: webguy [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: CF Talking to a EJB Date: Thu, 13 Mar 2003 16:43:47 - Received: from houseoffusion.com ([64.118.64.245]) by

RE: Arrays -Deleting specific items

2003-03-13 Thread webguy
Once you use ArrayDeleteAt, the array is reindexed try this :-) cfset idlist = 1,2,3 / cfset idlistsorted = ListSort(idlist) / cfloop from=1 to=ArrayLen(myarray) index=i cfset IDtoDelete = ListGetAt(idlistsorted ,i) - i / cfset ArrayDeleteAt[IDtoDelete] / /cfloop justin

RE: CF Talking to a EJB

2003-03-13 Thread webguy
Ah ok see what you mean . You might need to JavaCast it to an Java object first? WG -Original Message- From: Michael Hoffman [mailto:[EMAIL PROTECTED] Sent: 13 March 2003 16:47 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: CF Talking to a EJB CF does not know what .class

RE: enabling domain access without www

2003-03-13 Thread Ben Doom
IIRC, you need to set it in both. The DNS for it needs to point to the IIS server, and you need to set the header information in the IIS box or it will simply point to the wwwroot. -- Ben Doom Programmer General Lackey Moonbow Software, Inc : -Original Message- : From: Clint

RE: CF Talking to a EJB

2003-03-13 Thread Andre Mohamed
Michael, You're right, you'll need to import javax.rmi.PortableRemoteObject or perhaps cfobject one. This whole thing might be best written as a Servlet or JSP which you then include or forward to. Just a thought. André -Original Message- From: Michael Hoffman [mailto:[EMAIL PROTECTED]

RE: Zip E-Mail

2003-03-13 Thread Barney Boisvert
cfx_zip has been around since CF4.5 at least. It's C++, so who knows how well it'll work with MX. Java has built-in zipping capabilities that you might look into, if you're familiar with Java. Also, there is a zip function on cflib.org. That might do what you need, and if not, it'll be pretty

How to access row in loop

2003-03-13 Thread webmaster
Here's my busted attempt to get certain items from a structure while looping through it...can someone tell me where I messed up? (structure is like this: cdjwebdoc.cdweb.1.sku cdjwebdoc.cdweb.1.unitcost cdjwebdoc.cdweb.2.sku and so on heres my

Re: How to access row in loop

2003-03-13 Thread Scott Brady
-- Original Message -- From: [EMAIL PROTECTED] cfloop collection=cdjwebdoc.cdweb My first suggestion is: cfloop collection=cdjwebdoc.cdweb item=currentrow (I believe item is a required attributes for looping along a collection). Then, you should be

RE: How to access row in loop

2003-03-13 Thread Andre Mohamed
Depending on the impact you might want to reimplement your cdjwebdoc.cdweb structure as a query using QueryNew etc. as long as each row has the same columns...this certainly seems to be what you are trying to achieve. Then you can use cfloop query=... as normal. A little easier to read and

RE: CFMX Linux JDBCPool Timeout

2003-03-13 Thread Paul Hassinger
Just an update... I have contacted Macromedia, They claim that they have not heard of this problem from other users. They had me download a JDBC MySQL driver from mysql's site the same problem occured with that driver. I created the data source using a Windows development version of Cold

CF Talking to a EJB

2003-03-13 Thread Mike Hoffman
For some reason you do not need to call the create() method. This code seems to make fine for a stateless session bean. cfobject action =create type =java class =javax.naming.InitialContext name =ictx cfscript

RE: CFMX Linux JDBCPool Timeout

2003-03-13 Thread Barney Boisvert
I haven't been following this thread, but I've been running CFMX (as well as CF4.5 and CF5) and MySQL on the same box and on different boxes, both with Windows and Linux and never had a problem with connecting to databases with any setup. Do you perhaps have a firewall or tcpwrappers disallowing

RE: CF and PhotoShop

2003-03-13 Thread Adrocknaphobia Jones
What do you mean PS is scriptable with javaScript? Do you have any URLs about this? Are you trying to run batches client-side? Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance Education Division -Original Message- From: Owens, Howard

RE: CF and PhotoShop

2003-03-13 Thread Joshua Miller
For image automation and conversion I'd look into Equilibrium Debabelizer Pro (http://www.equilibrium.com). This application has been around for years and it's always been a favorite of image manipulators everywhere. I'm sure it has scripting capabilities, it's designed to automate massive image

RE: CFMX Linux JDBCPool Timeout

2003-03-13 Thread Paul Hassinger
Thanks Barney, Unfortunately, no, I don't have any tcpwrappers or firewall settings on the servers. I handle that all with a seperate firewall and the server exists in a demilitarized zone. The port is open, since I can access the connection periodically, but I will check settings over again.

NTFS file permissions don't restrict access

2003-03-13 Thread Brad Howerter
I would like to use NTFS file permissions to restrict my .cfm pages. I have a server I'm playing with and I removed all general permissions from the wwwroot directory, but I can still run the .cfm pages from any account. Why doesn't this work? I'm running CFMX on a windows 2000 server. *** The

RE: CF and PhotoShop

2003-03-13 Thread mynews
What if you created a droplet and used cfexecute to run the droplet? Can you create a droplet that will work on every file in a certain directory? The main thing that scares me about trying to script photoshop is loading and unloading it. Its a bulky program that can take forever to load.

RE: How to access row in loop

2003-03-13 Thread Jeff Battershall
Eric, You're missing the item attribute for looping over a collection. Currentrow is from a cfoutput or cfloop query loop, not from your collection. You also are missing pound signs on your collection attribute. It has to go like this: cfloop collection=#cdjwebdoc.cdweb# item=x !---Check for

RE: How to access row in loop

2003-03-13 Thread webmaster
This xml doc could have around 1000 sections...thus the 1, 2, 3 being essentially new set of data with a bunch of fields as a part of those... So would that work to do QueryNew, then set cell, then the field name, then #fieldname#is that the idea? Since this struct I think has an array

RE: How to access row in loop

2003-03-13 Thread webmaster
Thanks, I will give that a whirl!!! Regards, Eric J. Hoffman DataStream Connexion www.datastreamconnexion.com -Original Message- From: Jeff Battershall [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 12:46 PM To: CF-Talk Subject: RE: How to access row in loop Eric,

CFAdvocacy.org: Looking for contributors

2003-03-13 Thread Jim Davis
After spending way too much time in the past few weeks defending CF from utterly silly claims I've decided to create a web site to collect and present information about it. As Cfers we are all generally hit with statements like: +) CF isn't an enterprise-capable platform. +) CF is just a content

Re: Coldfuion journal archives

2003-03-13 Thread Frank Mamone
You need to write to them to ask for it. they change it periodically. - Original Message - From: Edwards Robert (air0rae) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 13, 2003 9:59 AM Subject: Coldfuion journal archives I'm trying to read the Cold Cup of Joe

RE: NTFS file permissions don't restrict access

2003-03-13 Thread Barney Boisvert
The CF Server's user account (by default, the system account) is the one that is actually doing the filesystem access, not the user account that has the web browser open. Since CF will alwasy use the same account to access .cfm files, NTFS permissions aren't going to help you at all. They'll

NTFS file permissions don't restrict access

2003-03-13 Thread Brad Howerter
I should have mentioned this before: I have checked the 'Check that file exists' application mapping setting for .cfm. I notice that if my url is http://servf18, I get access denied, but if it is http://servf18/default.cfm, it works. Default.cfm is the file that runs be default, due to my

RE: CF and PhotoShop

2003-03-13 Thread Jeff Beer
JASC PaintShop Pro has a lot of functionality as far as automated processes and is mucho cheaper. Plus, it's mucho smaller and loads pretty fast. I use it for all the quick touchups and text changes, etc, and to process entire directories of graphics (adding borders, watermarks, etc).

NTFS file permissions don't restrict access

2003-03-13 Thread Brad Howerter
I should have mentioned this before: I have checked the 'check that file exists' checkbox in the application mapping setting for .cfm files. I would like to use NTFS file permissions to restrict my .cfm pages. I have a server I'm playing with and I removed all general permissions from the

NTFS file permissions don't restrict access

2003-03-13 Thread Brad Howerter
That's what I used to think, too, until I read this technote: http://www.macromedia.com/support/coldfusion/ts/documents/nt_auth_iis.htm The CF Server's user account (by default, the system account) is the one that is actually doing the filesystem access, not the user account that has the web

Re: Com and CFMX

2003-03-13 Thread Lewis Sellers
Btw. Didn't you get the memo from MM that said 'COM was dead'? j/k I thought the memo said CF was dead? /- --min ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: CFAdvocacy.org: Looking for contributors

2003-03-13 Thread Angel Stewart
You GO man! This is great! GO CF! Its your birthday! Go CF! We go'n party like its yo birthday! *puts hands in air* Uh huh! *shakes booty* ^_^ Hows that for a start on contributions! -Gel j/k great idea though! We need something like this. .ASP/.NET proponents Have dozens of published

RE: CF and PhotoShop

2003-03-13 Thread Justin Hansen
http://efflare.com/products/ These guys have very nice CFX Image maniplation tags. I use ImageFlare, it works great! Justin Hansen ~~ Uhlig Communications Systems Engineer ~~ [EMAIL PROTECTED] 913-754-4273 Office 816-695-4045 Mobile

CFX_PayFlowPro and CFMX

2003-03-13 Thread Ali Daniali
Has anyone run into issues with getting Verisign's Pay Flow Pro system and their customer tag CFX_PayFlowPro working with CFMX? I'm about to integrate this service and any help is appreciated. Thanks, Ali Daniali --- This message (including any

sql2k vs mySQL vs postgresql (for win2k)

2003-03-13 Thread dan martin
Thanks guys. This is great information. I am excited to try it out. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4

RE: CFX_PayFlowPro and CFMX

2003-03-13 Thread Mark W. Breneman
Ali, I can't say as I will be much help but, I can tell you that I have the same CFX_PayFlowPro and Verisign setup working fine. The setup/install was just as I expected. Set up the CFX in the CF admin and it just worked. Mark W. Breneman -Macromedia Certified ColdFusion Developer -Network /

RE: NTFS file permissions don't restrict access

2003-03-13 Thread Barney Boisvert
Very interesting. Not sure why you'd want to do it that way, but kind of cool. In light of this new information, I retract my previous statement, and humbly beg forgiveness for my contributions to a discussion to which I obvious have nothing to contribute. I haven't run CF on IIS since 4.5, so

SQL This (')

2003-03-13 Thread Harley Friedman
1. The only problem is the single quotes, which need to be converted to two single quotes in a row. The easiest way to do this is: cfset string=REReplace(string,','',All) If someone is crazy enough (and aren't those end users crazy!) to put two single quotes in a row in their text field, I'm

RE: CFAdvocacy.org: Looking for contributors

2003-03-13 Thread Edwards Robert (air0rae)
I think my mind's eye just went blind -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 2:10 PM To: CF-Talk Subject: RE: CFAdvocacy.org: Looking for contributors You GO man! This is great! GO CF! Its your birthday! Go CF! We go'n

RE: How to access row in loop

2003-03-13 Thread Jeff Battershall
Eric, I spotted an error in my code. It should be '#cdjwebdoc.cdweb[x].internetdescription#' not '#cdjwebdoc.cdweb.[x].internetdescription#'. Jeff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 1:56 PM To: CF-Talk Subject: RE: How

Non-CF Version of Encrypt() Function

2003-03-13 Thread Jay Jennings
We need a non-CF routine to do encrypt() and decrypt() on a production box that doesn't have CF installed. (This is for backwards compatibility.) Does anybody have such a beast? Or is the algorithm for those routines published so we can recreate them? Thanks. Jay Jennings

Re: NTLM Authentication

2003-03-13 Thread Jim McAtee
- Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 7:23 PM Subject: RE: NTLM Authentication If I enable Basic Authentication for an IIS 5 web site protected by NTFS ACLs, will Internet Explorer still use NTLM to

RE: Non-CF Version of Encrypt() Function

2003-03-13 Thread Ryan Kime
Last time I checked, the Encrypt()/Decrypt() functions of CF were 32-bit XOR-based. Someone correct me if I'm wrong. -Original Message- From: Jay Jennings [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 2:01 PM To: CF-Talk Subject: Non-CF Version of Encrypt() Function We need

Re: NTLM Authentication

2003-03-13 Thread Jochem van Dieten
Jim McAtee wrote: Thanks. Do you by any chance know if the Basic Authentication for a page requested via HTTPS will use an SSL encrypted dialog for the authentication? Yes. See RFC 2617. Jochem ~| Archives:

JRUN Gone Wild

2003-03-13 Thread Lewis Sellers
Off hand does anyone know how to restart the jrun.exe process when it go insane and starts using 90% + cpu (as it's aught to do every few minutes under load any load.) CFMX. Updater 2. W2K Pro SP3. --min ~| Archives:

  1   2   >