OT: FTP Server

2001-05-24 Thread Duane Boudreau
All, Can anyone suggest a decent and moderatly priced (~ $250) FTP server that will run as a service unter Win2k? TIA Duane Boudreau, Chief Techical Officer CFExperts, LLC Nashua, NH 603.620.8797 ~~ Structure your ColdFusion code with Fusebox.

Re: FTP Server

2001-05-24 Thread Dan Blickensderfer
Serv-U FTP http://www.cat-soft.com - Original Message - From: Duane Boudreau [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 2:16 PM Subject: OT: FTP Server All, Can anyone suggest a decent and moderatly priced (~ $250) FTP server that will run as a

OT:DNS2go

2001-05-24 Thread Duane Boudreau
Hi All, Has anyone here used the service DNS2Go from deerfield? Its supposed to be free dns hosting. If so how was/is reliability? TIA, Duane Boudreau, Chief Techical Officer CFExperts, LLC Nashua, NH 603.620.8797 ~~ Structure your ColdFusion

Re: OT: FTP Server

2001-05-24 Thread Paul Smith
The BEST FTP server is much less than $250. Only $40! SERV-U ver 3 Now runs as a service. I just bought ver 3 the other day for a new server and it sure is slick. I'll have to upgrade the older version I have on another server. http://www.serv-u.com/frame.asp?dest=dn.htm best, paul At

Strange Boolean Error

2001-05-24 Thread Paul Smith
Is it expected behavior that the error below DOES NOT occur when REQUEST.GetClientData.UserID=1 but DOES occur when REQUEST.GetClientData.UserID=3 ? CFAS 4.5.1 I cannot reproduce the error from my workstation. UserID=3 at his workstation can repeat the error at will. Would it be better to use

RE: OT: FTP Server

2001-05-24 Thread Duane Boudreau
Dan and Paul, That does the trick. Perfect solution for what I want to do (great price too) Thanks a bunch, Duane -Original Message- From: Paul Smith [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 2:43 AM To: CF-Talk Subject: Re: OT: FTP Server The BEST FTP server is much

Re: Generator was Harpoon Release is Final Available

2001-05-24 Thread Massimo Foti
Good point :-) I am not personally involved with similar projects, but I saw two good friends of mine (die.hard Flash geeks) dealing with Generator, Swift Generator, Flash Turbine and Ming, all of them doesn't appear that much bugs free at the moment... Well, at least Generator seems more

RE: DNS2go

2001-05-24 Thread Peter Tilbrook
It's quite good and very reliable. Its even better if you have a fast or permanent connection to the 'net. It can even update your system clock so that it is very accurate. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Duane Boudreau Sent: Friday, 25

FW: installation problems

2001-05-24 Thread borg
I got this one too. Got on to tech support and they were scriatching their heads - sent it back to Allaire to look at as a new issue. But the first thing they said was to install SP2 on Win2K. Hi I've encountered 2 really annoying problems lately. First one: trying to install CF

RE: Strange Boolean Error

2001-05-24 Thread David Shadovitz
Sure. O and 1 are boolean values, but 3 ain't. What is it you want to check? Whether a UserID is provided? -David On Wednesday, May 23, 2001 11:56 PM, Paul Smith [SMTP:[EMAIL PROTECTED]] wrote: Is it expected behavior that the error below DOES NOT occur when REQUEST.GetClientData.UserID=1

RE: problem looping around form fields and values

2001-05-24 Thread Ben Koshy
Hi Mark, Here you go: You have to first construct the exact the fully scoped variable name. You can see I added the CFSET Fname = Form. fname Line and then you use the evaluate function to return the actual value of the passed variable name. Corrected Code Attached:

RE: Storing Complex Variables in memory

2001-05-24 Thread alistair . davidson
Yes, WDDX is a good way round this problem, something like - Cfwddx action=CFML2WDDX input=#yourquery# output=CLIENT.query to serialize the query into a client variable, then on subsequent pages - cfwddx action=WDDX2CFML input=#CLIENT.query# output=yourquey to deserialize it back into a CF

HTTP Headers, firwalls and malicious users

2001-05-24 Thread Massimo Foti
Hi all, I know that you can't rely 100% on HTTP headers since most of them are not required by the HTTP specs, malicious users could alter the headers and I saw corporate firewalls configured in a way that strip most of the data out of the HTTP request from the browsers like removing the

RE: problem looping around form fields and values

2001-05-24 Thread Mark
Hi Ben, Thanks for the explanation!! The code works great on the first field (mailone), but then doesn't check any of the remaining fields. It loops through them, but seems any form variable after the first is not being checked by the REFindNoCase function because it lets any combination of

Re: HTTP Headers, firwalls and malicious users

2001-05-24 Thread Bud
On 5/24/01, Massimo Foti penned: I guess a code like this should catch any problem, isn't it? cfif isdefined(cgi.http_referer) AND cgi.http_referer NEQ It's not there or is empty /cfif I'm pretty sure that cgi variables are always present, just empty if not contained in the request or not

Re: OT: FTP Server

2001-05-24 Thread Bud
On 5/24/01, Duane Boudreau penned: Can anyone suggest a decent and moderatly priced (~ $250) FTP server that will run as a service unter Win2k? Serv-U Professional is 249.95. Best in the business as far as I know. http://www.serv-u.com/ -- Bud Schneehagen - Tropical Web Creations

Lock me up!

2001-05-24 Thread Michael Lugassy
3 quick Qs about Locking: 1. how do you set the right timeout value? i.e - what are the rules and opinions on that? (longer time or shorter and efficient? 2. throwonerror? yes or no? what is recommened? assuming the program may not use the current variable? 3. please look at this: 1.

RE: Good resource on CF/XML integration?

2001-05-24 Thread tom dyson
Hi Is there any good resources on CF/XML integration? Any good web sites?? I'm giving a free seminar on CF/XML integration sometime in June, in London, UK. You can sign up for it at http://torchbox.com/xml If you can't come, sign up anyway and I'll send you the support pack (documentation,

RE: Lock me up!

2001-05-24 Thread alistair . davidson
1. Depends on what you're locking! If you're locking application variables, you're probably best to go for 1 or two seconds. If you're locking access to a file, which might be locked for a lengthy writing process, go for something longer. In general, I go for one or two second timeouts with

Re: Lock me up!

2001-05-24 Thread Michael Lugassy
Great, but aren't structers considers a COMPLEX varialbe that you cannot easily copy, you forgot to add Duplicate() Thanks again! Michael Lugassy - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 12:04 PM Subject: RE: Lock me up!

Re: NT User authentication

2001-05-24 Thread Neil H.
You sure you can compare a set of credentials with the SAM by using advanced security? I have heard of COM objects but nothing natively in CF. Thanks, Neil - Original Message - From: Bryan LaPlante [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 1:38 AM

Re: HTTP Headers, firwalls and malicious users

2001-05-24 Thread Massimo Foti
Bud [EMAIL PROTECTED] wrote in message news:p04320405b7327f745737@[ I'm pretty sure that cgi variables are always present, just empty if not contained in the request or not supported by the web server, so you don't have to check if they are defined. Doing some tests, I've got a similar

RE: Stuck on SQL Query

2001-05-24 Thread Kevan . Windle
I wouldn't have built it like that. Would have had a third table user products ProdID | UserID | StepNo | 1 |2|3| 2 |3|2| Then from here you could easily select any combination of product, user and step. And it would be more flexible because you

RE: DNS2go

2001-05-24 Thread Duane Boudreau
Thanks Peter, I read the FAQ on the site and it looks like they don't support multiple url pointing at the same IP address, such as http://www.cfexperts.com http://yyy.cfexperts.com http://zzz.cfexperts.com Its not very clear, do you know if this is this true? Are there other Free (or close

RE: Stuck on SQL Query

2001-05-24 Thread Kevan . Windle
I wouldn't have built it like that. Would have had a third table user products ProdID | UserID | StepNo | 1 |2|3| 2 |3|2| Then from here you could easily select any combination of product, user and step. And it would be more flexible because you

OT Javascript question

2001-05-24 Thread Andy Ewings
I'm having a mind blankarghhh. I'm trying to incremtnet the value of a control in a form by one where part of the controls name is poassed in as a variable. Probably best I explain with the code snippet: function test(controlnum) { document.forms[0].interest + interest + .value =

RE: Lock me up!

2001-05-24 Thread alistair . davidson
cfparam name=coffee type=black Very true, I was assuming that your Application structure would be large and very complex, therefore you'd only want to copy the keys that you would actually need for that request. And you're right, if the Struct key is itself a complex variable, you should use

RE: OT Javascript question

2001-05-24 Thread alistair . davidson
Try function test(controlnum) { var theObject = eval( document.forms[0].interest + interest ); theObject.value = theObject.value + 1; } If it's a text input that you're using, you might have to convert the values between string and integer, something like theObject.value =

more locking questions

2001-05-24 Thread sebastian palmigiani
1. In a shared hosting environment if you do proper locking of session variables in your application and another application does not how does that affect you? 2. If the answer to number 1 is that it destabalizes your application would it then be better to have variables stored in cookies

Calling variables from within a custom tag

2001-05-24 Thread Steve Vosloo
I need to load a massive array into memory - I was going to do this in the application.cfm, but I need the data in a custom tag. Is there any way of accessing this info from within a CT? My other option would be to put all this info into an include, which I call from the CT. Can I cache an

Re: Good resource on CF/XML integration?

2001-05-24 Thread Dave Hannum
Paul, I had this up and running last evening on a 4.0 server. I loaded it up this morning on a 4.5.0.0 server and get the following message when I run the soxml tag: (running xml2cf) DOM Error Interface not registered | Line:0 The error occurred while processing an element with a general

RE: Calling variables from within a custom tag

2001-05-24 Thread Adkins, Randy
If you need it in other pages for the GIVEN user you can make is a SESSION variable. If the same data is used for all users and does not change often, you can make is an APPLICATION variable or place the array into a DB and call it. -Original Message- From: Steve Vosloo [mailto:[EMAIL

RE: HTTP Headers, firwalls and malicious users

2001-05-24 Thread Daniel Lancelot
It says as much in the CF documentation - cgi variables will always be defined - just empty if non-existant... -Original Message- From: Massimo Foti [mailto:[EMAIL PROTECTED]] Sent: 24 May 2001 11:45 To: CF-Talk Subject: Re: HTTP Headers, firwalls and malicious users Bud [EMAIL

RE: Calling variables from within a custom tag

2001-05-24 Thread Steve Vosloo
If I make it an application variable, I will need locks around every read (and there will be many reads) - will this not slow down my pages considerably? -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 2:29 PM To: CF-Talk Subject: RE:

ImageMagick COM Object or CFX tag

2001-05-24 Thread Jay Brushett
Hi all, I was wondering if anyone knows of or could give me advice on how to create either a COM object (best case, may be used for ASP too) or a CFX tag which implements the Imagick Magick graphics library. Thanks, Jay Strategy ~ Creativity ~ Technology Jay Brushett

CFINPUT onvalidate problem

2001-05-24 Thread Malcolm Taylor
I've written a JavaScript validation routine which seems to work correctly, returning true or false as appropriate. However, when I call it with onvalidate from within a CFINPUT statement, I always get a 'function expected' JavaScript error after it returns. Am I doing something wrong? Here's

RE: Strange Boolean Error

2001-05-24 Thread Paul Smith
UserID will always be provided, 0 if the user has not logged in, greater than 0 if they have logged in. The question is why I cannot replicate the failure from my workstation, Internet Exploder or NetScrape, but it always fails for my client? best, paul At 12:15 AM 5/24/01 -0700, you wrote:

RE: Lock me up!

2001-05-24 Thread Erika L. Walker
That was one of the best rundowns on CFLOCK I've been privy to! Thank you for the great insight! I've always been a bit mystified when it come to setting the proper timeouts. Erika (with a *K*) One of the greatest pains to human nature is the pain of a new idea. - Walter Bagehot

RE: OT Javascript question

2001-05-24 Thread DeVoil, Nick
Andy Does this work? function test(controlnum) { elt = document.forms[0][interest + interest]; elt.value = parseInt(elt.value) + 1; } Nick -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 12:18 PM To: CF-Talk Subject: OT Javascript

RE: CFINPUT onvalidate problem

2001-05-24 Thread Dan G. Switzer, II
Malcolm, Take a look at qForms: http://www.pengoworks.com/ It'll replace the need to use CFFORM and is much more powerful and flexible. -Dan -Original Message- From: Malcolm Taylor [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 8:42 AM To: CF-Talk Subject: CFINPUT

Re: HTTP Headers, firwalls and malicious users

2001-05-24 Thread Massimo Foti
Great, thanks, I clearly missed this Massîmo Daniel Lancelot [EMAIL PROTECTED] wrote in message It says as much in the CF documentation - cgi variables will always be defined - just empty if non-existant... ~~ Structure your ColdFusion code

RE: Calling variables from within a custom tag

2001-05-24 Thread Bob Silverberg
Read lock are _not supposed to_ slow your application down. I've never seen any actual numbers on this, but that has been my understanding. Allaire has stated that there is very little overhead to read-only locks. Bob -Original Message- From: Steve Vosloo [mailto:[EMAIL PROTECTED]]

Re: Good resource on CF/XML integration?

2001-05-24 Thread tom dyson
Make sure you have a reasonably current version of the MSXML parser on your 4.5 server: MSXML 3.0 will definitely handle all the SOXML stuff and is freely available from http://msdn.microsoft.com/xml/default.asp -+ tom dyson t: 01608 811870 m: 07958 752657 w: http://torchbox.com

RE: OT Javascript question

2001-05-24 Thread Andy Ewings
MopeI tried this Nick but it kept complaining at the ParseInt line saying object required. I can't see why it shouldn't work as the object definitely exists. I'm sure I've made a blindingly silly mistake so I'll persue with it after lunch :) -Original Message- From: DeVoil, Nick

Re: ImageMagick COM Object or CFX tag

2001-05-24 Thread Rey Bango
Jay, Take a look at ImageFolio.com. I'm not sure what you're trying to build but perhaps this product, which intergrates w/ ImageMagick, could help. Rey... Team Allaire.. - Original Message - From: Jay Brushett [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 24, 2001

RE: problem looping around form fields and values

2001-05-24 Thread David Shadovitz
Change cfparam name=ReturnCode default=0 to cfset ReturnCode=0 -David On Thursday, May 24, 2001 1:09 AM, Mark [SMTP:[EMAIL PROTECTED]] wrote: Hi Ben, Thanks for the explanation!! The code works great on the first field (mailone), but then doesn't check any of the remaining fields. It

RE: Calling variables from within a custom tag

2001-05-24 Thread Adkins, Randy
Does it need to be applied to everyone that enters the application or just to the user? -Original Message- From: Steve Vosloo [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 8:42 AM To: CF-Talk Subject: RE: Calling variables from within a custom tag If I make it an application

RE: Lock me up!

2001-05-24 Thread alistair . davidson
Glad to help - I only properly got my mind round it about a year ago (i.e. when we got a project in that was big enough to require it) Alistair Senior Web Developer Rocom New Media www.rocomx.net PS. You think Erika spelt with a c is bad? You wouldn't believe how many variations I've had on

Quick Question

2001-05-24 Thread Darren Adams
How do you set your profile for this list as on vacation ? Thanks, Darren Adams Web Developer Marketing Department Systems Union Office: 01252 55 6220 Mobile: 07714 817 038 Email: [EMAIL PROTECTED] Data + Structure = INFORMATION ~~ Structure

RE: Lock me up!

2001-05-24 Thread Raymond Camden
The CFLOCK tag beelow should use TYPE=ReadOnly since you are only copying, not writing to the App scope. By default CFLOCK is Exclusive. Ray Camden cftry cflock scope=APPLICATION timeout=2 throwonerror=YES cfset VARIABLES.CatName = APPLICATION.cats[url.catid].catNAME

RE: OT Javascript question

2001-05-24 Thread alistair . davidson
parseInt() is a method of the String object, so try elt.value = elt.value.parseInt() + 1; -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: 24 May 2001 13:58 To: CF-Talk Subject: RE: OT Javascript question MopeI tried this Nick but it kept complaining at the

RE: FTP Server

2001-05-24 Thread Dylan Bromby
i've used serv-u for 5 years. it's excellent. and DIRT cheap. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 11:17 AM To: CF-Talk Subject: OT: FTP Server All, Can anyone suggest a decent and moderatly priced (~ $250) FTP server that

security considerations

2001-05-24 Thread susan matthews
Morning List- I have just started with a relatively new department. We are in the process of switching to CF. I'm looking for any suggestions regarding security issues that should be included in our development policies. I've been reading up on sandboxes and cfauthentication. I'm

RE: Calling variables from within a custom tag

2001-05-24 Thread Steve Vosloo
Thanks. Any idea on how I turn an array into an application variable? Here is my array: cfset MM = ArrayNew(2) cfset MM[1][1] = 1 cfset MM[1][2] = Home cfset MM[1][3] = home.gif cfset MM[1][4] = index.cfm -Original Message- From: Bob Silverberg [mailto:[EMAIL

RE: NT User authentication

2001-05-24 Thread Thomas Chiverton
You sure you can compare a set of credentials with the SAM by using advanced security? I have heard of COM objects but nothing natively in CF. There are quite a few custom tags to do that. ~~ Structure your ColdFusion code with Fusebox. Get

RE: Lock me up!

2001-05-24 Thread alistair . davidson
True. My apologies, I'm having a BAAD day -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 24 May 2001 14:14 To: CF-Talk Subject: RE: Lock me up! The CFLOCK tag beelow should use TYPE=ReadOnly since you are only copying, not writing to the App scope. By

RE: Calling variables from within a custom tag

2001-05-24 Thread Steve Vosloo
To everyone, I'm using it to build the various menu systems (up to 7 levels deep!) - thus every page on the site will be calling this custom tag. -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 3:06 PM To: CF-Talk Subject: RE:

RE: Quick Question

2001-05-24 Thread Adkins, Randy
actually it is best to unsubscribe then resubscribe therefore no one will get your vacation message when they POST to the list. This would be for the consideration of all members on the list. To find out what is missed while you were unsubscribed, simply look at the archives. -Original

RE: ImageMagick COM Object or CFX tag

2001-05-24 Thread Malcolm Taylor
We've implemented a number of applications which call ImageMagick processes through CFEXECUTE and they seem to work very reliably. If you need some sample code, let me know. -Original Message- From: Jay Brushett [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 6:17 AM To: CF-Talk

RE: Calling variables from within a custom tag

2001-05-24 Thread Raymond Camden
Nothing 'magical' is needed to turn an array into app var, you just set it. cfset MM = ArrayNew(2) cfset MM[1][1] = 1 cfset MM[1][2] = Home cfset MM[1][3] = home.gif cfset MM[1][4] = index.cfm CFLOCK SCOPE=Application TYPE=Exclusive TIMEOUT=30 CFSET

OT: Recommendations for Forums

2001-05-24 Thread W Luke
Hi, There are a number of PHP forums that I like (such as http://www.vbulletin.com/), but unfortunately my hosters don't support PHP. Can anyone recommend a fully-featured forum for installation (not encrypted), in CF? Thanks Will ~~ Structure

Attributes Scoped Structure?

2001-05-24 Thread Brad Roberts
Can you set a structure in the attributes scope? I'm wondering why this isn't working: cfset attributes.temp=structnew() I get the following error: Cannot assign result to symbol attributes.temp Thanks in advance, Brad ~~ Structure your

RE: DNS2go

2001-05-24 Thread Mike Amburn
http://www.no-ip.com -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 7:07 PM To: CF-Talk Subject: RE: DNS2go Thanks Peter, I read the FAQ on the site and it looks like they don't support multiple url pointing at the same IP

RE: All cfm pages give error on new Windows 2000 server

2001-05-24 Thread Earl, George
Thanks to all who answered my plea for help. The situation is still not resolved, but I have more detailed and better information about the problem. The 'problem' server is in another building in our complex and sits in a different domain from the one I am in. The administrator for the web

RE: OT Javascript question

2001-05-24 Thread Andy Ewings
Nick et all. Thanks for all your help. After a huge lunch and a MacDonalds Ice cream I saw clearly again and realised that Nick's solution worked.just my typing was pretty bad. :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 24 May 2001 14:15 To:

RE: more locking questions

2001-05-24 Thread Dave Watts
1. In a shared hosting environment if you do proper locking of session variables in your application and another application does not how does that affect you? Negatively. That is, you can be as vigilant as possible with locking, but if another application isn't, that application may cause

RE: NT User authentication

2001-05-24 Thread Dave Watts
You sure you can compare a set of credentials with the SAM by using advanced security? I have heard of COM objects but nothing natively in CF. Yes, you can authenticate against NT using advanced security. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax:

Re: Good resource on CF/XML integration?

2001-05-24 Thread Dave Hannum
Well, I'm running Win2K and IE 5.5, so I should not need that. But I installed it anyway and I still get the same error: Now, I am running 4.5.0.0 CFServer. Could it be a problem with that? I'll go out and upgrade to 4.5.1 if you think that would help. Thanks, Dave Error Diagnostic

Weird CF error that is only on Mac machines?

2001-05-24 Thread Marc J. Mataya
Anyone know of any form issues with Macs? I have a data editing form page that keeps breaking on Mac machines only when they submit the form to save. It happens on the server with my saving code that does CFUPDATE. For some reason, my CFIF that looks for saveForm=Edit is coming back as

Re: Lock me up!

2001-05-24 Thread Michael Lugassy
That's wasn't even my question (If to use EXCLUSIVE or READONLY). I know that alreday. my problem was wheter to use a bigger CFLOCK around multiple lines or to use 2 small CFLOCKs, assuming that the multiple line contains only html and is not holding back the lock in a special way (is it?)

Re: OT Javascript question

2001-05-24 Thread Stuart Duncan
I had to do a lot of form mathematics with javascript, and in order to force the fields to recognize the fields as numerics instead of strings, I had to parsefloat() around the value. So my form fields looked like this. parseFloat(document.form.field.value) + 1; In your case, you may have

RE: Quick Question

2001-05-24 Thread Darren Adams
Cheers ! cf_holiday work=No relax=lots Hope you have a good week whilst I am away relaxing and drinking beer ! /cf_holiday -Daz -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED]] Sent: 24 May 2001 14:46 To: CF-Talk Subject: RE: Quick Question actually it is best to

RE: ImageMagick COM Object or CFX tag

2001-05-24 Thread Arden Weiss
Where can imagemagick be found -- tried http://www.imagemagick.com/ -- no go. ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Malcolm Taylor [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 9:52 AM To:

RE: ImageMagick COM Object or CFX tag

2001-05-24 Thread Jay Brushett
Yeah, that's how I have it working now. I was just hoping to use the Magick++ api or such. Seems like it shouldn't be too hard to construct a COM or CFX container around the C++ functions but my C++ skills are a bit rusty. Thanks for the reply though, Jay At 09:51 AM 5/24/2001 -0400, you

RE: Calling variables from within a custom tag

2001-05-24 Thread Adkins, Randy
If it is based on the USER then make is SESSION: CFSET Session.MM = ArrayNew() Else if used exactly the same for ALL users: cfset appliction.MM= ArrayNew() -Original Message- From: Steve Vosloo [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 9:43 AM To: CF-Talk Subject: RE:

RE: Attributes Scoped Structure?

2001-05-24 Thread Howarth, Craig (IBK-NY)
Brad, The attributes scope can only be used within a custom tag. This is the error message that you get when you attempt to assign a value to the attributes scope in a normal template. Craig -Original Message- From: Brad Roberts [SMTP:[EMAIL PROTECTED]] Sent: Thursday, May 24,

RE: Calling variables from within a custom tag

2001-05-24 Thread Steve Vosloo
Excellent. Then how do I access MM[1][2] please? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 3:54 PM To: CF-Talk Subject: RE: Calling variables from within a custom tag Nothing 'magical' is needed to turn an array into app

RE: Recommendations for Forums

2001-05-24 Thread Semrau, Steven L Mr SRA
Try the ForumSpot @ http://www.forumspot.org/index.cfm Steven Semrau SRA International, Inc. Senior Member, Professional Staff [EMAIL PROTECTED] [EMAIL PROTECTED] Com: (703) 805-1095 DSN: (703) 655-1095 -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent: Thursday, May

RE: All cfm pages give error on new Windows 2000 server

2001-05-24 Thread Dave Watts
The 'problem' server is in another building in our complex and sits in a different domain from the one I am in. The administrator for the web server is able to access .cfm files just fine from the web server itself and from his own personal workstation that is in the same domain as the

Re: Good resource on CF/XML integration?

2001-05-24 Thread Dave Hannum
Well, well, well. It's a CF4.0.0 problem. I upgraded to CF4.5.1 SP2 and it works fine. FYI for any interested . . . Dave - Original Message - From: tom dyson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 8:58 AM Subject: Re: Good resource on CF/XML

RE: Attributes Scoped Structure?

2001-05-24 Thread Craig Dudley
Not sure Brad, but if you're trying to have the struct accessible in a custom tag, you could maybe use, cfset request.temp=structnew() Regards, Craig. -Original Message- From: Brad Roberts [mailto:[EMAIL PROTECTED]] Sent: 24 May 2001 14:55 To: CF-Talk Subject: Attributes Scoped

Re: All cfm pages give error on new Windows 2000 server

2001-05-24 Thread Michael Ross
Have you check to make sure the .cfm mimi type has been registered? Sometimes in W2K it gives you that problem. Thanks [EMAIL PROTECTED] 05/23/01 11:29AM Our server people are setting up a new box with Windows 2000 Advanced server and CF 4.5.1 SP2 Enterprise edition. We keep getting the error

Dynamic variable names

2001-05-24 Thread Andy Ewings
Can you have dynamic variable names in CF?e.g in an action page could you have something like - cfset thelist = cfloop from=1 to=3 index=id cfset thevalue = Evaluate(form.fieldnum #id#) cfset thelist = ListAppend(thelist, thevalue) /cfloop where there are form fileds

Can anyone recommend a good UltraDev Mailing List?

2001-05-24 Thread John McKown
We are just starting to adopt MM UltraDev here in the office to use alongside CF Studio, and I was wondering if anyone knew of a good Ultradev mailing list somewhere. Preferably with a slant towards CF coders. John McKown Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 Local:

RE: ImageMagick COM Object or CFX tag

2001-05-24 Thread Jay Brushett
http://www.imagemagick.org/ Jay At 10:29 AM 5/24/2001 -0400, you wrote: Where can imagemagick be found -- tried http://www.imagemagick.com/ -- no go. ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Malcolm Taylor

RE: Good resource on CF/XML integration?

2001-05-24 Thread Greg Jordan
Dave use CF_ObjectDump to see what results you are getting. Also, if you are using cfhttp/get to grab some xml data or file, and there is a querystring involved, make sure you use URLEncodedFormat with the string. Greg -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]]

RE: Calling variables from within a custom tag

2001-05-24 Thread Raymond Camden
You mean display it? just CFOUTPUT mm[1][2]. Or if you want to copy the value, CFSET Temp = MM[1][2] === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email : [EMAIL PROTECTED] ICQ UIN : 3679482 My

Need a bad word list

2001-05-24 Thread Art Broussard
I was wondering if anyone knows of a place I can get a list of bad words. I want to replace bad words with good words before anything is posted to my site. When I have a good list put together I can let every one know so they can have a copy if they want. Thanks Art

RE: winzip and cfexecute

2001-05-24 Thread Kevan . Windle
I must be missing something. Do I have to do any setup on winzip. If I call it from cfexecute it, I can see winzip from task manager but it just hangs and then cf times out, and if I use it from the command line it just opens winzip and does nothing? -Original Message- From: dave fauth

RE: Calling variables from within a custom tag

2001-05-24 Thread Semrau, Steven L Mr SRA
One way is: cfloop index=x from=1 to=#somenumber# cfloop index=y from=1 to=#someothernumber# #MM[x][y]# /cfloop /cfloop Steven Semrau SRA International, Inc. Senior Member, Professional Staff [EMAIL PROTECTED] [EMAIL PROTECTED] Com: (703) 805-1095 DSN: (703)

RE: ImageMagick COM Object or CFX tag

2001-05-24 Thread Malcolm Taylor
http://www.imagemagick.org -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 10:30 AM To: CF-Talk Subject: RE: ImageMagick COM Object or CFX tag Where can imagemagick be found -- tried http://www.imagemagick.com/ -- no go. ^ / \__

CF Wireless web

2001-05-24 Thread Michael S. Kimmett
Howdy, Does anyone know of some good sources for learning wireless web protocol? Also in the past, I think on CF message boards is where I saw it, was a listing of all the websites where you could download wireless emulators for testing your wireless app. Does anyone remember this links or

RE: problem looping around form fields and values

2001-05-24 Thread Mark
David -- Thanks, forgot about the cfparam resetting the variable. It works fine now! Mark --- David Shadovitz [EMAIL PROTECTED] wrote: Change cfparam name=ReturnCode default=0 to cfset ReturnCode=0 -David On Thursday, May 24, 2001 1:09 AM, Mark [SMTP:[EMAIL PROTECTED]] wrote: Hi Ben,

Re: All cfm pages give error on new Windows 2000 server

2001-05-24 Thread Tracy Bost
I don't know if this has been suggested, but it could have something to do under the service that coldfusion server is running under... is it running under the system account or under a specified account. You may want to check that out. I say this because I ran into something similiar before

CFX resources

2001-05-24 Thread Jay Brushett
Hi all, No matter how much I look I cannot seem to locate a good reference for creating CFX tags. I've been through the Allaire doc's but I want to know what other languages you can use to create CFX tags. TIA, Jay Strategy ~ Creativity ~ Technology Jay Brushett [EMAIL

Re: Attributes Scoped Structure?

2001-05-24 Thread Jason Lotz
That's not true. Fusebox uses nothing but Attributes scoped variables. You can set Attributes variables anywhere. - Original Message - From: Howarth, Craig (IBK-NY) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, May 24, 2001 7:36 AM Subject: RE: Attributes Scoped

RE: Problem with cf_uicalender (WORKAROUND) and undocumented func tions

2001-05-24 Thread Thomas Chiverton
Nope. No reply on the Allaire forums either. Which is an arse as I want to use it ! WARNING: this is not the Right Way - but if you really want to use the calender in non-popup mode and cant wait for the offical fix: 1) Get the 30 day Flash 5 trial from macromedia.com 2) Load the

RE: Hosting????

2001-05-24 Thread Claremont, Timothy S
I am having very good luck with CrystalTech. Tim Claremont Webmaster -Original Message- From: Neil H.

RE: Dynamic variable names

2001-05-24 Thread DeVoil, Nick
How about cfset thelist = cfloop from=1 to=3 index=id cfset thelist = ListAppend(thelist, Evaluate(form.fieldnum#id#)) /cfloop Nick -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 4:23 PM To: CF-Talk Subject: Dynamic variable names

RE: Dynamic variable names

2001-05-24 Thread Dylan Bromby
yes you can do it. i use Evaluate() with dynamic values all the time. try removing the from #id#. if that doesn't work (it should), try something like: cfset thelist = cfloop from=1 to=3 index=id cfset tempvalue = form.fieldnum#id# cfset thevalue = Evaluate(tempvalue)

  1   2   >