Re: Neat error message

2007-02-12 Thread Robertson-Ravo, Neil (RX)
Lol, I do plan to! This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the

FREE Flex and Coldfusion Training Site Countdown

2007-02-12 Thread Dale Fraser
Excuse the self promotion, but it is free. http://dale.fraser.id.au/blog/index.cfm/2007/2/12/FREE-Flex-and-Coldfusion-T raining-Site-Countdown Regards Dale Fraser http://dale.fraser.id.au/blog/ ~| Upgrade to Adobe

Re: reFine :: search and replace for tag attribute

2007-02-12 Thread Rob Wilkerson
If you're using CFEclipse or, I think Homsite supported this as well, you can run a find and replace operation against a set of project files. The find can specify a regex and the replace can include backreferences, if necessary. On 2/11/07, AJ Mercer [EMAIL PROTECTED] wrote: Hi All, I have a

Regex Help

2007-02-12 Thread Steve LaBadie
I have been playing around with some regex patterns and have run into a snag. One issue the regex works differently in IE6 and Firefox. I didn't know the regex would behave differently in these browsers. The main issue is validating the use of character class (@#$^_*). Do I need to escape these?

RE: Fusebox Web Site Design Contest Announced

2007-02-12 Thread Andy Matthews
Matt... Why are you being a jerk? It's obvious to me that all you're trying to do is to stir up trouble. If you had taken even a few moments to read the links that I posted in my second email, you would have read that there are LOADS of orgranizations who feel the same way I do about spec work.

RE: Fusebox Web Site Design Contest Announced

2007-02-12 Thread Andy Matthews
Again... Take a few moments to read what Jeffrey Zeldman has to say about design contests? I'm sorry...did you say Jeffrey Who? Maybe I'm not the only one who should be looking for another career. -Original Message- From: Matt Quackenbush [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: Fusebox Web Site Design Contest Announced

2007-02-12 Thread Andy Matthews
I apologize for the last two emails I sent out. This conversation was obviously over with and I started it up again. Please don't responsd to either of these. I'm the one being a jerk. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 8:18

Re: Fusebox Web Site Design Contest Announced

2007-02-12 Thread Doug Brown
Well, I liked the idea. I am not a designer by no means of the word, but thought it would be fun to enter. I do not know how my design will fair against others with alot more experience than me, but hey at least I tried. I have never tried to design a page before and it made me think outside the

cfmx java update for dst

2007-02-12 Thread Bosky, Dave
What needs to be changed in CFMX 6.1 regarding the daylight saving time issue? Do I simply need to install the JDK 1.4.2_11 and change the JVM location in CF Admin (Java and JVM Settings) to point to the new JVM location? Thanks, Dave

CFLDAP and Account Lockout

2007-02-12 Thread Michael Beins
When using cfldap, does the authentication inherrit a networks security policy. Ex: Account lockout after five invalid log in attemps, etc... ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create

Re: Strange CF Install Problem

2007-02-12 Thread Michael Wright
Yes I had PLESK on the server and found something on their site about running the reconfigurator after installing CF. I did this as per their instructions but still no joy. I've even gone as far as uninstalling plesk, CF and IIS and then reinstalling IIS (no username/password asked for)then

RE: Regex Help

2007-02-12 Thread Bobby Hartsfield
You will need to escape SOME of them. All of those will need to be escaped when literally trying to match them + * ? . [ ^ $ ( ) { | \ There is also a [:punct:] that matches all of these characters ! ' # S % ` ( ) * + , - . / : ; = ? @ [ / ] ^ _ { | } ~ Are you trying to match the EXACT

RE: Regex Help

2007-02-12 Thread Bobby Hartsfield
All of those will need to be escaped when literally trying to match them + * ? . [ ^ $ ( ) { | \ All of THESE not those :-) -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 10:08 AM To: CF-Talk Subject: RE: Regex Help You will need

RE: Neat error message

2007-02-12 Thread mark
It is safer that way. 24 is addictive. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Sunday, February 11, 2007 5:53 PM To: CF-Talk Subject: Re: Neat error message You know, I haven't even seen one episode of 24! This e-mail is from Reed

Re: Neat error message

2007-02-12 Thread Doug Brown
That is for sure. cfset 24 = my drug of choice Doug B. - Original Message - From: mark [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, February 12, 2007 8:13 AM Subject: RE: Neat error message It is safer that way. 24 is addictive. -Original

Re: cfchart woes - vertical labels like 3.70333333

2007-02-12 Thread Jake Pilgrim
I have ran into this before... Here's the fix I used: cfchart gridlines=11 scaleFrom=0 scaleTo=100 /cfchart This will display a graph with each gridLine representing 10. The trick here is that scaleTo / (gridlines + 1) should equal an integer value. You add one to the gridlines value

Re: cfchart woes - vertical labels like 3.70333333

2007-02-12 Thread Ryan Stille
AJ that was very helpful. It worked great until I changed my gridLines value from 10 to something else. But it led me to discover this formula that seems to always produce whole number labels - scaleTo must be evenly divisible by (gridLines - 1) Thanks! -Ryan AJ Mercer wrote: From memory,

Re: Solution - GoDaddy and FlashForms

2007-02-12 Thread Josh Knopp
I use ScriptSrc attribute in the CFFORM tag to get around this issue. Dave and Mike, That sounds a LOT more graceful. I tried a few things with scriptsrc prior to posting my hack fix, but I wasn't able to get it working; maybe I don't completely understand it. The good news is, GoDaddy has

RE: Regex Help

2007-02-12 Thread Steve LaBadie
Bobby, I get an invalid token | found error. To answer your question my match is predicated on one of these characters (@#$^_*) being present. ^(?=.*[A-Za-z])(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?!.*[^A-Za-z0-9@|#|\$|\ ^|_|\*])(?!.*s).{8,127}$

Re: Regex Help

2007-02-12 Thread Ben Doom
Since you say that it behaves differently in IE vs FF, does that mean that you are writing these in JavaScript? Are they being passed in a CFForm tag, or sent directly? Are you double-pounding (##) as necessary to escape the pound sign in a CFOUTPUT block? --Ben Doom Steve LaBadie wrote:

RE: Regex Help

2007-02-12 Thread Steve Brownlee
Steve, I think this is the pattern you're looking for. ^(?=.*[A-Za-z])(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[\$|@|#|\^|_|\*]).{ 8,127} If you include the following lookahead (?!.*[^A-Za-z0-9]) Then that basically negates the special characters pattern because it's saying none of the

Web based HTML Editor recommendations please

2007-02-12 Thread Daniel Roberts
I've been looking around at various html editors available KTML, ActivEdit, FCKeditor and others. I wanted to get some opinions from the list. This would be for use by our clients in primarily two seperate apps. The first app just requires a few basic formatting options. This is currently

cfcUnit Configuration Management

2007-02-12 Thread Jamie Jackson
I just got my first cfcUnit test going and automated in Eclipse. Now, I'm wondering about configuration management... My CFML sites generally are structured on the server in the same way they're stored in SVN. Each server has an SVN working copy, and I can deploy with simple svn updates. I'm not

RE: Regex Help

2007-02-12 Thread Steve LaBadie
The only thing I am using JS for is to compare that the passwords match. I am using CFFORM CFINPUT. cfinput type=text name=pass maxlength=127 size=28 validate=regular_expression pattern=^(?=.*[A-Za-z])(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?!.*[^A-Za-z0- 9])(?!.*s).{8,127}$ class=formveld / cfinput

RE: Regex Help

2007-02-12 Thread Steve LaBadie
Steve, I still get an invalid token error Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED] http://www.esu.edu ~| Upgrade to Adobe ColdFusion MX7

RE: Regex Help

2007-02-12 Thread Steve Brownlee
Steve, As for the CFML construct not found message, I'm going out on a limb and guessing it's because you have the pound sign in the regular expression. Somehow that's messing up a matching set of pound signs for CFML parsing. Check your code around that statement and see where else you're using

RE: Regex Help

2007-02-12 Thread Steve LaBadie
Steve, I doubled the # in the code and it worked in Firefox, but does not work in IE6 Why would that be? Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED] http://www.esu.edu -Original Message- From:

Quick help on a mod rewrite rule

2007-02-12 Thread Mark A Kruger
I apologize for those of you who may have seen this post on another list this morning... I'm having trouble finding an answer. I really suck at these. I need a rule that will turn this: http://www.wheretobuild.com/States/xq/ASP/StateName.Kansas/qx/index.htm Into this:

RE: Regex Help

2007-02-12 Thread Steve Brownlee
What happens in IE? It's not the RegEx because that's compiled long before you view the results in the browser, so I'm going with Ben's previous post that it's some other factor. Something in Javascript perhaps. Describe what happens in IE. Steve Brownlee http://www.fusioncube.net/

regular expression - callback function

2007-02-12 Thread Peter Boughton
Hello. Does anyone know how I can implement a regex callback? ie: I have the following code: cfset Content = REReplace(Content,'''cfif \(Var\(([^,]+),([^]+))\) ([A-Z]+) ([^]+\)', '''cfif (Var(\1),\2)) \3 \4', all)/ And I need to run a function on \1, \3 and \4 as they are replaced. I'm fairly

RE: Regex Help

2007-02-12 Thread Steve LaBadie
I get an alert box that appears that says error in password text Steve LaBadie, Web Manager East Stroudsburg University 200 Prospect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED] http://www.esu.edu ~| Upgrade

RE: Quick help on a mod rewrite rule

2007-02-12 Thread Steve Brownlee
Mark, What web server are you using? Steve Brownlee http://www.fusioncube.net/ -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 11:48 AM To: CF-Talk Subject: Quick help on a mod rewrite rule I apologize for those of you who may have

RE: Quick help on a mod rewrite rule

2007-02-12 Thread Russ
Well I'm not going to do a very good job without seeing the rest of the samples... but something like this: RewriteCond %{HTTP_HOST}^www.wheretobuild.com$ [NC] RewriteCond %{REQUEST_URI} ^/States/xq/ASP/StateName\.(.+)+/qx/index.htm$ [NC] RewriteRule ^/(.*)$ http://

RE: Quick help on a mod rewrite rule

2007-02-12 Thread Russ
Pretty sure it's apache, since he mentioned mod_rewrite... Russ -Original Message- From: Steve Brownlee [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 11:53 AM To: CF-Talk Subject: RE: Quick help on a mod rewrite rule Mark, What web server are you using? Steve

Re: Divs not looking right in NS

2007-02-12 Thread Tom Chiverton
On Friday 09 Feb 2007, Doug Brown wrote: I have a little search function that is directly below the main menu that does not look right in NS (Nested divs). People still test against Netscape ? -- Tom Chiverton Helping to confidentially innovate distributed applications

Re: Quick help on a mod rewrite rule

2007-02-12 Thread Ryan Stille
To do this in apache, you don't even need mod_rewrite. RedirectMatch /States/xq/ASP/StateName\.(\w+)/qx/index.htm /States/index.cfm?StateName=$1 Don't know if IIS has something like RedirectMatch or not... -Ryan Russ wrote: Pretty sure it's apache, since he mentioned mod_rewrite... Russ

RE: Flash Form Waiting Animation

2007-02-12 Thread Kevin Aebig
Well here's a small suggestion. Set the timeout of the form to be extremely high so that the Flex Engine doesn't recompile it on ever request... that should definitely help. As for the running clock, I've never had to force it to show while loading, it simply has just always been there when I

Re: Virtual Pages and Paths

2007-02-12 Thread Charles Heizer
Thanks, I thought this might be the only way. So it's the path I'm on. Thanks again, - Charles On Feb 11, 2007, at 11:03 AM, Casey Dougall wrote: I'd recomend doing the opisite. When the user creates a page, you actually create a real page on the server in that directory. When the

Re: Web based HTML Editor recommendations please

2007-02-12 Thread Charles Heizer
I use TinyMCE it works really well with IE and Firefox, and it's really easy to setup and configure. - Charles On Feb 12, 2007, at 8:03 AM, Daniel Roberts wrote: I've been looking around at various html editors available KTML, ActivEdit, FCKeditor and others. I wanted to get some

dereference a scalar variable

2007-02-12 Thread David Pedersen
Does anyone know how to fix this error or can give me a direction to take on solving this issue? I have a .cfc the is suppose to get the record by the AutoNum in the SQL DB. I pass the variable through the url, and I need it to return an Email and Type columns from the db. I can get it to

RE: Quick help on a mod rewrite rule

2007-02-12 Thread Mark A Kruger
Actually no ... It's IIS - but I'm using an ISAPI filter that mimics mod rewrite... -mark -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 10:57 AM To: CF-Talk Subject: RE: Quick help on a mod rewrite rule Pretty sure it's apache, since he

Re: dereference a scalar variable

2007-02-12 Thread Adrian
AFAIK, type is a reserved word in most every language/platform. in your sql, try [type] as MyType On 12/02/07, David Pedersen [EMAIL PROTECTED] wrote: Does anyone know how to fix this error or can give me a direction to take on solving this issue? I have a .cfc the is suppose to get the

RE: Quick help on a mod rewrite rule

2007-02-12 Thread Mark A Kruger
This would possibly work except it is not flexible. I have other URLs that contain params.. Sometimes more than 1. I need to be able to: 1. match the first part of the URL 2. Discard the end part - the part that is /qx/index.htm 3. Turn the middle part into a query string 4. Rewrite the URL to

Re: Web based HTML Editor recommendations please

2007-02-12 Thread Will Tomlinson
I've been looking around at various html editors available KTML, ActivEdit, FCKeditor and others. I wanted to get some opinions from the list. +1 for TinyMCE. It has a more-pronounceable too! Will ~| Upgrade to Adobe

Re: Send a photo as email attachment to a CF app

2007-02-12 Thread Jacqueline Olexa
Hi, I'm looking for a better solution for following scenario: I have a series of people sending photo's as email attachment to a mailbox. My CF app pops the mailbox on a regular base and processes the photo's into a online overview (photo blogging). Doesn't really sound as an odd scenario

RE: Web based HTML Editor recommendations please

2007-02-12 Thread Bobby Hartsfield
-1 for TinyMCE and +1 for FCKeditor ;-) -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 11:23 AM To: CF-Talk Subject: Re: Web based HTML Editor recommendations please I've been looking around at various html editors available KTML,

Re: Flash Form Waiting Animation

2007-02-12 Thread Will Tomlinson
I have a pretty sophisticated Flash CFFORM that takes about 15 seconds to initialize and load. Is there a way I can present the user with an animated waiting GIF first in the frame where the CFFORM goes so they don't get discouraged and click off the page? I remember a while back a guy posted

Re: dereference a scalar variable

2007-02-12 Thread Kris Jones
Type is reserved. Try aliasing it in your query to something else? Does anyone know how to fix this error or can give me a direction to take on solving this issue? I have a .cfc the is suppose to get the record by the AutoNum in the SQL DB. I pass the variable through the url, and I need

Issues with cfexecute in cfmx7?

2007-02-12 Thread Ryan Stille
I am converting an app from CF5 to CF7. This application makes use of an external program (htmdoc) to convert html into PDFs. The problem is when I feed it large html documents (200-300kb), it hangs when I cfexecute it. When I run the exact same command at a command prompt, it runs just

Re: Web based HTML Editor recommendations please

2007-02-12 Thread Jerry Johnson
TinyMCE +1 On 2/12/07, Bobby Hartsfield [EMAIL PROTECTED] wrote: -1 for TinyMCE and +1 for FCKeditor ;-) -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 11:23 AM To: CF-Talk Subject: Re: Web based HTML Editor recommendations please

RE: Quick help on a mod rewrite rule

2007-02-12 Thread Russ
Well I think that's the problem right there... you're not using Apache and mod_rewrite. I know I can probably figure out the syntax, but I'll let one of the people who claim that IIS is just as good as apache lend a hand... since they use the functionality in IIS all the time... Russ

ColdSpring - What's my DAO do?

2007-02-12 Thread Adam Roussos
All, I am still trying wrap my head around using ColdSpring+ModelGlue and focusing on getting my best practices right. That said, there is one major question that I am struggling with. As for some background, I have modeled my CS+MG development around Brian Kotek's excellent article on

RE: CFLDAP and Account Lockout

2007-02-12 Thread Dave Watts
When using cfldap, does the authentication inherrit a networks security policy. Ex: Account lockout after five invalid log in attemps, etc... No, but your CFLDAP queries will be subject to the limitations imposed by that policy. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

RE: Strange CF Install Problem

2007-02-12 Thread Dave Watts
I've just installed CF 7.02 on windows 2003 using the server config and all IIS sites, but at the end of the install just as it opens the administrator for the first time a popup comes up asking for a username and password for localhost. Make sure that the IIS anonymous user account has

Re: Web based HTML Editor recommendations please

2007-02-12 Thread Jake Pilgrim
Here's what I have used in the past, with feedback: FCK Editor - The best product I have found thus far. Prior versions were less than remarkable, but their latest versions are excellent! Very customizable, very cross-platform compatible, and does not require any additional plugins (Java,

RE: Issues with cfexecute in cfmx7?

2007-02-12 Thread Gaulin, Mark
Have you ever gotten in to work on cfmx7, or does it fail on every file? If it fails all of time, even on trivial inputs, then I would suspect permissions problems... Maybe temp directories or something like that. One way to test that angle is to login using the same account that cfmx will run

Re: Web based HTML Editor recommendations please

2007-02-12 Thread Yves Arsenault
I've loved using FCK Editor as well... +1 FCKEditor. Yves On 2/12/07, Jake Pilgrim [EMAIL PROTECTED] wrote: Here's what I have used in the past, with feedback: FCK Editor - The best product I have found thus far. Prior versions were less than remarkable, but their latest versions are

Re: Web based HTML Editor recommendations please

2007-02-12 Thread John Blayter
Whatever you do DO NOT go with soEditor. I purchased a license a few years ago and they do not respond to the support emails nor do I think they have any plans for upgrading it at all. I moved over to a FCKEditor and have never looked back. On 2/12/07, Jake Pilgrim [EMAIL PROTECTED] wrote:

RE: Quick help on a mod rewrite rule

2007-02-12 Thread Dave Watts
Well I think that's the problem right there... you're not using Apache and mod_rewrite. I know I can probably figure out the syntax, but I'll let one of the people who claim that IIS is just as good as apache lend a hand... since they use the functionality in IIS all the time... I'll

RE: regular expression - callback function

2007-02-12 Thread Ben Nadel
Peter, I have function that handles something similar: http://www.bennadel.com/blog/191-REReplace-Java-Function-Pointers-Freaki n-Sexy-.htm OR: http://www.bennadel.com/index.cfm?dax=blog:191.view Take a look and that and see if it helps. It basically takes a function pointer that will be

Re: Web based HTML Editor recommendations please

2007-02-12 Thread Rick Root
+1 FCKeditor I like how it autodetects pastes from word and offers you the ability to clean it up. I got tired of telling my clients to click the Paste from word icon instead, so the autodetect feature is nice. ~| Upgrade to

Re: regular expression - callback function

2007-02-12 Thread Peter Boughton
Thanks Ben, that's great! :D I did solve my main problem another way, but I should be able to get more elegant code with your method, so I'll have another go tomorrow. Peter, I have function that handles something similar:

Re: Web based HTML Editor recommendations please

2007-02-12 Thread Jake Pilgrim
Yes - support is non-existent with the soEditor. Now about a year or more ago, I received an email that said that they were releasing a new version of the soEditor. The email even included a link to a page which seemed to be an incomplete purchase page (just missing the buy link). Shortly

RE: Web based HTML Editor recommendations please

2007-02-12 Thread Ben Nadel
Xstandard is freakin' sweet! It's what we use with all our new clients. It's activeX but totally worth it. Fully customizable web services, produces ONLY XHTML valid content (doesn't even let you fudge bad code - keeps you coding the right way). Drag and drop upload, paste from word format, paste

RE: regular expression - callback function

2007-02-12 Thread Ben Nadel
No worries dude. Solutions are solutions :) Let me know if you run into any road blocks that I can help you with. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From:

RE: CF and Flash Remoting

2007-02-12 Thread Kevin Aebig
If you still need help with this, I would suggest emailing me offlist. Cheers, !k -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 10:56 AM To: CF-Talk Subject: Re: CF and Flash Remoting I'm seeing the exact same error in the

Licensing

2007-02-12 Thread Robertson-Ravo, Neil (RX)
What is the deal with ColdFusion licensing? Do Adobe run any kind of free of charge licenses for test / support systems? What is the requisite when you need to buy one? Is it when it is public facing? What if I have load balanced web servers, and I am not running in Distributed mode, do I need to

Re: dereference a scalar variable

2007-02-12 Thread David Pedersen
I changed all Type to myType and I am still getting the same error. Type is reserved. Try aliasing it in your query to something else? Does anyone know how to fix this error or can give me a direction to take on solving this issue? I have a .cfc the is suppose to get the record by the

Re: dereference a scalar variable

2007-02-12 Thread David Pedersen
I changed all Type to myType and I am still getting the same error message. Type is reserved. Try aliasing it in your query to something else? Does anyone know how to fix this error or can give me a direction to take on solving this issue? I have a .cfc the is suppose to get the record

RE: dereference a scalar variable

2007-02-12 Thread Ben Nadel
I am sorry, I missed the beginning of this thread Did you try just putting [] around the type? SELECT Email, [Type] !--- HERE IS WHAT I AM TALKING ABOUT. --- FROM [YOUR_TABLE] WHERE [AUTO_NUM_COLUMN] = #URL.id# .. Ben Nadel Certified

Re: ColdSpring - What's my DAO do?

2007-02-12 Thread Qasim Rasheed
Adam, this would be my suggestion however some CS guru might have a better idea bean id=DogDAO class=com.DogDAO / bean id=DogGateway class=com.DogGateway / bean id=DogService class=com.DogService property name=DogDAO ref bean=DogDAO / /property property name=DogGateway ref

RE: ColdSpring - What's my DAO do?

2007-02-12 Thread Richard Kroll
So - how do I create an object (or multiple) from within my DAO and DG without hard coding the path? After writing an almost complete example of how to set this up I realized that I missed the point of your question. You are referring to where you get a dog bean once inside your DAO / Gateway,

RE: CF and Flash Remoting

2007-02-12 Thread Andy Matthews
We finally were able to isolate the issue. For Flash remoting calls the CGI.path_translated variable reports itself as gateway. We put that word in our page exclusion list and it works just fine. Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax:

Re: Licensing

2007-02-12 Thread Charlie Griefer
AFAIK, no. The only free edition is the Developer Edition. Even if it's not public facing, Staging/Test servers require full licenses. I'm sure you could contact Adobe and get a very detailed, specific response :) On 2/12/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: What is the deal

Re: Licensing

2007-02-12 Thread Rick Root
It's pretty simple. You have to buy a license for any installation of coldfusion that goes on a shared server for any purpose, including development, staging, testing, etc. The only free version is the Developer's Edition, which you can install on your desktop and make available to some limited

Re: dereference a scalar variable

2007-02-12 Thread Rick Root
the actually error message and the lines of code where the error occurred would be very helpful. I've seen the Dereference a scalar variable error before but it's hard to help without seeing the code causing the error. Rick ~|

Re: Licensing

2007-02-12 Thread Robertson-Ravo, Neil (RX)
As I thought, time to get the 20K or so license requests in :-) This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and

J2EE session variables

2007-02-12 Thread Scott Stewart
Hey all.. Can somone post a quick overview of the advantages/disadvantages of J2EE session vars vs. standard CF Session vars. my understanding is that the J2EE vars will span between clustered servers amongst other things. thanks sas

RE: dereference a scalar variable

2007-02-12 Thread Ben Nadel
Hey, I don't know about SQL, but in ColdFusion, we get that error when you try to use a simple value as a complex value (ex. using a string like it was a struct). So, what would that mean? Is it possible that the values in your ## are misspelled or accidentally referencing the wrong variables?

RE: J2EE session variables

2007-02-12 Thread Ben Forta
They also, by default, do not persist on the client and will end when the browser closes. --- Ben -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 2:14 PM To: CF-Talk Subject: J2EE session variables Hey all.. Can somone post a quick

Re: Issues with cfexecute in cfmx7?

2007-02-12 Thread Ryan Stille
Yes it does work on the smaller files, but when I feed it a larger one it hangs. I've checked the process list and both cmd.exe and the htmldoc process are there. Each time I run the page I'll get another cmd and htmldoc process in the list. They stay there until I restart ColdFusion. They

RE: Web based HTML Editor recommendations please

2007-02-12 Thread Bobby Hartsfield
That sounds very interesting. Thanks for the heads up. -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Monday, February 12, 2007 1:35 PM To: CF-Talk Subject: RE: Web based HTML Editor recommendations please Xstandard is freakin' sweet! It's what we use with all our

RE: Issues with cfexecute in cfmx7?

2007-02-12 Thread Gaulin, Mark
Weird! It almost feels like the program is waiting for you to respond to it or something like that... I was going to say that since it works on smaller files then it must not be a permissions issue but I guess it could still be, if it uses temp files only when the input is large. (I'm not

Re: GROUP BY error

2007-02-12 Thread Mike Little
arrgh, couldn't work it out so have created a list and appended to it on each output so i can use a listfind to prevent duplicate ID's happening. rough but works. thanks for your help. ~| Upgrade to Adobe ColdFusion MX7

Anyone doing anything with wireless scanners and CF?

2007-02-12 Thread Brian Yager
I am needing to do something where the client takes a document (with a barcode) to a location (with a barcode), scan the doc then scan the location and it be added to the DB. The scanner will not be plugged into the keyboard. Thanks, Brian

Re: Divs not looking right in NS

2007-02-12 Thread Mike Little
why is the search feature fixed/absolute when the rest of the layout adjusts to a users screen? ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform RIAs

RE: Quick help on a mod rewrite rule

2007-02-12 Thread Russ
Since nobody volunteered... Here is something that should work for apache, and you can try to convert it to ionicIsapiRewrite (since Dave Watts seems to think the syntax should be the same). RewriteCond %{HTTP_HOST}^www.wheretobuild.com$ [NC] RewriteCond %{REQUEST_URI}

Querying Using List Input To Field

2007-02-12 Thread Chris Montgomery
Howdy, I'm having a bit of a brain fart trying to figure this out. I want to join four tables to find a user/volunteer that is assigned to categories, pulling out all categories they are in based on a list of IDs coming from a form submission. Here's what my tables look like: vols_volcat

Re: ColdSpring - What's my DAO do?

2007-02-12 Thread adam roussos
Rich, so based on this, it means I should have a dogFactory for my dogGateway as well as my dogDAO, right? On 2/12/07, Richard Kroll [EMAIL PROTECTED] wrote: So - how do I create an object (or multiple) from within my DAO and DG without hard coding the path? After writing an almost

Re: Fusebox Web Site Design Contest Announced

2007-02-12 Thread Matt Quackenbush
Andy, I apologize for replying before thinking about my replies. I was not meaning to get personal, although I can certainly understand that I came across as such. Again, I apologize. You are certainly entitled to your opinion, as am I entitled to mine. What angered me, and I would guess most

Re: Querying Using List Input To Field

2007-02-12 Thread Peter Boughton
Take the single quotes out. Better still, use CFQP... WHERE vols_volcat.VolCatID IN (cfqueryparam value=#form.VolCatID# cfsqltype=CF_SQL_INTEGER list=true/) Howdy, I'm having a bit of a brain fart trying to figure this out. I want to join four tables to find a user/volunteer that is

OT: Wow.. what a site!!

2007-02-12 Thread Doug Brown
I have seen your standard run of the mill flash sites lurking around, but this is just unreal. These guys know their crappola. They need to send me some of what they got!! http://www.2advanced.com Doug B. ~| Upgrade to

Re: Anyone doing anything with wireless scanners and CF?

2007-02-12 Thread Peter Boughton
I think you need to expand on what you're asking. (You are asking a question, right?) Putting data into a database is simple enough with CF, but you need a way to provide CF with the data in the first place. The scanner should have documentation of some sort which explains how it can provide

RE: Strange CF Install Problem

2007-02-12 Thread Michael Wright
I managed to figure this out thanks to a technote I found. Basically I had to add IIS_WPG as a user with read and write privileges to the CFusionMX7\runtime\lib\wsconfig folder. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 12 February 2007 18:05 To: CF-Talk

Re: Wow.. what a site!!

2007-02-12 Thread Bryan Stevenson
reminds me of the original gabocorp sitenow that was WAY before it's time Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: cfcUnit Configuration Management

2007-02-12 Thread Peter Boughton
I think I had similar problems with cfcUnit and Apache. I 'solved' the problem by going to something stupid like localhost/cfcunit/cfcunit - this was despite having a mapping pointing to (i think) {webroot}/cfcunit/org/cfcunit. With regards to metadata, my personal preferences is to exclude all

Flash Form CFSELECT not populating

2007-02-12 Thread Michael Wright
I have a very simple flash form which includes 2 cfselect fields with hard coded options. It works fine on my shared hosting account but not on my new server. The form appears but there are no values available in the select boxes and the clock keeps spinning. I'm sure it's something simple

try/catch inside a cfscript tag

2007-02-12 Thread Dave Hatz
I am trying to figure out why my try/catch is not working inside the following code example below. Can someone please clue me in on what I am doing wrong here? Thanks, Dave Hatz cffunction name=CheckIt returntype=boolean cfscript var chars=hello ColdFusion World; var j=; try { for

Re: cfmx java update for dst

2007-02-12 Thread Peter Boughton
Something like that. This page explains it: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=2d547983 What needs to be changed in CFMX 6.1 regarding the daylight saving time issue? Do I simply need to install the JDK 1.4.2_11 and change the JVM location in CF Admin (Java and JVM

CFWDDX to Javascript security / AjaxCFC

2007-02-12 Thread Andrew McDuff
Hi everyone, I'm started to get worried about security whilst developing some test apps. I'm using a combination of MX7 (mainly form work and queries), AjaxCFC (standard XMLHttpRequest calls to CFCs) and JS to do quite a bit of DOM manipulation in the callback Ajax function. Basically, I'm

  1   2   >