BlueDragon Question

2006-11-15 Thread Jason T. Slack
I am evaluating Blue Dragon for OS X since I am invested in CF (new  
to it, but making the investment) and CF 7 does not run on Intel macs.

I moved over an application that works on CF Server to Blue Dragon  
install on my Powerbook.

I setup a DSN called webPOS using the Blue Dragon Administrator  
(MySQL 5). I also downloaded and followed the instructions for  
Connector/J and Blue Dragon to talk nicely.

When I try to run a CFQUERY I get:

application.dsn doesn't exist.

1:
2: 
3: 
4: SELECT LocationID, LocationName FROM Locations
5:  WHERE LocationID = 
 
 



 
   

Can you help me work through these issues?

Thanks,

-Jason


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260492
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-15 Thread Rick Root
Check the case of the FILENAME for Application.cfm - make sure it has a 
capital "A" - it apparently makes a difference on unix type machines.

Rick

Jason T. Slack wrote:
> I am evaluating Blue Dragon for OS X since I am invested in CF (new  
> to it, but making the investment) and CF 7 does not run on Intel macs.
> 
> I moved over an application that works on CF Server to Blue Dragon  
> install on my Powerbook.
> 
> I setup a DSN called webPOS using the Blue Dragon Administrator  
> (MySQL 5). I also downloaded and followed the instructions for  
> Connector/J and Blue Dragon to talk nicely.
> 
> When I try to run a CFQUERY I get:
> 
> application.dsn doesn't exist.
> 
> 1:
> 2: 
> 3: 
> 4: SELECT LocationID, LocationName FROM Locations
> 5:  WHERE LocationID =  
> ^ Snippet from underlying CFML source
> 
> even though in my application.cfc i have the following:
> 
>  output="false">
>  
>  
>   
>   
>   
>  
>
> 
> Can you help me work through these issues?
> 
> Thanks,
> 
> -Jason
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260494
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-15 Thread Jason T. Slack
Hi Rick,

Yeah that put me further along in the process.

Now I get:

The tag CFQUERY had no corresponding ending tag
Source  

20: 
21:
22:
23: 

^ Snippet from underlying CFML source

Here is the full code:



SELECT LocationID, LocationName FROM Locations
  WHERE LocationID = 
 AND LocationPassword = ;
















Do my CF tags need to have proper capitalization? I thought I could  
do it all lowercase as described in CF WACK.

-Jason


On Nov 15, 2006, at 9:12 AM, Rick Root wrote:

> Check the case of the FILENAME for Application.cfm - make sure it  
> has a
> capital "A" - it apparently makes a difference on unix type machines.


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260498
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-15 Thread Teddy Payne
CF tags are not case sensitive and common practice is to have them all lower
case.

1)



For purposes of style and assumed functionality:



2)

You are missing a # symbol by the word application:



should be



3)

For:
WHERE LocationID = 

Is the locationID column an integer in your database or a varchar?  If it is
an integer:

WHERE LocationID = 


Teddy


On 11/15/06, Jason T. Slack <[EMAIL PROTECTED]> wrote:
>
> Hi Rick,
>
> Yeah that put me further along in the process.
>
> Now I get:
>
> The tag CFQUERY had no corresponding ending tag
> Source
>
> 20: 
> 21:
> 22:
> 23: 
>
> ^ Snippet from underlying CFML source
>
> Here is the full code:
>
> 
> 
> SELECT LocationID, LocationName FROM Locations
>   WHERE LocationID =  value="#form.user#">
>  AND LocationPassword =  value="#form.password#">;
> 
>
> 
> 
>
> 
> 
>
> 
>
> 
> 
> 
> 
> 
>
> Do my CF tags need to have proper capitalization? I thought I could
> do it all lowercase as described in CF WACK.
>
> -Jason
>
>
> On Nov 15, 2006, at 9:12 AM, Rick Root wrote:
>
> > Check the case of the FILENAME for Application.cfm - make sure it
> > has a
> > capital "A" - it apparently makes a difference on unix type machines.
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260499
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Rick Root
Jason T. Slack wrote:
> 
> Yeah that put me further along in the process.



You're missing an opening # sign on the datasource attribute

Should be



whenever you get a missing end tag and you're absolutely sure you're not 
missing an end tag, the likely culprit is an unmatched #

Rick

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260501
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-15 Thread Jason T. Slack
Hi Teddy,

> 2)
>
> You are missing a # symbol by the word application:
>
> 
>
> should be
>
> 

Makes no difference, I still get an application.dsn doesn't exist  
message

> 3)
>
> For:
> WHERE LocationID =  cfsqltype="cf_sql_varchar"value="#form.user#">
>
> Is the locationID column an integer in your database or a varchar?   
> If it is
> an integer:
>
> WHERE LocationID =  cfsqltype="cf_sql_integer"value="#form.user#">

Varchar

Anymore thoughts?

-jason


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260503
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Jason T. Slack
Hi Rick,

I noticed that. Here is what I have:

1:
2: 
3: 
4: SELECT LocationID, LocationName FROM Locations
5:  WHERE LocationID = 
 
 



 
   

-Jason


On Nov 15, 2006, at 9:54 AM, Rick Root wrote:

> Jason T. Slack wrote:
>>
>> Yeah that put me further along in the process.
>
> 
>
> You're missing an opening # sign on the datasource attribute
>
> Should be
>
> 
>
> whenever you get a missing end tag and you're absolutely sure  
> you're not
> missing an end tag, the likely culprit is an unmatched #
>
> Rick
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260505
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Rick Root
What error are you getting now?

Rick

Jason T. Slack wrote:
> Hi Rick,
> 
> I noticed that. Here is what I have:
> 
> 1:
> 2: 
> 3: 
> 4: SELECT LocationID, LocationName FROM Locations
> 5:  WHERE LocationID =  
> ^ Snippet from underlying CFML source
> 
> and I have the following in application.cfc
> 
> 
> output="false">
>  
>  
>   
>   
>   
>  
>
> 
> -Jason
> 
> 
> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
> 
> 
>>Jason T. Slack wrote:
>>
>>>Yeah that put me further along in the process.
>>
>>
>>
>>You're missing an opening # sign on the datasource attribute
>>
>>Should be
>>
>>
>>
>>whenever you get a missing end tag and you're absolutely sure  
>>you're not
>>missing an end tag, the likely culprit is an unmatched #
>>
>>Rick
>>
>>
> 
> 
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260511
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: BlueDragon Question

2006-11-15 Thread Munson, Jacob
Do you see your dsn if you  ? 

> -Original Message-
> From: Jason T. Slack [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, November 15, 2006 8:09 AM
> To: CF-Talk
> Subject: Re: BlueDragon Question
> 
> Hi Rick,
> 
> I noticed that. Here is what I have:
> 
> 1:
> 2: 
> 3: 
> 4: SELECT LocationID, LocationName FROM Locations
> 5:  WHERE LocationID =  
> ^ Snippet from underlying CFML source
> 
> and I have the following in application.cfc
> 
> 
> output="false">
>  
>  
>   
>   
>   
>  
>
> 
> -Jason

"EMF " made the following annotations.
--
This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. 

==


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260512
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Jason T. Slack
I am still getting Application.dsn not found.

-Jason

On Nov 15, 2006, at 10:17 AM, Rick Root wrote:

> What error are you getting now?
>
> Rick
>
> Jason T. Slack wrote:
>> Hi Rick,
>>
>> I noticed that. Here is what I have:
>>
>> 1:
>> 2: 
>> 3: 
>> 4: SELECT LocationID, LocationName FROM Locations
>> 5:  WHERE LocationID = >
>> ^ Snippet from underlying CFML source
>>
>> and I have the following in application.cfc
>>
>>
>>> output="false">
>>  
>>  
>>  
>>  
>>  
>>  
>>
>>
>> -Jason
>>
>>
>> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
>>
>>
>>> Jason T. Slack wrote:
>>>
 Yeah that put me further along in the process.
>>>
>>> 
>>>
>>> You're missing an opening # sign on the datasource attribute
>>>
>>> Should be
>>>
>>> 
>>>
>>> whenever you get a missing end tag and you're absolutely sure
>>> you're not
>>> missing an end tag, the likely culprit is an unmatched #
>>>
>>> Rick
>>>
>>>
>>
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260517
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-15 Thread Teddy Payne
Is the file in the same directory as the application.cfc? If not, is there
another application.cfc or .cfm in the sub folder?

Teddy

On 11/15/06, Jason T. Slack <[EMAIL PROTECTED]> wrote:
>
> I am still getting Application.dsn not found.
>
> -Jason
>
> On Nov 15, 2006, at 10:17 AM, Rick Root wrote:
>
> > What error are you getting now?
> >
> > Rick
> >
> > Jason T. Slack wrote:
> >> Hi Rick,
> >>
> >> I noticed that. Here is what I have:
> >>
> >> 1:
> >> 2: 
> >> 3: 
> >> 4: SELECT LocationID, LocationName FROM Locations
> >> 5:  WHERE LocationID =  >>
> >> ^ Snippet from underlying CFML source
> >>
> >> and I have the following in application.cfc
> >>
> >>
> >> >> output="false">
> >>  
> >>  
> >>
> >>  
> >>
> >>  
> >>
> >>
> >> -Jason
> >>
> >>
> >> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
> >>
> >>
> >>> Jason T. Slack wrote:
> >>>
>  Yeah that put me further along in the process.
> >>>
> >>> 
> >>>
> >>> You're missing an opening # sign on the datasource attribute
> >>>
> >>> Should be
> >>>
> >>> 
> >>>
> >>> whenever you get a missing end tag and you're absolutely sure
> >>> you're not
> >>> missing an end tag, the likely culprit is an unmatched #
> >>>
> >>> Rick
> >>>
> >>>
> >>
> >>
> >>
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260522
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Aaron Roberson
Jason,

Did you get this resolved? If not, please post your current code and
error messages.

-Aaron

On 11/15/06, Teddy Payne <[EMAIL PROTECTED]> wrote:
> Is the file in the same directory as the application.cfc? If not, is there
> another application.cfc or .cfm in the sub folder?
>
> Teddy
>
> On 11/15/06, Jason T. Slack <[EMAIL PROTECTED]> wrote:
> >
> > I am still getting Application.dsn not found.
> >
> > -Jason
> >
> > On Nov 15, 2006, at 10:17 AM, Rick Root wrote:
> >
> > > What error are you getting now?
> > >
> > > Rick
> > >
> > > Jason T. Slack wrote:
> > >> Hi Rick,
> > >>
> > >> I noticed that. Here is what I have:
> > >>
> > >> 1:
> > >> 2: 
> > >> 3: 
> > >> 4: SELECT LocationID, LocationName FROM Locations
> > >> 5:  WHERE LocationID =  > >>
> > >> ^ Snippet from underlying CFML source
> > >>
> > >> and I have the following in application.cfc
> > >>
> > >>
> > >> > >> output="false">
> > >>  
> > >>  
> > >>
> > >>  
> > >>
> > >>  
> > >>
> > >>
> > >> -Jason
> > >>
> > >>
> > >> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
> > >>
> > >>
> > >>> Jason T. Slack wrote:
> > >>>
> >  Yeah that put me further along in the process.
> > >>>
> > >>> 
> > >>>
> > >>> You're missing an opening # sign on the datasource attribute
> > >>>
> > >>> Should be
> > >>>
> > >>> 
> > >>>
> > >>> whenever you get a missing end tag and you're absolutely sure
> > >>> you're not
> > >>> missing an end tag, the likely culprit is an unmatched #
> > >>>
> > >>> Rick
> > >>>
> > >>>
> > >>
> > >>
> > >>
> > >
> > >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260530
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Josh Nathanson
There is an interesting issue with BD that I discovered when I was trying it 
out.

I found that on Linux with Apache, when using user directories with Apache, 
BD it does not go up through the directory structure to find the 
Application.cfm or Application.cfc file, as it should.  If there is not one 
of those files in the same directory as the calling page, it fails to find 
any App.cfm or App.cfc file, so your Application.dsn variable would not be 
set.

I think you said you were on Mac OS, but maybe you could do a test -- set a 
simple variable in your Application file and see if it gets set properly. 
Or make sure your Application file is in the same directory as your calling 
page.

This may or may not be your issue, but it sounds like it could be the 
problem.

-- Josh


- Original Message - 
From: "Teddy Payne" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Wednesday, November 15, 2006 8:29 AM
Subject: Re: BlueDragon Question


> Is the file in the same directory as the application.cfc? If not, is there
> another application.cfc or .cfm in the sub folder?
>
> Teddy
>
> On 11/15/06, Jason T. Slack <[EMAIL PROTECTED]> wrote:
>>
>> I am still getting Application.dsn not found.
>>
>> -Jason
>>
>> On Nov 15, 2006, at 10:17 AM, Rick Root wrote:
>>
>> > What error are you getting now?
>> >
>> > Rick
>> >
>> > Jason T. Slack wrote:
>> >> Hi Rick,
>> >>
>> >> I noticed that. Here is what I have:
>> >>
>> >> 1:
>> >> 2: 
>> >> 3: 
>> >> 4: SELECT LocationID, LocationName FROM Locations
>> >> 5:  WHERE LocationID = > >>
>> >> ^ Snippet from underlying CFML source
>> >>
>> >> and I have the following in application.cfc
>> >>
>> >>
>> >>> >> output="false">
>> >>  
>> >>  
>> >>
>> >>  
>> >>
>> >>  
>> >>
>> >>
>> >> -Jason
>> >>
>> >>
>> >> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
>> >>
>> >>
>> >>> Jason T. Slack wrote:
>> >>>
>> >>>> Yeah that put me further along in the process.
>> >>>
>> >>> 
>> >>>
>> >>> You're missing an opening # sign on the datasource attribute
>> >>>
>> >>> Should be
>> >>>
>> >>> 
>> >>>
>> >>> whenever you get a missing end tag and you're absolutely sure
>> >>> you're not
>> >>> missing an end tag, the likely culprit is an unmatched #
>> >>>
>> >>> Rick
>> >>>
>> >>>
>> >>
>> >>
>> >>
>> >
>> >
>>
>>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260531
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: BlueDragon Question

2006-11-15 Thread Munson, Jacob
> There is an interesting issue with BD that I discovered when 
> I was trying it 
> out.
> 
> I found that on Linux with Apache, when using user 
> directories with Apache, 
> BD it does not go up through the directory structure to find the 
> Application.cfm or Application.cfc file, as it should.  If 
> there is not one 
> of those files in the same directory as the calling page, it 
> fails to find 
> any App.cfm or App.cfc file, so your Application.dsn variable 
> would not be 
> set.

Did you report this to New Atlanta? 



"EMF " made the following annotations.
--
This transmission may contain information that is privileged, confidential 
and/or exempt from disclosure under applicable law. If you are not the intended 
recipient, you are hereby notified that any disclosure, copying, distribution, 
or use of the information contained herein (including any reliance thereon) is 
STRICTLY PROHIBITED. If you received this transmission in error, please 
immediately contact the sender and destroy the material in its entirety, 
whether in electronic or hard copy format. Thank you. 

==


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260535
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-15 Thread Mark Drew
Jason

can you run the following?:

SELECT LocationID, LocationName FROM Locations
WHERE LocationID = 
 I am evaluating Blue Dragon for OS X since I am invested in CF (new
> to it, but making the investment) and CF 7 does not run on Intel macs.
>
> I moved over an application that works on CF Server to Blue Dragon
> install on my Powerbook.
>
> I setup a DSN called webPOS using the Blue Dragon Administrator
> (MySQL 5). I also downloaded and followed the instructions for
> Connector/J and Blue Dragon to talk nicely.
>
> When I try to run a CFQUERY I get:
>
> application.dsn doesn't exist.
>
> 1:
> 2: 
> 3: 
> 4: SELECT LocationID, LocationName FROM Locations
> 5:  WHERE LocationID = 
> ^ Snippet from underlying CFML source
>
> even though in my application.cfc i have the following:
>
>  output="false">
>  
>  
>   
>   
>   
>  
>
>
> Can you help me work through these issues?
>
> Thanks,
>
> -Jason
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260538
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Josh Nathanson
>
> Did you report this to New Atlanta?
>

Yes, and supposedly it was resolved...I stopped using the account though, so 
I hadn't applied the hotfix that was supposed to have resolved the issue.  I 
do recall someone on the NA mail list still having the same problem even 
after the hotfix though.  Maybe one of the NA folks who's on this list could 
address this issue.

-- Josh



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260540
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-15 Thread Jordan Michaels
Hi Jason,

I believe you misunderstood Rick Roots original Post. From what I've
read of this thread, it looks to me like you capitalized the "A" in your
CFML code, turning "application.dsn" into "Application.dsn".

Rick was actually talking about your Application.cfc file itself - not
anything in your CFML code.

Since Windows is not a case-sensitive OS, it's common for CFML
developers who develop on Windows systems to forget - or not even know -
that the true CFML specification for the Application.cfm or the
Application.cfc tag is to CAPITALIZE the "A" in "Application.cfm". Since
Linux and Mac OSX are UNIX-based, and UNIX is a case-sensitive OS, CFML
developers need to realize that this specification is enforced on those
systems. It's not enforced on Windows because Windows doesn't bother to
make the distinction when it comes to the names of your files.

So... to fix this, simply capitalize the "A" in your "Application.cfc"
file name.

Hope this helps!

--
Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Blue Dragon Alliance Member
[EMAIL PROTECTED]


Jason T. Slack wrote:
> I am still getting Application.dsn not found.
> 
> -Jason
> 
> On Nov 15, 2006, at 10:17 AM, Rick Root wrote:
> 
> 
>>What error are you getting now?
>>
>>Rick
>>
>>Jason T. Slack wrote:
>>
>>>Hi Rick,
>>>
>>>I noticed that. Here is what I have:
>>>
>>>1:
>>>2: 
>>>3: 
>>>4: SELECT LocationID, LocationName FROM Locations
>>>5:  WHERE LocationID = >>
>>>^ Snippet from underlying CFML source
>>>
>>>and I have the following in application.cfc
>>>
>>>
>>>   >>output="false">
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>>   
>>>
>>>-Jason
>>>
>>>
>>>On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
>>>
>>>
>>>
Jason T. Slack wrote:


>Yeah that put me further along in the process.



You're missing an opening # sign on the datasource attribute

Should be



whenever you get a missing end tag and you're absolutely sure
you're not
missing an end tag, the likely culprit is an unmatched #

Rick

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260542
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Rick Root
Jason T. Slack wrote:
> I am still getting Application.dsn not found.

It's important to note that the onApplicationStart function ONLY runs 
when an application is initialized, which is generally a pretty rare 
occurrence for a web site that gets accessed a lot.

One way to force the application to restart is to restart coldfusion.

Alternatively, you could use the onRequestStart() method of the 
application.cfc in such a way that it forces reinitialization of the 
application based on some url parameter

ie...










I haven't ever used application.cfc yet, so I don't know if that really 
would be valid or not.

Rick


~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260544
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BlueDragon Question

2006-11-15 Thread Josh Adams
We believe that issue to have been resolved fully as described here:

http://www.newatlanta.com/c/auth/support/bluedragon/bugtracking/detail?bugId
=2453

If anyone finds otherwise, please let us know.

Josh

-Original Message-
From: Josh Nathanson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 15, 2006 12:44 PM
To: CF-Talk
Subject: Re: BlueDragon Question

>
> Did you report this to New Atlanta?
>

Yes, and supposedly it was resolved...I stopped using the account though, so
I hadn't applied the hotfix that was supposed to have resolved the issue.  I
do recall someone on the NA mail list still having the same problem even
after the hotfix though.  Maybe one of the NA folks who's on this list could
address this issue.

-- Josh





~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260558
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BlueDragon Question

2006-11-15 Thread Josh Adams
Are you still having this problem, Jason?  If so, are you using the
BlueDragon 7 beta?  If not, be sure to check it out!  You will need the
BlueDragon 7 beta (or any later version we release) to use Application.cfc
as versions of BlueDragon prior to 7 beta do not support the automatic use
of that file.

Let us know where things stand!

Thanks,
Josh

-Original Message-
From: Jason T. Slack [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 15, 2006 10:38 AM
To: CF-Talk
Subject: Re: BlueDragon Question

I am still getting Application.dsn not found.

-Jason

On Nov 15, 2006, at 10:17 AM, Rick Root wrote:

> What error are you getting now?
>
> Rick
>
> Jason T. Slack wrote:
>> Hi Rick,
>>
>> I noticed that. Here is what I have:
>>
>> 1:
>> 2: 
>> 3: 
>> 4: SELECT LocationID, LocationName FROM Locations
>> 5:  WHERE LocationID = >
>> ^ Snippet from underlying CFML source
>>
>> and I have the following in application.cfc
>>
>>
>>> output="false">
>>  
>>  
>>  
>>  
>>  
>>  
>>
>>
>> -Jason
>>
>>
>> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
>>
>>
>>> Jason T. Slack wrote:
>>>
>>>> Yeah that put me further along in the process.
>>>
>>> 
>>>
>>> You're missing an opening # sign on the datasource attribute
>>>
>>> Should be
>>>
>>> 
>>>
>>> whenever you get a missing end tag and you're absolutely sure you're 
>>> not missing an end tag, the likely culprit is an unmatched #
>>>
>>> Rick
>>>
>>>
>>
>>
>>
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260557
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Jason T. Slack
Hi Josh,

I tried the BlueDragon 7 beta and I cannot get it to install properly.

It only installs the uninstall application, nothing else.

the version 6.x installer works perfectly.

So what do I do to fix my issue? I thought that I had everything set  
correctly since it works on my Windows CF MX 7.02 server. I would  
prefer to use OS X though.

Can we chat about this more to see what I am doing wrong?

Thanks,

-Jason


On Nov 15, 2006, at 2:34 PM, Josh Adams wrote:

> Are you still having this problem, Jason?  If so, are you using the
> BlueDragon 7 beta?  If not, be sure to check it out!  You will need  
> the
> BlueDragon 7 beta (or any later version we release) to use  
> Application.cfc
> as versions of BlueDragon prior to 7 beta do not support the  
> automatic use
> of that file.
>
> Let us know where things stand!
>
> Thanks,
> Josh
>
> -Original Message-
> From: Jason T. Slack [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 15, 2006 10:38 AM
> To: CF-Talk
> Subject: Re: BlueDragon Question
>
> I am still getting Application.dsn not found.
>
> -Jason
>
> On Nov 15, 2006, at 10:17 AM, Rick Root wrote:
>
>> What error are you getting now?
>>
>> Rick
>>
>> Jason T. Slack wrote:
>>> Hi Rick,
>>>
>>> I noticed that. Here is what I have:
>>>
>>> 1:
>>> 2: 
>>> 3: 
>>> 4: SELECT LocationID, LocationName FROM Locations
>>> 5:  WHERE LocationID = >>
>>> ^ Snippet from underlying CFML source
>>>
>>> and I have the following in application.cfc
>>>
>>>
>>>>> output="false">
>>>  
>>>  
>>> 
>>> 
>>> 
>>>  
>>>
>>>
>>> -Jason
>>>
>>>
>>> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
>>>
>>>
>>>> Jason T. Slack wrote:
>>>>
>>>>> Yeah that put me further along in the process.
>>>>
>>>> 
>>>>
>>>> You're missing an opening # sign on the datasource attribute
>>>>
>>>> Should be
>>>>
>>>> 
>>>>
>>>> whenever you get a missing end tag and you're absolutely sure  
>>>> you're
>>>> not missing an end tag, the likely culprit is an unmatched #
>>>>
>>>> Rick
>>>>
>>>>
>>>
>>>
>>>
>>
>>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260616
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-15 Thread Dave Lyons
Btw~ Coldfusion runs pretty damn good on intel macs, you just gotta spend an 
additional 20 seconds on the install.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260622
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-16 Thread Jochem van Dieten
Jason T. Slack wrote:
> 
> I tried the BlueDragon 7 beta and I cannot get it to install properly.
> 
> It only installs the uninstall application, nothing else.
> 
> the version 6.x installer works perfectly.

Application.cfc is a BD7 feature. You need BD7 to use it.

Jochem

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260631
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BlueDragon Question

2006-11-16 Thread Jason T. Slack
Hi,

> Btw~ Coldfusion runs pretty damn good on intel macs, you just gotta  
> spend an additional 20 seconds on the install.

I tried installing CF 7.02 and the install went well but I cannot  
start the server.

How did you get it to install and start the server?

-jason

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260657
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BlueDragon Question

2006-11-16 Thread Josh Adams
It's possible that you're not doing anything wrong in regards to BD 7
beta--the installer may not have been tested on Intel Mac.  We would expect,
however, that if you could get it installed, it would run on Intel Mac.
However, we are working on an installer for BD 7 beta 2 for Intel Mac that
will be better for you anyway as it will support the native adapters needed
if you don't want to use BD's built-in web server.  We expect to release
that installer shortly after Thanksgiving.

By all means, contact me any time in regards to BlueDragon.  Also, note that
our BlueDragon Interest mailing list is a great resource--the people on that
list are amazing at helping out with installation-related issues.  Check it
out:

http://www.newatlanta.com/products/bluedragon/self_help/archive_search/index
..cfm

Josh 

-Original Message-
From: Jason T. Slack [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 15, 2006 8:46 PM
To: CF-Talk
Subject: Re: BlueDragon Question

Hi Josh,

I tried the BlueDragon 7 beta and I cannot get it to install properly.

It only installs the uninstall application, nothing else.

the version 6.x installer works perfectly.

So what do I do to fix my issue? I thought that I had everything set
correctly since it works on my Windows CF MX 7.02 server. I would prefer to
use OS X though.

Can we chat about this more to see what I am doing wrong?

Thanks,

-Jason


On Nov 15, 2006, at 2:34 PM, Josh Adams wrote:

> Are you still having this problem, Jason?  If so, are you using the 
> BlueDragon 7 beta?  If not, be sure to check it out!  You will need 
> the BlueDragon 7 beta (or any later version we release) to use 
> Application.cfc as versions of BlueDragon prior to 7 beta do not 
> support the automatic use of that file.
>
> Let us know where things stand!
>
> Thanks,
> Josh
>
> -Original Message-
> From: Jason T. Slack [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 15, 2006 10:38 AM
> To: CF-Talk
> Subject: Re: BlueDragon Question
>
> I am still getting Application.dsn not found.
>
> -Jason
>
> On Nov 15, 2006, at 10:17 AM, Rick Root wrote:
>
>> What error are you getting now?
>>
>> Rick
>>
>> Jason T. Slack wrote:
>>> Hi Rick,
>>>
>>> I noticed that. Here is what I have:
>>>
>>> 1:
>>> 2: 
>>> 3: 
>>> 4: SELECT LocationID, LocationName FROM Locations
>>> 5:  WHERE LocationID = >>
>>> ^ Snippet from underlying CFML source
>>>
>>> and I have the following in application.cfc
>>>
>>>
>>>>> output="false">
>>>  
>>>  
>>> 
>>> 
>>> 
>>>  
>>>
>>>
>>> -Jason
>>>
>>>
>>> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
>>>
>>>
>>>> Jason T. Slack wrote:
>>>>
>>>>> Yeah that put me further along in the process.
>>>>
>>>> 
>>>>
>>>> You're missing an opening # sign on the datasource attribute
>>>>
>>>> Should be
>>>>
>>>> 
>>>>
>>>> whenever you get a missing end tag and you're absolutely sure 
>>>> you're not missing an end tag, the likely culprit is an unmatched #
>>>>
>>>> Rick
>>>>
>>>>
>>>
>>>
>>>
>>
>>
>
>
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260662
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-16 Thread Jason T. Slack
Hi Josh,

Any chance of getting this beta early?

-Jason
On Nov 16, 2006, at 10:25 AM, Josh Adams wrote:

> It's possible that you're not doing anything wrong in regards to BD 7
> beta--the installer may not have been tested on Intel Mac.  We  
> would expect,
> however, that if you could get it installed, it would run on Intel  
> Mac.
> However, we are working on an installer for BD 7 beta 2 for Intel  
> Mac that
> will be better for you anyway as it will support the native  
> adapters needed
> if you don't want to use BD's built-in web server.  We expect to  
> release
> that installer shortly after Thanksgiving.
>
> By all means, contact me any time in regards to BlueDragon.  Also,  
> note that
> our BlueDragon Interest mailing list is a great resource--the  
> people on that
> list are amazing at helping out with installation-related issues.   
> Check it
> out:
>
> http://www.newatlanta.com/products/bluedragon/self_help/ 
> archive_search/index
> ..cfm
>
> Josh
>
> -Original Message-
> From: Jason T. Slack [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 15, 2006 8:46 PM
> To: CF-Talk
> Subject: Re: BlueDragon Question
>
> Hi Josh,
>
> I tried the BlueDragon 7 beta and I cannot get it to install properly.
>
> It only installs the uninstall application, nothing else.
>
> the version 6.x installer works perfectly.
>
> So what do I do to fix my issue? I thought that I had everything set
> correctly since it works on my Windows CF MX 7.02 server. I would  
> prefer to
> use OS X though.
>
> Can we chat about this more to see what I am doing wrong?
>
> Thanks,
>
> -Jason
>
>
> On Nov 15, 2006, at 2:34 PM, Josh Adams wrote:
>
>> Are you still having this problem, Jason?  If so, are you using the
>> BlueDragon 7 beta?  If not, be sure to check it out!  You will need
>> the BlueDragon 7 beta (or any later version we release) to use
>> Application.cfc as versions of BlueDragon prior to 7 beta do not
>> support the automatic use of that file.
>>
>> Let us know where things stand!
>>
>> Thanks,
>> Josh
>>
>> -Original Message-
>> From: Jason T. Slack [mailto:[EMAIL PROTECTED]
>> Sent: Wednesday, November 15, 2006 10:38 AM
>> To: CF-Talk
>> Subject: Re: BlueDragon Question
>>
>> I am still getting Application.dsn not found.
>>
>> -Jason
>>
>> On Nov 15, 2006, at 10:17 AM, Rick Root wrote:
>>
>>> What error are you getting now?
>>>
>>> Rick
>>>
>>> Jason T. Slack wrote:
>>>> Hi Rick,
>>>>
>>>> I noticed that. Here is what I have:
>>>>
>>>> 1:
>>>> 2: 
>>>> 3: 
>>>> 4: SELECT LocationID, LocationName FROM Locations
>>>> 5:  WHERE LocationID = >>>
>>>> ^ Snippet from underlying CFML source
>>>>
>>>> and I have the following in application.cfc
>>>>
>>>>
>>>>>>> output="false">
>>>>  
>>>>  
>>>>
>>>>
>>>>
>>>>  
>>>>
>>>>
>>>> -Jason
>>>>
>>>>
>>>> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
>>>>
>>>>
>>>>> Jason T. Slack wrote:
>>>>>
>>>>>> Yeah that put me further along in the process.
>>>>>
>>>>> 
>>>>>
>>>>> You're missing an opening # sign on the datasource attribute
>>>>>
>>>>> Should be
>>>>>
>>>>> 
>>>>>
>>>>> whenever you get a missing end tag and you're absolutely sure
>>>>> you're not missing an end tag, the likely culprit is an  
>>>>> unmatched #
>>>>>
>>>>> Rick
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>>
>>
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260669
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-16 Thread Aaron Roberson
Josh,

If you have BD 6.2 up and running on OS X all you have to do is
convert your Application.cfc file to Application.cfm. As was already
mentioned, BD 6.2 does not support Application.cfc, but BD 7 which
will be release in January(?) will.

-Aaron

On 11/16/06, Jason T. Slack <[EMAIL PROTECTED]> wrote:
> Hi Josh,
>
> Any chance of getting this beta early?
>
> -Jason
> On Nov 16, 2006, at 10:25 AM, Josh Adams wrote:
>
> > It's possible that you're not doing anything wrong in regards to BD 7
> > beta--the installer may not have been tested on Intel Mac.  We
> > would expect,
> > however, that if you could get it installed, it would run on Intel
> > Mac.
> > However, we are working on an installer for BD 7 beta 2 for Intel
> > Mac that
> > will be better for you anyway as it will support the native
> > adapters needed
> > if you don't want to use BD's built-in web server.  We expect to
> > release
> > that installer shortly after Thanksgiving.
> >
> > By all means, contact me any time in regards to BlueDragon.  Also,
> > note that
> > our BlueDragon Interest mailing list is a great resource--the
> > people on that
> > list are amazing at helping out with installation-related issues.
> > Check it
> > out:
> >
> > http://www.newatlanta.com/products/bluedragon/self_help/
> > archive_search/index
> > ..cfm
> >
> > Josh
> >
> > -Original Message-
> > From: Jason T. Slack [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, November 15, 2006 8:46 PM
> > To: CF-Talk
> > Subject: Re: BlueDragon Question
> >
> > Hi Josh,
> >
> > I tried the BlueDragon 7 beta and I cannot get it to install properly.
> >
> > It only installs the uninstall application, nothing else.
> >
> > the version 6.x installer works perfectly.
> >
> > So what do I do to fix my issue? I thought that I had everything set
> > correctly since it works on my Windows CF MX 7.02 server. I would
> > prefer to
> > use OS X though.
> >
> > Can we chat about this more to see what I am doing wrong?
> >
> > Thanks,
> >
> > -Jason
> >
> >
> > On Nov 15, 2006, at 2:34 PM, Josh Adams wrote:
> >
> >> Are you still having this problem, Jason?  If so, are you using the
> >> BlueDragon 7 beta?  If not, be sure to check it out!  You will need
> >> the BlueDragon 7 beta (or any later version we release) to use
> >> Application.cfc as versions of BlueDragon prior to 7 beta do not
> >> support the automatic use of that file.
> >>
> >> Let us know where things stand!
> >>
> >> Thanks,
> >> Josh
> >>
> >> -Original Message-
> >> From: Jason T. Slack [mailto:[EMAIL PROTECTED]
> >> Sent: Wednesday, November 15, 2006 10:38 AM
> >> To: CF-Talk
> >> Subject: Re: BlueDragon Question
> >>
> >> I am still getting Application.dsn not found.
> >>
> >> -Jason
> >>
> >> On Nov 15, 2006, at 10:17 AM, Rick Root wrote:
> >>
> >>> What error are you getting now?
> >>>
> >>> Rick
> >>>
> >>> Jason T. Slack wrote:
> >>>> Hi Rick,
> >>>>
> >>>> I noticed that. Here is what I have:
> >>>>
> >>>> 1:
> >>>> 2: 
> >>>> 3: 
> >>>> 4: SELECT LocationID, LocationName FROM Locations
> >>>> 5:  WHERE LocationID =  >>>>
> >>>> ^ Snippet from underlying CFML source
> >>>>
> >>>> and I have the following in application.cfc
> >>>>
> >>>>
> >>>> >>>> output="false">
> >>>>  
> >>>>  
> >>>>
> >>>>
> >>>>
> >>>>  
> >>>>
> >>>>
> >>>> -Jason
> >>>>
> >>>>
> >>>> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
> >>>>
> >>>>
> >>>>> Jason T. Slack wrote:
> >>>>>
> >>>>>> Yeah that put me further along in the process.
> >>>>>
> >>>>> 
> >>>>>
> >>>>> You're missing an opening # sign on the datasource attribute
> >>>>>
> >>>>> Should be
> >>>>>
> >>>>> 
> >>>>>
> >>>>> whenever you get a missing end tag and you're absolutely sure
> >>>>> you're not missing an end tag, the likely culprit is an
> >>>>> unmatched #
> >>>>>
> >>>>> Rick
> >>>>>
> >>>>>
> >>>>
> >>>>
> >>>>
> >>>
> >>>
> >>
> >>
> >>
> >>
> >
> >
> >
> >
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260679
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BlueDragon Question

2006-11-16 Thread Aaron Roberson
Oops, I meant Jason...

If you have BD 6.2 up and running on OS X all you have to do is
convert your Application.cfc file to Application.cfm. As was already
mentioned, BD 6.2 does not support Application.cfc, but BD 7 which
will be release in January(?) will.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260680
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: BlueDragon Question

2006-11-16 Thread Josh Adams
It's not being held back--when it's ready, it will be released!  We'll be
sure to announce it on the BlueDragon Interest list so subscribe there to be
ensured of hearing the news of the release.

Josh 

-Original Message-
From: Jason T. Slack [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 16, 2006 10:52 AM
To: CF-Talk
Subject: Re: BlueDragon Question

Hi Josh,

Any chance of getting this beta early?

-Jason
On Nov 16, 2006, at 10:25 AM, Josh Adams wrote:

> It's possible that you're not doing anything wrong in regards to BD 7 
> beta--the installer may not have been tested on Intel Mac.  We would 
> expect, however, that if you could get it installed, it would run on 
> Intel Mac.
> However, we are working on an installer for BD 7 beta 2 for Intel Mac 
> that will be better for you anyway as it will support the native 
> adapters needed if you don't want to use BD's built-in web server.  We 
> expect to release that installer shortly after Thanksgiving.
>
> By all means, contact me any time in regards to BlueDragon.  Also, 
> note that our BlueDragon Interest mailing list is a great 
> resource--the people on that
> list are amazing at helping out with installation-related issues.   
> Check it
> out:
>
> http://www.newatlanta.com/products/bluedragon/self_help/
> archive_search/index
> ..cfm
>
> Josh
>
> -Original Message-
> From: Jason T. Slack [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, November 15, 2006 8:46 PM
> To: CF-Talk
> Subject: Re: BlueDragon Question
>
> Hi Josh,
>
> I tried the BlueDragon 7 beta and I cannot get it to install properly.
>
> It only installs the uninstall application, nothing else.
>
> the version 6.x installer works perfectly.
>
> So what do I do to fix my issue? I thought that I had everything set 
> correctly since it works on my Windows CF MX 7.02 server. I would 
> prefer to use OS X though.
>
> Can we chat about this more to see what I am doing wrong?
>
> Thanks,
>
> -Jason
>
>
> On Nov 15, 2006, at 2:34 PM, Josh Adams wrote:
>
>> Are you still having this problem, Jason?  If so, are you using the 
>> BlueDragon 7 beta?  If not, be sure to check it out!  You will need 
>> the BlueDragon 7 beta (or any later version we release) to use 
>> Application.cfc as versions of BlueDragon prior to 7 beta do not 
>> support the automatic use of that file.
>>
>> Let us know where things stand!
>>
>> Thanks,
>> Josh
>>
>> -Original Message-
>> From: Jason T. Slack [mailto:[EMAIL PROTECTED]
>> Sent: Wednesday, November 15, 2006 10:38 AM
>> To: CF-Talk
>> Subject: Re: BlueDragon Question
>>
>> I am still getting Application.dsn not found.
>>
>> -Jason
>>
>> On Nov 15, 2006, at 10:17 AM, Rick Root wrote:
>>
>>> What error are you getting now?
>>>
>>> Rick
>>>
>>> Jason T. Slack wrote:
>>>> Hi Rick,
>>>>
>>>> I noticed that. Here is what I have:
>>>>
>>>> 1:
>>>> 2: 
>>>> 3: 
>>>> 4: SELECT LocationID, LocationName FROM Locations
>>>> 5:  WHERE LocationID = >>>
>>>> ^ Snippet from underlying CFML source
>>>>
>>>> and I have the following in application.cfc
>>>>
>>>>
>>>>>>> output="false">
>>>>  
>>>>  
>>>>
>>>>
>>>>
>>>>  
>>>>
>>>>
>>>> -Jason
>>>>
>>>>
>>>> On Nov 15, 2006, at 9:54 AM, Rick Root wrote:
>>>>
>>>>
>>>>> Jason T. Slack wrote:
>>>>>
>>>>>> Yeah that put me further along in the process.
>>>>>
>>>>> 
>>>>>
>>>>> You're missing an opening # sign on the datasource attribute
>>>>>
>>>>> Should be
>>>>>
>>>>> 
>>>>>
>>>>> whenever you get a missing end tag and you're absolutely sure 
>>>>> you're not missing an end tag, the likely culprit is an unmatched 
>>>>> #
>>>>>
>>>>> Rick
>>>>>
>>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>>
>>
>
>
>
> 



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260761
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BlueDragon Question

2006-11-16 Thread Josh Adams
And the beta 2 which should be out by early December will support
Application.cfc as well.

But it's not quite as simple as converting Application.cfc to
Application.cfm.  Application.cfm is a chunk of procedural code executed at
the beginning of every request; Application.cfc is a component with methods
that fire in response to particular events.  However, depending on what of
those methods he needs, Jason may be able to take the appropriate parts of
his Application.cfc and put them in Application.cfm.

Josh 

-Original Message-
From: Aaron Roberson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, November 16, 2006 11:40 AM
To: CF-Talk
Subject: Re: BlueDragon Question

Oops, I meant Jason...

If you have BD 6.2 up and running on OS X all you have to do is convert your
Application.cfc file to Application.cfm. As was already mentioned, BD 6.2
does not support Application.cfc, but BD 7 which will be release in
January(?) will.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:260759
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4