Re: SOT: Subversion / Apache Config

2007-10-10 Thread Andy Allan
In your AuthzSVNAccessFile file, simply stick a *=r under the anonymous repositories e.g. [myrepo:/] *=r Andy On 09/10/2007, Jeff Chastain [EMAIL PROTECTED] wrote: Sorry for being so off topic, but I have just about exhausted all of my resources and I bet just a few ColdFusion developers out

please help with CF8 install

2007-10-10 Thread Phill B
I have been trying to get CF8 to install on a Win 2k3 server for two nights now and with out success. I'm having the same problem that I've had with CF 7 and the wsconfig. This is the error in the connectorinstall0.txt file could not connect to port 2930 on host 127.0.0.1

Re: please help with CF8 install

2007-10-10 Thread Andy Allan
Did you try to hook up the Web Server during the install process? Or did you initially install with the built in web server and are now running wsconfig afterwards? Just looking to see if CF actually installed OK. Is there a firewall blocking port 2930? Is there something else already using port

Re: isEmail vs cfmail tag

2007-10-10 Thread Tom Chiverton
On Tuesday 09 Oct 2007, [EMAIL PROTECTED] wrote: It's perfectly possible for a validly formatted address to cause an exception when you actually try to email it. Not so sure about that, [EMAIL PROTECTED] just off the top of my head. -- Tom Chiverton Helping to proactively maintain

SQL query with LIMIT option

2007-10-10 Thread Stivn ..
Hi all, i want to create a SQL query with a LIMIT option but it will produce an error. What is the correct syntax for a SQL query with LIMIT option, i tryed it like this: SELECT LABEL FROM table.name WHERE (STATUS = '1') AND (XY = 'AB') LIMIT 1,3 Thanks in advance for your help with best

Re: please help with CF8 install

2007-10-10 Thread Azadi Saryev
afaik, win 2k3 server disables port scanning, which is what cf installer does looking for port 2930. i have come across a blog post with solution on how to temporarily allow port scanning / run specific jndi init line, but can't recall on which blog now it could have been on adobe cf

RE: CFC Composition and/or Extention

2007-10-10 Thread Robert Rawlins - Think Blue
Brian or anyone else, I've come to a bit of a stumbling block when working on this extended DAO model which has gotten me a little confused. It comes when trying to figure out my create() method inside my sub class DAO. The idea we talked about below would be to pass in the object which is to be

Re: CF Coding Standards

2007-10-10 Thread Tom Chiverton
On Tuesday 09 Oct 2007, [EMAIL PROTECTED] wrote: or don't do tabs and use spaces exclusively. Noo ! Now you've forced the whole world to use what you think is the right amount of block indent. -- Tom Chiverton Helping to enormously revolutionize seamless ROI on:

RE: please help with CF8 install

2007-10-10 Thread Asha K S
Hi, Can you check the following 1) Is the ColdFusion server running? 2) netstat -a can be used to confirm the port is actively being listened to on 4) If not, is a firewall blocking the port? Does wsconfig still fail when the firewall is off? 5)Is there any other program that might have been

Re: Help with DB design delimma

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: Here is my dilemma: Since only a few rows in the table will be featured articles I figured it would be bad to have an isfeatured field in the table. I'd add the 'isFeatured' column - the opposing point of view is that all the non-featured

Re: SQL query with LIMIT option

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: i want to create a SQL query with a LIMIT option but it will produce an error. What error ? On what database ? -- Tom Chiverton Helping to proactively iterate scalable markets on: http://thefalken.livejournal.com

Re: CFC Composition and/or Extention

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: Now the problem with this arises in the fact when I create an entry in my sub classes table, I need to know the ID of the freshly made entry in my super classes table, so as to establish their relationship. Now I could do this in my super

Re: ColdFusion SQL Date problem

2007-10-10 Thread Steve Bryant
Donald, Did you upgrade your database from MySQL4 to MySQL5 as part of your upgrade to CF8? If so, you might check your submitDate field in your tblRegistration and see if the default still exists in the table (assuming you were using a default value to set the current date in that table).

Re: SQL query with LIMIT option

2007-10-10 Thread Jochem van Dieten
Stivn .. wrote: i want to create a SQL query with a LIMIT option but it will produce an error. What is the correct syntax for a SQL query with LIMIT option That depends on your database. With MS databases you need to use TOP, with Oracle rownum, with MySQL and PostgreSQL LIMIT. The syntax

flash form and spry tabs

2007-10-10 Thread Will Swain
Hello, Probably a simple one, but it's one of those mornings. I have a flash cfform sitting inside a spry tab. When i navigate away by clicking on another tab, then back, I get a form data has expired message. This is no good. Presumably there's a simple way of resolving this? Anyone? Will

CF8 - Why is my ajax undefined?

2007-10-10 Thread Will Tomlinson
I have a page that uses cfwindow. It works fine on my dev machine. Works fine at CrystalTech shared hosting... But on my HostMySite VPS server, I get undefined errors in Firebug. CF is generating this: script type=text/javascript ColdFusion.Ajax.importTag('CFWINDOW'); /script Which produces

Re: CF8 - Why is my ajax undefined?

2007-10-10 Thread gary gilbert
Hi Will, It may have something to do with how the hostmysite has set up their servers. Check if you can get to www.yourdomain.com /CFIDE/scripts/ajax/package/cfajax.js If you can't then you know why ColdFusion is undefined as you need to have access to the CFIDE/scripts directory in order for

Re: CF Coding Standards

2007-10-10 Thread Aaron Rouse
It is ok, they will learn to adapt On 10/10/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 09 Oct 2007, [EMAIL PROTECTED] wrote: or don't do tabs and use spaces exclusively. Noo ! Now you've forced the whole world to use what you think is the right amount of block indent. --

Re: Splitting UI and Data

2007-10-10 Thread Morten Kruse
I think I would like to use some kind og MVC (Model-View-Controler). But I don't want to use a standard framework like fusebox. I think that it is too complex for my porpose. Instead I will have a controler that calls the data and apply it to the View. But I don't know how this should be

RE: CF Coding Standards / validation

2007-10-10 Thread Gaulin, Mark
Yeah, a good CF parser would definitely be needed. Does your parser handle CFCs? What language is it written in? To do coding standard validation you'd also need a flexible/configurable model for what rules to enforce, and that can be tricky too. Thanks Mark -Original Message-

RE: CF Coding Standards / validation

2007-10-10 Thread Gaulin, Mark
Yeah, there must be one but I haven't looked at it. They must be some issues with it though because there is an option to turn it off and I've seen it get pretty confused with strings with embedded quotes in them, for example. Thanks Mark -Original Message- From: Jaime Metcher

Re: CF Coding Standards

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: It is ok, they will learn to adapt I'll set my reply-to template to use '-~-~=' rather than '' for quotes then :-) -- Tom Chiverton, are you a great ColdFusion programmer, who knows Reactor and ColdSpring, and has done some Flex work ? Would

RE: CF Coding Standards / validation

2007-10-10 Thread Gaulin, Mark
What you say is true (only a programmer can know how a variable is used), but a warning generated if a variable is not explicitly scoped would help find the little oversights that can be a real pain to track down. I am of the opinion that all warnings in a program (java, for example) should be

RE: CF Coding Standards / validation

2007-10-10 Thread Paul Vernon
I am of the opinion that all warnings in a program (java, for example) should be tracked down and eliminated, even if the fix is just to disable the warning on the one method/line that is complaining (because it is right), but every one of them should be examined. For ever 100 warnings I get

RE: CFC Composition and/or Extention

2007-10-10 Thread Rich
Now I could do this in my super classes create() method, by having it return the ID for the entry it just created, however this does feel a little unusual, mainly because I'm not used to working with super objects, is that the correct way At the end of SUPER.create( ARGUMENTS.SubObject )

RE: Splitting UI and Data

2007-10-10 Thread Rich
I think I would like to use some kind og MVC (Model-View-Controler). But I don't want to use a standard framework like fusebox. I think that it is too complex for my porpose. If you are planning on using MVC I would strongly suggest using an existing framework (Mach-ii, Model-Glue, FuseBox).

Re: Splitting UI and Data

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: I think I would like to use some kind og MVC (Model-View-Controler). But I don't want to use a standard framework like fusebox. I think that it is too complex for my porpose. You don't have to use all the complicated bits of it :-) Instead

RE: CF Coding Standards

2007-10-10 Thread Dave Watts
Noo ! Now you've forced the whole world to use what you think is the right amount of block indent. It is ok, they will learn to adapt In that case, they can adapt to having all the code on one line as well. In fact, screw whitespace. What has whitespace ever done for me? The entire

Re: SOT: Subversion / Apache Config

2007-10-10 Thread Jeff Chastain
Andy, I wish it were that simple. The rule configuration in the AuthzSVNAccesssFile looks like this for one of the repositories in question: [Reactor:/] * = r @reactor-contrib = rw and the virtual host looks like this (straight out of the SVN book): VirtualHost *:80 ServerName

RE: CF8 - Why is my ajax undefined?

2007-10-10 Thread Dave Watts
I have a page that uses cfwindow. It works fine on my dev machine. Works fine at CrystalTech shared hosting... But on my HostMySite VPS server, I get undefined errors in Firebug. Does the /CFIDE URL properly resolve on that server? My guess is that it doesn't. Whenever you have a problem

Re: isEmail vs cfmail tag

2007-10-10 Thread Claude Schneegans
[EMAIL PROTECTED] just off the top of my head. This will cause an exception in your template only if is the spooler is deactivated in the CF server, something I wouldn't recommend for mass mailing. Otherwise, the error will occur in the service which sends messages from the spool, which is

Re: CF Coding Standards / validation

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: planning engine all on top of an Oracle database. Customers would complain about the instability of the client software This is to be expected from a language that forces the programmer to deal with memoray allocation and release. -- Tom

Re: Splitting UI and Data

2007-10-10 Thread Morten Kruse
I do think that I will program it by myself. I like to be in controle. This Best practice from Benorama looks very good. http://www.benorama.com/coldfusion/index.htm Therfore I think that I will try this first. If everything fails with that I will use Fusebox. But I do not like it. Maby if I get

RE: CF Coding Standards / validation

2007-10-10 Thread Gaulin, Mark
Hi This is an interesting tool. It does seem to flag problems that are inside strings, so it could definitely benefit from a 'real' cfml parser. (But since it is written in CF, I wouldn't expect it to be perfect; my perl-based cfml parser was pretty lame too, but still quite useful for what it

Re: isEmail vs cfmail tag

2007-10-10 Thread Claude Schneegans
[EMAIL PROTECTED] just off the top of my head. H, by the way, isValid(email, [EMAIL PROTECTED]) returns no, so according to this discussion, this address should never be used in CFMAIL in the first time. ;-) -- ___ REUSE CODE! Use custom tags; See

How to create a SQL query above 2 tablespaces?

2007-10-10 Thread Stivn ..
Hi all, i want to create a SQL query above 2 tablespaces. In the query i want to compare if the value i searched fore is in tsA or tsB. I tryed it with something like this: SELECT * FROM tableA, tableB WHERE tableA.ts IN (#preserveSingleQuotes(myDocumentsA)#) OR tableB.ts IN

Re: SOT: Subversion / Apache Config

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: * = r Does removing the spaces help ? @reactor-contrib = rw And/or this line ? -- Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and ColdSpring, and has done some Flex work ? Would you like to work for a top 30

Re: Help with DB design delimma

2007-10-10 Thread Claude Schneegans
Why have a field for every row when a small minority will actually use it? Most database system will use only one byte for a logical value, sometimes may be only one bit, so, uless you have zillons of articles, the overhead is marginal. However, should I really create a table with one field

Re: CF Coding Standards / validation

2007-10-10 Thread Gert Franz
Hi Paul, next to the tool you're using (which I use myself as well) Railo allows you to turn of scope cascading which would then result in runtime errors and force the programmer to scope all unscoped variables (except for the variables scope). Next to the readability this as we all know

Re: isEmail vs cfmail tag

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: This will cause an exception in your template only if is the spooler is deactivated in the CF server, Uh huh. -- Tom Chiverton. Are you a great ColdFusion programmer, who knows Reactor and ColdSpring, and has done some Flex work ? Would you

Re: Name of uploaded file before cffile

2007-10-10 Thread Ian Skinner
Back from an unintentionally long weekend. I presume the file name is part of the HTTP data sent by the browser through the web server to ColdFusion. If you output the form file field you will see a long random character name of the temporary file created by the web server that is where

Request timeout

2007-10-10 Thread Rick Root
How can I control - in CF8 - the request timeout settings specifically for an event gateway or a CFC method that is accessed from Flex? Can I put cfsetting requesttimeout=600 or something in the methods? -- Rick Root Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more at

memory problem

2007-10-10 Thread Rick Root
What exactly does this mean? Error,Thread-37,10/09/07,15:23:11,,Error invoking CFC for gateway giftDrop: Java heap space. Is it basically a memory problem where I need to increase the memory for the coldfusion instance? -- Rick Root Check out CFMBB, BlogCFM, ImageCFC, ImapCFC, CFFM, and more

RE: CF Coding Standards / validation

2007-10-10 Thread Paul Vernon
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: planning engine all on top of an Oracle database. Customers would complain about the instability of the client software This is to be expected from a language that forces the programmer to deal with memoray allocation and release. But

Re: memory problem

2007-10-10 Thread Claude Schneegans
Is it basically a memory problem where I need to increase the memory for the coldfusion instance? It might also be an infinite recursive problem. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send

Re: How to create a SQL query above 2 tablespaces?

2007-10-10 Thread Claude Schneegans
So, i want to check if the value is in A or in B. But the result is all entrys from tableA. I don't understand. How can you select records from tableA on the only fact that a field from another table is in a list of values? -- ___ REUSE CODE! Use custom

Re: isEmail vs cfmail tag

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] just off the top of my head. H, by the way, isValid(email, [EMAIL PROTECTED]) returns no, so according to this discussion, this address should never be used in CFMAIL in the first time. ;-) Just one more case where

Re: please help with CF8 install

2007-10-10 Thread Phill B
Giggity giggity!! Turning off the TCP/IP filtering fixed it. Thanks for the help! Now I can sleep tonight. Giggity giggity!! On 10/10/07, Phill B [EMAIL PROTECTED] wrote: The CF8 Application Service is running. I ran netstat and didnt see anything with port 2930. I checked to see if TCP/IP

Re: SOT: Subversion / Apache Config

2007-10-10 Thread Andy Allan
I have pretty much just that ... only on Linux, and it works for me... Andy On 10/10/2007, Jeff Chastain [EMAIL PROTECTED] wrote: Andy, I wish it were that simple. The rule configuration in the AuthzSVNAccesssFile looks like this for one of the repositories in question: [Reactor:/] * =

Re: please help with CF8 install

2007-10-10 Thread Phill B
The CF8 Application Service is running. I ran netstat and didnt see anything with port 2930. I checked to see if TCP/IP was filtering and it was so I have disabled that to see what happens. The links you gave are for previous versions of CF. Will the info for CF7 work for CF8 On 10/10/07, Asha

RE: flash form and spry tabs

2007-10-10 Thread Will Swain
Just resending this - any ideas folks? -Original Message- From: Will Swain [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 10:22 To: CF-Talk Subject: flash form and spry tabs Hello, Probably a simple one, but it's one of those mornings. I have a flash cfform sitting inside a spry tab.

Re: CF Coding Standards / validation

2007-10-10 Thread Tom Chiverton
On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote: finally myObj.free; What if myObj gets passed out of the function ? the pain away. Delphi gives you the choice :-) Anyway, this is all getting a tad OT now so I'll leave it there :-) It's always on topic to show how much better

Re: CF8 - Why is my ajax undefined?

2007-10-10 Thread Brian Kotek
Also I have to ask the obvious question: are you sure the HostMySite VPS server is running CF8? On 10/10/07, Will Tomlinson [EMAIL PROTECTED] wrote: I have a page that uses cfwindow. It works fine on my dev machine. Works fine at CrystalTech shared hosting... But on my HostMySite VPS server,

Invoking component

2007-10-10 Thread Bruce Sorge
OK, so I see that there are at least three ways to invoke a component. Using the CFINVOKE tag, CFSET and wrapped in CFSCRIPT. So what is the best method? Or are there different situations where you would use one or the other? I would think that each has an advantage and disadvantage. I

Re: Invoking component

2007-10-10 Thread Brian Kotek
The only real advantage that I'm aware of is that CFINVOKE allows you to dynamically specify the target component and method. I use it when I need that capability, but otherwise I find it too verbose. On 10/10/07, Bruce Sorge [EMAIL PROTECTED] wrote: OK, so I see that there are at least three

Re: CFC Composition and/or Extention

2007-10-10 Thread Brian Kotek
I would do something similar as well (though just make sure to purge it back out if something goes wrong in the rest of the transaction, since you'll probably be returning the object back to the view for use in displaying the data they entered into the form and you don't want it to have the wrong

Re: Invoking component

2007-10-10 Thread Matt Williams
On 10/10/07, Bruce Sorge [EMAIL PROTECTED] wrote: OK, so I see that there are at least three ways to invoke a component. Using the CFINVOKE tag, CFSET and wrapped in CFSCRIPT. So what is the best method? Or are there different situations where you would use one or the other? I would think that

RE: Invoking component

2007-10-10 Thread Andy Matthews
Cfinvoke _generally_ is only used when you want a single call against an object. If you want to store that object in memory then it's common to use CreateObject() with either a cfset or a cfscript call. Those last two are equivalent. -Original Message- From: Bruce Sorge [mailto:[EMAIL

RE: Invoking component

2007-10-10 Thread Dave Watts
Using the CFINVOKE tag, CFSET and wrapped in CFSCRIPT. So what is the best method? They are all equally good. Or are there different situations where you would use one or the other? Yes, although you could simply use one in all cases if you really wanted to. If you're creating objects,

Re: Name of uploaded file before cffile

2007-10-10 Thread Matt Williams
Right Ian. I understand that part. But consider this: 1) User uploads myFile.txt 2) CF puts it into c:\temporary\directory\neo12345.tmp 3) Form field value has c:\temporary\directory\neo12345.tmp 4) code calls cffile action=upload ... / 5) If I did not specify a new file name in the destination

Re: Splitting UI and Data

2007-10-10 Thread Brian Kotek
Er, you think THAT is less complicated than Fusebox? Look, I know the frameworks can seem daunting at first, but they really aren't. In fusebox, what you're asking about can be done as simply as: fuseaction name=showProduct set name=product value=#application.productService.getProductByID(

RE: please help with CF8 install

2007-10-10 Thread Dave Watts
I ran netstat and didnt see anything with port 2930. Giggity giggity!! Turning off the TCP/IP filtering fixed it. Thanks for the help! Now I can sleep tonight. Giggity giggity!! I'm afraid to ask what you're doing with those ports, exactly. Dave Watts, CTO, Fig Leaf Software

Re: Help with DB design delimma

2007-10-10 Thread Aaron Roberson
Thanks for all of the feedback guys. Terrance had a good suggestion of creating additional starting and ending date columns for when the articles would be featured, thus justifying the second table. Tom, your right that the empty field would signify that the article was not featured. Is that

RE: CF Coding Standards / validation

2007-10-10 Thread Paul Vernon
a tad OT now so I'll leave it there :-) Ok, you baited me! finally myObj.free; What if myObj gets passed out of the function ? That would be poor programming practice :-) Just like CF, Java and most other popular programming languages there are best practices for that language.

RE: CFC Composition and/or Extention

2007-10-10 Thread Rich
Exactly what I meant, but put much more elegantly! Rich Kroll -Original Message- From: Brian Kotek [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 10, 2007 11:53 AM To: CF-Talk Subject: Re: CFC Composition and/or Extention I would do something similar as well (though just make

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Thanks guys for your thoughts on this, you're all making good logical sense so I'll defiantly play around with this stuff. Interestingly enough I was reading an article from BarnyB just yesterday about using AOP to control transactions, it might be a good place for me to learn a little more

Re: ColdFusion SQL Date problem

2007-10-10 Thread Donald Burns
I am still using MySQL4 for the database. Both tables are identical besides the table name. When the data is inserted into the registration table, I use the current date in ColdFusion to put into the SQL query. When the user confirms their account, I pull their customer data by ID and simply

ColdFusion stopped?!?!

2007-10-10 Thread Tim Do
PLEASE help! Ever since 8am this morning ColdFusion has gone down every few minutes. The only thing that I can see in the server.log is: Information,Thread-0,10/10/07,09:34:45,,ColdFusion stopped I've checked all the log files under cfusionmx7/logs and cfusionmx7/runtime/logs but didn't

Re: Name of uploaded file before cffile

2007-10-10 Thread Ian Skinner
My question, and this is more out of curiosity than anything, is how does CF remember the original user's file name of myFile.txt between steps 3 and 4 above. Looking through the various scopes doesn't seem to reveal it. The form field, as you mentioned is a random name in a temporary directory.

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Thanks guys for your thoughts on this, you're all making good logical sense so I'll defiantly play around with this stuff. Interestingly enough I was reading an article from BarnyB just yesterday about using AOP to control transactions, it might be a good place for me to learn a little more

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Thanks guys for your thoughts on this, you're all making good logical sense so I'll defiantly play around with this stuff. Interestingly enough I was reading an article from BarnyB just yesterday about using AOP to control transactions, it might be a good place for me to learn a little more

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Thanks guys for your thoughts on this, you're all making good logical sense so I'll defiantly play around with this stuff. Interestingly enough I was reading an article from BarnyB just yesterday about using AOP to control transactions, it might be a good place for me to learn a little more

dba humor

2007-10-10 Thread Andy Matthews
OMG I laughed so hard... http://xkcd.com/327/ Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com/

Re: SOT: Subversion / Apache Config

2007-10-10 Thread Jeff Chastain
* = r Does removing the spaces help ? @reactor-contrib = rw And/or this line ? Nope, I have tried it with and without spaces and there is not difference. Thanks for the suggestion. ~| Enterprise web

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Thanks guys for your thoughts on this, you're all making good logical sense so I'll defiantly play around with this stuff. Interestingly enough I was reading an article from BarnyB just yesterday about using AOP to control transactions, it might be a good place for me to learn a little more

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

RE: ColdFusion stopped?!?!

2007-10-10 Thread Peterson, Chris
Do you have any scheduled jobs that start automatically? Do you have see-fusion or some other monitoring that you can view the current running requests? Can you look at IIS logs for this server to see what requests are coming in, maybe someone or an automated process is running a request that is

Re: How to create a SQL query above 2 tablespaces?

2007-10-10 Thread Eric D.
Hi all, i want to create a SQL query above 2 tablespaces. In the query i want to compare if the value i searched fore is in tsA or tsB. I tryed it with something like this: SELECT * FROM tableA, tableB WHERE tableA.ts IN (#preserveSingleQuotes(myDocumentsA)#) OR tableB.ts IN

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

RE: dba humor

2007-10-10 Thread Loathe
While it doesn't really belong on this list, thank you, I needed that. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 10, 2007 1:40 PM To: CF-Talk Subject: dba humor OMG I laughed so hard... http://xkcd.com/327/

Re: ColdFusion 8 Installation Wizard Issue

2007-10-10 Thread joe mak
Hi Jayesh, I played with some settings but still no go. Made sure administrator had all rights and privileges and all other security settings I set I changed around. I don't understand what could be the issue but this is really frustrating! I can understand if it didn't install to a

Re: Invoking component

2007-10-10 Thread Brian Kotek
You can also do this (and so much more heh) with onMissingMethod() in CF8: http://corfield.org/blog/index.cfm/do/blog.entry/entry/Automatic_Transactions_with_onMissingMethod On 10/10/07, Robert Rawlins - Think Blue [EMAIL PROTECTED] wrote: Thanks guys for your thoughts on this, you're all

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

RE: Splitting UI and Data

2007-10-10 Thread Loathe
Only tons. It's very easy to use, currently configured through a couple of easy to edit xml files. Even that is going to be going away soon I believe, and it will be an easier CF based set up. That's why I prefer Fusebox. Really easy to write drag and drop apps. With some of the others I've a

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

Re: Splitting UI and Data

2007-10-10 Thread Morten Kruse
Ok, I will take a look at fusebox. Thank's for all you input. ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates.

RE: Splitting UI and Data

2007-10-10 Thread Loathe
Agreed. You pop over to community and say hi. -Original Message- From: Brian Kotek [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 10, 2007 12:04 PM To: CF-Talk Subject: Re: Splitting UI and Data Er, you think THAT is less complicated than Fusebox? Look, I know the frameworks can

Re: Name of uploaded file before cffile

2007-10-10 Thread Claude Schneegans
My question, and this is more out of curiosity than anything, is how does CF remember the original user's file name of myFile.txt The original name is transmitted in the HTTP request by the browser. This is the purpose of the multipart in the ENCTYPE attribute of the form. One of the parts

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

Re: dba humor

2007-10-10 Thread Crow T. Robot
Heh - I shared that with some co-workers today. Like I said to them, if you don't laugh a little at it, you're not cut out to be in this field. :) On 10/10/07, Andy Matthews [EMAIL PROTECTED] wrote: OMG I laughed so hard... http://xkcd.com/327/ Andy

Re: ColdFusion stopped?!?!

2007-10-10 Thread Zaphod Beeblebrox
We had a windows update roll through today that screwed up a bunch of our servers until a complete powerdown and reboot. On 10/10/07, Tim Do [EMAIL PROTECTED] wrote: PLEASE help! Ever since 8am this morning ColdFusion has gone down every few minutes. The only thing that I can see in the

Can cfqueryparam cfprocparam dodge all known SQL Injection attack?

2007-10-10 Thread henry ho
After reading the following pages... The Unexpected SQL Injection - When Escaping Is Not Enough http://webappsec.org/projects/articles/091007.shtml SQL Injection Cheat Sheet http://ferruh.mavituna.com/makale/sql-injection-cheatsheet/ I wonder if our beloved cfqueryparam and cfprocparam are

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

Re: ColdFusion 8 Installation Wizard Issue

2007-10-10 Thread Andy Allan
Try doing a silent install instead. http://www.adobe.com/go/87bd20f4 I've used this for Windows 2000/3 and XP when there's been installer problems. The technote is for CF7, but unless anything drastic has changed, it should still work fine. Andy On 10/10/2007, joe mak [EMAIL PROTECTED] wrote:

RE: Invoking component

2007-10-10 Thread Robert Rawlins - Think Blue
Damn, I replied to the wrong thread ... doh! Apologies for the hijacking! Rob -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: 10 October 2007 17:54 To: CF-Talk Subject: RE: Invoking component Thanks guys for your thoughts on this, you're all

  1   2   >