Urgent: Deploying CAR file issue

2008-08-04 Thread vishnu prasad
Hi While deploying the CF7 Car file in CF8 give the following error on migrating the datasource Error 08/04/08 15:59:41 An error occurred while trying to encrypt or decrypt your input string: com.rsa.jsafe.crypto.dr: Could not perform unpadding: invalid pad byte.. Can anyone

When is a struct not a struct ?

2008-08-04 Thread Tom Chiverton
When is a struct (as given by isStruct()) not a struct ? Answer: When it's a (value) object The following code creates an object with a few simple properties, and dumps this OK as an object i.e. component. It then says that this is a struct, before confirming again it's an object ! Is CF

Re: When is a struct not a struct ?

2008-08-04 Thread Will Tomlinson
The following code creates an object with a few simple properties, and dumps this OK as an object i.e. component. It then says that this is a struct, before confirming again it's an object ! From my understanding, I thought an object was a special kind of structure - a structure with

RE: When is a struct not a struct ?

2008-08-04 Thread Dave Phillips
From my understanding, I thought an object was a special kind of structure - a structure with processes (methods). On the other hand, it may look and act like an object, but it isn't one. The code below shows that you can create a structure that 'looks' like an object, (with what appears to be a

Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Torrent Girl
Hello all. I have installed the developer edition of CF8 locally and it is not working properly. I followed the directions at the following link: http://www.adobe.com/devnet/dreamweaver/articles/setup_coldfusion_03.html added a test page, restated the cf application and still no results.

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Robert Harrison
Try: http://localhost/CFIDE/administrator/index.cfm (without the port number... IIS seems to baulk at that) Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com

Coldfusion report builder

2008-08-04 Thread Torrent Girl
Can anyone help me with cf report builder? I am trying configure the rds server but have no idea of what to put in the following: 1. hostname 2. context root I googled all day friday with no luck. I know it's probably something simple but I know no server-side stuff. thanks tgirl

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Tom Chiverton
On Monday 04 Aug 2008, Torrent Girl wrote: I have installed the developer edition of CF8 locally and it is not working properly. What O/S ? What web server ? The website cannot display the page HTTP 500 This is an internal server error. Check the webserver and CF server logs (in a

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Torrent Girl
Tried that and got the following: Internet Explorer cannot display the webpage Most likely causes: You are not connected to the Internet. The website is encountering problems. There might be a typing error in the address. Try: http://localhost/CFIDE/administrator/index.cfm

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Ian Skinner
Torrent Girl wrote: Here is the link I am browsing: http://localhost:8500/CFIDE/administrator/index.cfm Any suggestions would be greatly appreciated. tGirl 1) Check the ColdFusion installation logs to see if any errors occurred during the installation. 2) Try other common ColdFusion

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Dave Phillips
tGirl, Are you browsing that link directly, or did you get to it from your Start - Programs ... link for the administrator? If not, try that link and see what happens. It might be a different port. For instance, mine is http://localhost:8300/CFIDE/Administrator. Also, you didn't mention

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Torrent Girl
Windows xp. Web server? - I installed it locally. On Monday 04 Aug 2008, Torrent Girl wrote: I have installed the developer edition of CF8 locally and it is not working properly. What O/S ? What web server ? The website cannot display the page HTTP 500 This is an internal

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Torrent Girl
BUilt in cf web server. 8300 doesn't work either tGirl, Are you browsing that link directly, or did you get to it from your Start - Programs ... link for the administrator? If not, try that link and see what happens. It might be a different port. For instance, mine is

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Dave Phillips
Okay, check your 'services' panel to make sure the service is running. Also, at the risk of sounding 'help deskish', have you rebooted? :) Dave -Original Message- From: Torrent Girl [mailto:[EMAIL PROTECTED] Sent: Monday, August 04, 2008 9:05 AM To: CF-Talk Subject: Re: Installation of

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Torrent Girl
I took a look at the following file: adobe_coldfion_8_installog.log and didn't see any errors. Torrent Girl wrote: 1) Check the ColdFusion installation logs to see if any errors occurred during the installation. 2) Try other common ColdFusion ports in case you used different installation

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Rick Faircloth
Using localhost doesn't work for me right now because, is seems, that I assigned a domain name using host headers to my default website in IIS. (Don't know if you're using IIS or not) But to get to the CF Admin, I had to use: http://www.mydomain.com/cfide/administrator/index.cfm Hadn't had that

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Torrent Girl
Check through the control panel and the cf app server is running. I'll reboot :) Okay, check your 'services' panel to make sure the service is running. Also, at the risk of sounding 'help deskish', have you rebooted? :) Dave BUilt in cf web server. 8300 doesn't work either

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Robert Harrison
Before you tear apart the CF installation, try testing the IIS function to ensure they work. Set up a directory and place a simple default index page in it. See if it displays with an .html extension. If it doesn't, you have an IIS problem. If it does display, try changing the extension to .cfm

cfswitch

2008-08-04 Thread Brian Dumbledore
Can someone confirm that we cann't actually use variables in cfswitch case values ??? I feel it is ridiculous.. What is the reasoning behind this if it si true? I tried.. cfcase value=#CONST1#.../cfcase cfcase value=#CONST2#.../cfcase etc, where CONST1 and CONST2 are cfset in the

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Dave Phillips
Hi, Here's something you can also do. Open the jrun.xml file located at: {Cfroot}\servers\cfusion\SERVER-INF\jrun.xml Look for a line with 'WebService' in it (mine is like this (but it's MX7): service class=jrun.servlet.http.WebService name=WebService Scroll down to the attribute for port and

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Torrent Girl
Do you mean set up the test file in a directory on the CF server? Like in the wwwroot? Before you tear apart the CF installation, try testing the IIS function to ensure they work. Set up a directory and place a simple default index page in it. See if it displays with an .html extension. If it

RE: cfswitch

2008-08-04 Thread Dave Phillips
Brian, Yes, I believe that is true and this is the circumstance where you must use CFIF/CFELSE/CFELSEIF. There's an article on this topic (cfswitch/cfif) at: http://blog.dasignz.com/blog/post/2008/07/CFSWITCH-Vs-CFIF.aspx (sadly posted on a .NET site though) Sincerely, Dave Phillips

Re: cfswitch

2008-08-04 Thread James Holmes
The docs are pretty clear (http://cfquickdocs.com/cf8/?getDoc=cfcase): The value or values must be simple constants or constant expressions, not variables. On Mon, Aug 4, 2008 at 10:12 PM, Brian Dumbledore [EMAIL PROTECTED] wrote: Can someone confirm that we cann't actually use variables in

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Torrent Girl
Went to the file as you suggested and it was port 8500: service class=jrun.servlet.http.WebService name=WebService attribute name=port8500/attribute attribute name=interface*/attribute attribute name=deactivatedfalse/attribute attribute name=activeHandlerThreads50/attribute

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Dave Phillips
I changed the port to 8300 and it still doesn't work Did you restart service after changing the port? Dave ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Robert Harrison
Try it in the wwwroot if you'd like. But you should check your IIS settings before you drive yourself nuts on CF. Be sure you can get an HTML page to display, because that internal server error could be CF or it could be IIS. Be sure to eliminate IIS as a problem first. You'll never get to CF

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Tom Chiverton
On Monday 04 Aug 2008, Torrent Girl wrote: Web server? - I installed it locally. ColdFusion functions as a plugin to a webserver, such as Apache or IIS, by default. It is also possible to use it 'stand alone'. What did you choose in the installer ? -- Tom Chiverton

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Tom Chiverton
On Monday 04 Aug 2008, Torrent Girl wrote: I'll reboot :) You might want to try disabling Windows' firewall (and your virus scanners etc.) too. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a

Re: Coldfusion report builder

2008-08-04 Thread Tom Chiverton
On Monday 04 Aug 2008, Torrent Girl wrote: 1. hostname The name of the machine (in DNS or WINS). The same thing that goes after 'http://' but before the directory and file names. 2. context root Almost certainly '/' unless you've heard of the expression before. -- Tom Chiverton

Re: cfswitch

2008-08-04 Thread Brian Dumbledore
Can someone confirm that we cann't actually use variables in cfswitch case values ??? I feel it is ridiculous.. What is the reasoning behind this if it si true? I tried.. cfcase value=#CONST1#.../cfcase cfcase value=#CONST2#.../cfcase etc, where CONST1 and CONST2 are cfset in the

Using iMS with CF 8.0.1

2008-08-04 Thread Craig Dudley
Hello All, Have asked this on the iMS support site and as yet got no reply but hopefully someone on here can help, is anyone successfully using iMs Mail server with Coldfusion 8.0.1? I've recently done a clean install of iMS 2.8.4 and CF 8.0.1 on a new server and iMS will not talk to

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Torrent Girl
On Monday 04 Aug 2008, Torrent Girl wrote: Web server? - I installed it locally. ColdFusion functions as a plugin to a webserver, such as Apache or IIS, by default. It is also possible to use it 'stand alone'. What did you choose in the installer ? -- Tom Chiverton I chose

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread sstwebworks
Just for the sake of argument, has anyone tried http://127.0.0.1:8500/cfide/administrator/index.cfm (or 8300)? -- Scott Stewart ColdFusion Developer http://www.sstwebworks.com/blog -- Original message from Tom Chiverton [EMAIL PROTECTED]: -- On Monday 04 Aug 2008,

Re: cfswitch

2008-08-04 Thread morgan l
The value or values must be simple constants or constant expressions, not variables. The root of the problem then is: CF doesn't allow declaration of constants, only variables. ~| Adobe® ColdFusion® 8 software 8 is the most

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Alex I
if you're using Vista and IIS, make sure IIS6 Management Compatibility options are checked in under windows features. i was getting 500 error until i installed additional IIS components under Vista. ~| Adobe® ColdFusion® 8

Re: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Tom Chiverton
On Monday 04 Aug 2008, [EMAIL PROTECTED] wrote: Just for the sake of argument, has anyone tried http://127.0.0.1:8500/cfide/administrator/index.cfm (or 8300)? -- Or running 'netstat' from the command prompt to see what the port number is rather than guessing. -- Tom Chiverton

Null/empty values from the database.

2008-08-04 Thread Ioannis Papanikolaou
Some times my Database does not have any data on the query. I want to wright an error handler for that reason. so lets say that my query has been executed alredy and it is called Results and sourcename is one of my fields on the DB that usualy contains a string. cfoutput query=Results

Re: cfswitch

2008-08-04 Thread Larry Lyons
Can someone confirm that we cann't actually use variables in cfswitch case values ??? I feel it is ridiculous.. What is the reasoning behind this if it si true? I tried.. cfcase value=#CONST1#.../cfcase cfcase value=#CONST2#.../cfcase etc, where CONST1 and CONST2 are cfset in the

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Dave Francis
I might be totally out to lunch here (good chance, really), but don't you need XP Pro? -Original Message- From: Torrent Girl [mailto:[EMAIL PROTECTED] Sent: Monday, August 04, 2008 10:04 AM To: CF-Talk Subject: Re: Installation of CF 8 (developer edition) is not working Windows xp.

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread sstwebworks
Not if you're using the built in cf webserver (note: It's for development only, the built in webserver is no where near robust enough for production) -- Scott Stewart ColdFusion Developer http://www.sstwebworks.com/blog -- Original message from Dave Francis [EMAIL PROTECTED]:

Re: Null/empty values from the database.

2008-08-04 Thread Charlie Griefer
does the Results query return a single row? if it returns multiple rows, then the Return variable wouldn't be set for any rows where sourcename wasn't blank. What about just: cfoutput query=Results cfif sourcename is There are no available sources at the moment cfelse

Re: Null/empty values from the database.

2008-08-04 Thread Yuliang Ruan
coldfusion does not have the concept of NULL. all field values from a query are string type. a NULL and a zero length string in the database show as the same in coldfusion layer. if you really want to check NULL-ness, you'll have to do it in SQL logic.

Re: Null/empty values from the database.

2008-08-04 Thread James Holmes
On Mon, Aug 4, 2008 at 11:18 PM, Ioannis Papanikolaou [EMAIL PROTECTED] wrote: Browser is throughing error Variable RETURN is undefined however I know that if I my results from the DB are not empty the function works. Right - you are in a cfoutput loop and when there are no results in

RE: Null/empty values from the database.

2008-08-04 Thread Dave Phillips
James Holmes said: Right - you are in a cfoutput loop and when there are no results in the query the variable return is never populated as the loop never runs. Ioannis, James is exactly right. Here's what you need: cfif Results.recordCount cfoutput query=Results .. (I'm

how to access the query

2008-08-04 Thread Eclectic User
I am new to cfc's and I am having trouble in accessing query results in fusebox 5.5. I have app.cfc in users/controller and the code in it is following: cfcomponent output=false cffunction name=dspUsers cfargument name=myFusebox / cfargument name=event / cfset getUsers = CreateObject

RE: Installation of CF 8 (developer edition) is not working

2008-08-04 Thread Dave Watts
the built in webserver is no where near robust enough for production Actually, it is robust enough. It will perform well under load. It just doesn't have the features of Apache or IIS. Dave Watts, CTO, Fig Leaf Software ~|

RE: how to access the query

2008-08-04 Thread Dave Phillips
Eclectic, You might get a better response posting this to a fusebox forum. I haven't used fusebox in years, but I'll take a stab. You said, Now I am trying to display the results of qryUsers but qryUsers is not available there. I am creating an object but I don't know how to use it to access

Re: how to access the query

2008-08-04 Thread Eclectic User
I am trying to cfdump the values on a page that's supposed to display the users in the system and that file is dspUsres.cfm inside users/view/display but it says qryUsers is not available. Thanks for any help you provide in advance. Eclectic, You might get a better response posting this to a

Re: cfswitch

2008-08-04 Thread Claude Schneegans
I feel it is ridiculous.. What is the reasoning behind this if it si true? The reasoning is that is allows for a more efficient alternative to the general case if(expression1 == value1 ) ... elseif(expression2 == value2) ... elseif(expression3 == value3) ...construct, in the particular case

Re: cfswitch

2008-08-04 Thread Claude Schneegans
switch () in java allows constants to be used in case. I wish cf did too. CF does allow constants in case. Do you actually mean java allows VARIABLES in case? If yes, then no, like CF, Java allows only constantExpressions in case. -- ___ REUSE CODE! Use

Re: CF 8 verity collections disappearing

2008-08-04 Thread Al Musella, DPM
It happened to me again.. a verity collection disappeared.. Any ideas on how to approach finding the cause? On my server, version 7,0,1,116466 . there are 12 verity collections. 3 are flaky.. they all belong to the same website and randomly disappear for no apparent reason. The other 9

RE: cfswitch

2008-08-04 Thread Dave Watts
Can someone confirm that we cann't actually use variables in cfswitch case values ??? I feel it is ridiculous.. What is the reasoning behind this if it si true? This is how switch/case works in most compiled languages I've seen. The compiler needs to know all the possible values of the

RETS Implementation

2008-08-04 Thread Justin Scott
Curious if anyone has done a RETS implementation with ColdFusion to download MLS listings? We're in the process of updating our data import from an older system and would prefer something that can just go get the RETS data and images and throw it into SQL for us. The route we're going down

RE: how to access the query

2008-08-04 Thread Sandra Clark
You are using getUsers for your query results. In order to use it in your view, you need to add it to the event structure (which corresponds to the attributes structure in the display) Instead of cfset getUsers = myFusebox.do( action=usermanager.qryUsers) / Do cfset qry_getUsers =

Re: When is a struct not a struct ?

2008-08-04 Thread Brian Kotek
CFCs can also be treated as structures for most purposes. StructKeyExists(), StructKeyList(), etc. will all work on a CFC instance. On Mon, Aug 4, 2008 at 7:31 AM, Tom Chiverton [EMAIL PROTECTED]wrote: When is a struct (as given by isStruct()) not a struct ? Answer: When it's a (value) object

Re: Coldfusion 8 on Leopard - all of a sudden stopped working

2008-08-04 Thread Travis k
Same problem happened to me today. If I take all the connector code out of the apache config. Then apache runs fine. But otherwise it can't find the webpage. I tried using the web connector app to reconfigure but still never worked. Anybody have a fix for this.

Re: RETS Implementation

2008-08-04 Thread Jake Pilgrim
I have. See me off-list or reply to this posting if you have troubles getting at my email address. - Jake Pilgrim Curious if anyone has done a RETS implementation with ColdFusion to download MLS listings? We're in the process of updating our data import from an older system and would prefer

Re: how to access the query

2008-08-04 Thread Eclectic User
thanks a lot for your help. You are using getUsers for your query results. In order to use it in your view, you need to add it to the event structure (which corresponds to the attributes structure in the display) Instead of cfset getUsers = myFusebox.do( action=usermanager.qryUsers) / Do

Re: how to access the query

2008-08-04 Thread Eclectic User
Thanks a lot for your help. You are using getUsers for your query results. In order to use it in your view, you need to add it to the event structure (which corresponds to the attributes structure in the display) Instead of cfset getUsers = myFusebox.do( action=usermanager.qryUsers) / Do

CF8 and cfgrid

2008-08-04 Thread Ian Skinner
Are there any known issues with the cfgrid... tag and ColdFusion 8? What would be the first steps to debugging why code using cfgrid... functionality is not working on our new 8 application servers? Could using Windows Integrated Security have any affect on this functionality? Thank You Ian

Composition and Data Storage

2008-08-04 Thread Dean Lawrence
I've moved to using OOP about 8 months ago after 10 years of working with CF in a procedural manner. I have a pretty good understanding of how it works, but I always seem to struggle with composition and where in my model should the objects be created and stored. Hopefully someone can shed some

Transfering files from Non-coldfusion IIS Server to a CF Webservice

2008-08-04 Thread Paul Giesenhagen
We have an application on a remote server where customers enter images (the images are located on their machine). We want to do a form post from within their windows application. I am at a loss on it ... I have been reading on MSXML2.ServerXMLHTTP.4.0, but I am not sure if that is the right

Re: Composition and Data Storage

2008-08-04 Thread Brian Kotek
If you're sure the User will only ever have one role, then a roleID column in the User table is fine. However, in practice I would be very leery of such a decision, particularly with something like a Role where a User can almost certainly have more than one Role. In that case, a link table that

Re: Transfering files from Non-coldfusion IIS Server to a CF Webservice

2008-08-04 Thread Yuliang Ruan
use form enctype multipart/form-data. there's a bunch of google topics on this. this one looks to be a good starting step. although it's generic and not CF oriented. http://chxo.com/be2/20050724_93bf.html ~| Adobe®

Re: CF8 and cfgrid

2008-08-04 Thread Ian Skinner
Looking at one of the computers that the grid is failing on we noticed a message from Java that it received a 401 error when it tried to get the following URL. http://dev-administration/CFIDE/classes/cfapplets.jar But if that url is but into the browser, it happily downloads the jar file?

RE: Using iMS with CF 8.0.1

2008-08-04 Thread Craig Dudley
In the interests of being complete. Support have now solved this.. It seems the CF connector is extracting the windows 64 jrun.dll on CF 8.0.1, so extracting the 32bit one manually from.. \ColdFusion8\runtime\lib\wsconfig.jar (connectors\isapi\intel-win\prebuilt\jrun.dll) And using it to

Starting 8.0.1 on leopard under java 1.6?

2008-08-04 Thread Smith, Ed
Hey all - I'm trying to figure out how to start CF8.0.1 under java 1.6 on leopard - as I'm invoking java objects compiled under 1.6. I can do it by changing the default JVM to 1.6, but this breaks a lot of other stuff. CF seems to be ignoring the java_home directive in the jvm.config, and does

Re: Composition and Data Storage

2008-08-04 Thread Dean Lawrence
Thanks Brian, I appreciate your thoughts. I guess what I meant by where does the composition take place is actually more like, where does the population of the composition objects take place. I have the Role attribute defined in the User object along with getters/setters. However, where should

Re: Composition and Data Storage

2008-08-04 Thread Brian Kotek
Knowledge of how to create objects is normally handled in a Factory. So in this case, I'd have a UserFactory that knows how to create a User and associate the correct Roles. That way the knowledge is encapsulated within the Factory and nothing outside of it needs to know how the objects are

RE: Coldfusion 8 on Leopard - all of a sudden stopped working

2008-08-04 Thread Paul Kukiel
Try taking a look at this link it really helped me and since then I have had no issues with Tiger or Leopard and CF8 http://renaun.com/blog/2007/08/07/230/ Paul K -Original Message- From: Travis k [mailto:[EMAIL PROTECTED] Sent: Tuesday, 5 August 2008 6:15 AM To: CF-Talk Subject: Re:

securing pdf's?

2008-08-04 Thread Jessica Kennedy
I have a directory of .pdf files nested within a secure section of my website. However, the application is not firing when a user goes to the direct link to the pdf, so anyone could see the pdf's... does anyone know a way to keep the pdfs from showing unless a user is logged in? Thanks!

Re: securing pdf's?

2008-08-04 Thread Jerry Johnson
You need to change your cf server (and webserver) to process pdf files through coldfusion. That will allow application.cfc/.cfm to fire before the pdf is loaded. (there are better ways, including using cfcontent to push the pdf content, but i will answer the question you asked, instead of

Re: securing pdf's?

2008-08-04 Thread James Holmes
Serve the docs using cfcontent and secure the folder from direct access using your webserver. On Tue, Aug 5, 2008 at 10:00 AM, Jessica Kennedy [EMAIL PROTECTED] wrote: I have a directory of .pdf files nested within a secure section of my website. However, the application is not firing when a

Re: securing pdf's?

2008-08-04 Thread Will Tomlinson
I have a directory of .pdf files nested within a secure section of my website. However, the application is not firing when a user goes to the direct link to the pdf, so anyone could see the pdf's... does anyone know a way to keep the pdfs from showing unless a user is logged in?

Re: Coldfusion 8 on Leopard - all of a sudden stopped working

2008-08-04 Thread Travis Klein
I got cf 8 working with mamp it does not work with mamp pro however. Still pissed off that apples software update screwed me! I'm considering going back to 10.4 Thanks for the help On 4-Aug-08, at 6:46 PM, Paul Kukiel wrote: Try taking a look at this link it really helped me and since

Re: Transfering files from Non-coldfusion IIS Server to a CF Webservice

2008-08-04 Thread Matthew Small
It's important to know the environment of the Windows application. Is it .NET, VB6.0 or C++? If .NET, you would use the System.Net.HTTPRequest namespace and formulate a web request similar to what CF_HTTP does. VB 6.0 would instantiate the MSXML2.ServerXMLHTTP.4.0 object as you've already

Query of Queries

2008-08-04 Thread heath stein
Today our development server got hung up. We had to restart coldfusion and after the restart all queries using query of queries stopped working. The error message says (string out of index 7). Our development server is a linux box with cf 6 installed. If any one has come across this issue