> This is the first time i have created a coldfusion 
> application and have always used dreamweaver to pracitse it. 
> for some reason i am getting an error now that says it is 
> having problems doing 5 >= 0 which i have no idea about as if 
> i take my custom application.cfc page out it works fine - but 
> again without the session variables working. Do you have any 
> idea of what should go into the application.cfc at a very 
> basic level. Just enough to get the session variables working 
> and then i can go into what really should go into this page later on

<cfcomponent>

        <!--- You don't actually have to use the "this" scope, but most
Application.cfc examples do. --->
        <cfset this.name = "yourapplicationname">
        <cfset this.sessionmanagement = "yes">

</cfcomponent>

As for "5 >= 0", that's not a valid CF expression. CF uses English-language
operators (and abbreviations as operators):

<cfif 5 gte 0>...</cfif>

> also, if i docreate my own custom application.cfc page then 
> do i leave the dreamweaver  generated one in the 
> _mmServerScripts folder 

Yes. That's for Dreamweaver's use, not yours.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
 
Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore and Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
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:254171
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to