RE: What in the world is CF8 trying to say?

2007-10-15 Thread Jayesh Viradiya
Well...with CF8 also supports C++ CFX tagsso shouldn't be a problem. I believe, as far as, C++ datatypes are properly typecastd by CF, there shouldn't be any problem using them. I would suggest you to refer the documentation for CF8, as it will have History of changes done and may explain

RE: What in the world is CF8 trying to say?

2007-10-14 Thread Rick Faircloth
Thanks for the feedback, Jayesh. It's must be Image.Link# since that's a variable used by the CFX_Tag. Would the fact that the CFX_tag, CFX_JPG, is a C++ tag cause any problems? Rick -Original Message- From: Jayesh Viradiya [mailto:[EMAIL PROTECTED] Sent: Sunday, October 14, 2007

RE: What in the world is CF8 trying to say?

2007-10-14 Thread Dale Fraser
That kind of error normally occurs when you try to access a variable as a type that it isn't Like cfset testVar = {} / cfoutput#testVar['one']['two'] Regards Dale Fraser http://learncf.com -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Sunday, 14 October 2007

RE: What in the world is CF8 trying to say?

2007-10-14 Thread Terry
I had an issue similar to that when going from cf5 to cf7. Try changing your #link# to #linkx# as in my case with #url# it wouldn't allow it. Worth a try. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Saturday, October 13, 2007 8:05 PM To: CF-Talk Subject: What

Re: What in the world is CF8 trying to say?

2007-10-14 Thread Claude Schneegans
I think the problem is with #Image.Link#. I suppose that Image is a structure returned by CFX_JPG? But if you are inside a CFOUTPUT loop on query Get_Announcements., then Image is also a column in the query, and CF tries to get to the element .Link inside Image, which does not work. --

Re: What in the world is CF8 trying to say?

2007-10-14 Thread Aaron Rouse
A way around things like this without renaming things is to just scope it. We ran into a similar problem going to I think it was CF6 when part of some applications did #URL# and all we had to do was go in there and put queryName.URL and was fixed. Of course one could argue that the names of

Re: What in the world is CF8 trying to say?

2007-10-14 Thread Aaron Rouse
Just reread this, figured I'd clarify, I do not think scoping Image in this instance would fix it but certainly could try it. Was not aware of Image being used for something specific in 8, but guess perhaps scoping it might avoid a conflict with something else in the code on the page and not seen

RE: What in the world is CF8 trying to say?

2007-10-14 Thread Rick Faircloth
I didn't purchase CF 8... I purchased a VPS for $70 per month that has beefy hardware and CF 8 installed... a good deal. Rick -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: Sunday, October 14, 2007 1:22 PM To: CF-Talk Subject: Re: What in the world is CF8

RE: What in the world is CF8 trying to say?

2007-10-14 Thread ColdFusion
Where? VPS with CF8?? Might need to really look more into a new host for VPS -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Sunday, October 14, 2007 4:35 PM To: CF-Talk Subject: RE: What in the world is CF8 trying to say? I didn't purchase CF 8... I purchased

Re: What in the world is CF8 trying to say?

2007-10-14 Thread cftalk
I would like to let people know CFX_JPG is an old, retired product. The problem is a namespace collision on the variable name image. The problem was dealt with on the release of ImageCR 3 some years ago. -- Magnus Just reread this, figured I'd clarify, I do not think scoping Image in this

RE: What in the world is CF8 trying to say?

2007-10-14 Thread Terry
ImageCR 3 RULES!!! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, October 14, 2007 2:09 PM To: CF-Talk Subject: Re: What in the world is CF8 trying to say? I would like to let people know CFX_JPG is an old, retired product. The problem is a

Re: What in the world is CF8 trying to say?

2007-10-14 Thread Aaron Rouse
Only a good deal if what you plan to run on it, will in fact run without issues on it or can easily be modified to run on it without issues. On 10/14/07, Rick Faircloth [EMAIL PROTECTED] wrote: I didn't purchase CF 8... I purchased a VPS for $70 per month that has beefy hardware and CF 8

RE: What in the world is CF8 trying to say?

2007-10-14 Thread Rick Faircloth
AHPhosting.net... found their ad right on the houseoffusion website. I highly recommend it. I've been running my own server since CF 4.5 and this gives me complete control over the OS, installing/deleting software, settings, database, and CF 8 admin. It's cheaper that what I pay now just for

RE: What in the world is CF8 trying to say?

2007-10-14 Thread Rick Faircloth
Most of the sites I'm running on my server now are due for an update. So I'll be bringing them along slowly and hopefully rebuilding them as I migrate them anyway. I hope there won't be too many issues. Rick -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent:

What in the world is CF8 trying to say?

2007-10-13 Thread Rick Faircloth
Error Occurred While Processing Request You have attempted to dereference a scalar variable of type class coldfusion.sql.QueryColumn as a structure with members. Huh The code I was processing that threw the error is: 34 : div id=annPhoto 35 : CFX_JPG

RE: What in the world is CF8 trying to say?

2007-10-13 Thread Rick Faircloth
Could this be because CFX_JPG is a C++ tag? As soon as I changed the code to just a regular img tag, the error message disappeared... Rick Error Occurred While Processing Request You have attempted to dereference a scalar variable of type class coldfusion.sql.QueryColumn as a structure

RE: What in the world is CF8 trying to say?

2007-10-13 Thread Jayesh Viradiya
This kind of errors are usually seen when there is a specific type of datatype used for a wrong reason or purpose. Although I can not run your code on my machine, I would like to give some pointers which may help you. Error message says that a datatype which is QueryColumn type is being used