FW: Application.cfm Problem

2001-01-19 Thread Martin Sutton
Application.cfm problem too! Thanks for your responses. Martin. -- -- - LEGAL DISCLAIMER -- This message and any attachments to it is intended only for the individual or company to which

RE: Application.cfm Problem

2001-01-19 Thread Jason Lees (National Express)
January 2001 14:00 To: CF-Talk Subject: RE: Application.cfm Problem Yeah it is upper case. It doesn't actually matter on a windows system to my knowledge but I do it anyway for portability. I still can't figure this out. Thanks

RE: Application.cfm Problem

2001-01-19 Thread Edward Chanter
[mailto:[EMAIL PROTECTED]] Sent: 19 January 2001 2:00 PM To: CF-Talk Subject: RE: Application.cfm Problem Yeah it is upper case. It doesn't actually matter on a windows system to my knowledge but I do it anyway for port

RE: Application.cfm Problem

2001-01-19 Thread Javed Mushtaq
essiontimeout="#CreateTimeSpan('0', '7', '0', '0')#" applicationtimeout="#CreateTimeSpan('1', '0', '0', '0')#" Also you seemed to have closed off the application.cfm file with nothing in it except the name. -Original Message- From: Martin Sutton [mailto:[EMAIL

RE: Application.cfm Problem

2001-01-19 Thread Sean Daniels
Put your output in a different file in the same driectory as application.cfm and run that file. I may be wrong, but I don't think application.cfm can have any html output in it. Only cf code. - Sean ~~ Structure your ColdFusion code with Fusebox

Newbie Question about Application.cfm

2001-01-09 Thread Gieseman, Athelene
I'm trying to use session variables for the first time. I've gone into CF Administrator and registered the ODBC to use session and client variables. I also added an Application.cfm file to the top directory where the app resides. The following is all I have in that file: !DOCTYPE HTML PUBLIC

Re: Newbie Question about Application.cfm

2001-01-09 Thread Nick Slay
Hi Athlene, The Application.cfm file should not have any HTML in the file, otherwise that get's put on the page. The CFAPPLICATION tag should be the first thing in the file. After that you can set your session variables, and output header code etc etc Nick From: "Gieseman, Athelene&qu

RE: Newbie Question about Application.cfm

2001-01-09 Thread Matthew Walker
I'm trying to use session variables for the first time. I've gone into CF Administrator and registered the ODBC to use session and client variables. I also added an Application.cfm file to the top directory where the app resides. The following is all I have in that file: Don't put html

RE: Newbie Question about Application.cfm

2001-01-09 Thread Darryl Lyons
Remove the HTML code from the application.cfm file. (And BTW it would have come up with a blank page the first time wouldn't it?) The application.cfm is really where you should be storing your variable declarations - your global variables. E.g. Your login management would be placed within

Re: Newbie Question about Application.cfm

2001-01-09 Thread Howie Hamlin
Talk" [EMAIL PROTECTED] Sent: Tuesday, January 09, 2001 4:51 PM Subject: Newbie Question about Application.cfm I'm trying to use session variables for the first time. I've gone into CF Administrator and registered the ODBC to use session and client variables. I also added an Appl

RE: Newbie Question about Application.cfm

2001-01-09 Thread Garza, Jeff
I'm trying to use session variables for the first time. I've gone into CF Administrator and registered the ODBC to use session and client variables. I also added an Application.cfm file to the top directory where the app resides. The following is all I have in that file: Don't put html

RE: Newbie Question about Application.cfm

2001-01-09 Thread Gieseman, Athelene
That was it! Thank you to all who answered. Athelene -Original Message- From: Nick Slay [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 4:54 PM To: CF-Talk Subject: Re: Newbie Question about Application.cfm Hi Athlene, The Application.cfm file should not have any HTML

Alternatives to Coding Username and Password in Application.cfm

2000-12-21 Thread Jeffry Houser
With all this talk of the '+.htr' bug... What are alternatives to hard-coding in the username and password in a query? The first alternative is to code them as variables in the application.cfm. Although, if the above '.htr' bug is present, that doesn't make the app any more secure

Re: Alternatives to Coding Username and Password in Application.cfm

2000-12-21 Thread Gena
From: "Jeffry Houser" [EMAIL PROTECTED] With all this talk of the '+.htr' bug... What are alternatives to hard-coding in the username and password in a query? Use stored procedures. It is 99% guarantee safe of your data. Regards ~~

Re: Alternatives to Coding Username and Password in Application.cfm

2000-12-21 Thread Jeffry Houser
err... does this really address the issue? Are you saying I can reference a stored procedure in a secure (SQL Server) database without a valid username and password to log into the database? Gena wrote: From: "Jeffry Houser" [EMAIL PROTECTED] With all this talk of the '+.htr' bug...

Re: Alternatives to Coding Username and Password in Application.cfm

2000-12-21 Thread Gena
I guess issue was - to protect data from modification by unauthorized person. If you don't care about this - you shouldn't care about stolen username/password at all. Username/password in cfm can give you access to stored procedure but not to tables. Stored procedure itself can have rights to

Re: Multiple Application.cfm files

2000-12-19 Thread W Luke
Thanks Seamus...ya learn something new every day :) Will - Original Message - From: "Seamus Campbell" [EMAIL PROTECTED] Newsgroups: dotcom.lists.cftalk Sent: Tuesday, December 19, 2000 12:41 AM Subject: RE: Multiple Application.cfm files I had similar errors a

Multiple Application.cfm files

2000-12-18 Thread W Luke
Hello, I'm going to be coding "sub-sites" of my current website in the form of "newsite.mydomain.com." Beforehand and in development I'm just using directories off my root in htdocs. I did a test by including a new application.cfm file in my new directory, renaming th

RE: Multiple Application.cfm files

2000-12-18 Thread Allan Pichler
CF looks in the current folder for a application.cfm file, if it doesn't find one it'll step back one (IE: cd ..) and look for it ... etc etc etc So yes ... it's very possible to have multiple application.cfm files As far as the error goes i have no clue ... SORRY! -Allan -Original

RE: Multiple Application.cfm files

2000-12-18 Thread Seamus Campbell
I had similar errors a while ago - they happened if I had 2 different Cfapplication name=...'s in my cfapplication.cfm Don't know if this helps Seamus At 11:21 AM 19/12/00 , you wrote: CF looks in the current folder for a application.cfm file, if it doesn't find one it'll step back one (IE

Re: [Multiple Application.cfm files]

2000-12-18 Thread Alex
you can cfinclude the original Application.cfm "W Luke" [EMAIL PROTECTED] wrote: Hello, I'm going to be coding "sub-sites" of my current website in the form of "newsite.mydomain.com." Beforehand and in development I'm just using directories off my root in htdo

application.cfm Weirdness

2000-12-08 Thread Jim McAtee
Just discovered something that strikes me as _really_ odd. I began developing a small application and defined an application.cfm file that only contained a couple of constants (in the variables scope). Something like: cfset logdir = "d:\logs" cfset cflf = Chr(13) Chr(10) Now the fir

RE: Application.cfm

2000-12-07 Thread Kinley Pon
Thanks Matthew... Kinley -Original Message- From: Walker, Matthew [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 7:55 PM To: CF-Talk Subject: RE: Application.cfm So, if I assigned a value to a "request.site.webroot" variable in app_globals, will thi

RE: Application.cfm

2000-12-06 Thread Kinley Pon
Administrator and a Virtual directory '/test' on the PWS. Justme Kinley -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 8:35 PM To: CF-Talk Subject: RE: Application.cfm In your application cfset application.variablename = "var

RE: Application.cfm

2000-12-06 Thread paul smith
Right! Your application.cfm should have the following for each Request-scoped variable: CFSET Request.MyVar1 = "foo" CFSET Request.MyVar2 = "bar" etc That way your Request-scoped variables will contain a value and will be available to each page. If the value of your v

Which schope? (Was: Re: Application.cfm)

2000-12-06 Thread Todd Ashworth
: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, December 06, 2000 9:59 AM Subject: RE: Application.cfm | Right! Your application.cfm should have the following for each | Request-scoped variable: | | CFSET Request.MyVar1 = "foo" | CFSET Request.MyVar2 = "bar" | etc |

RE: Which schope? (Was: Re: Application.cfm)

2000-12-06 Thread Dave Watts
Just out of curiosity .. If you just need to set a variable for one page and that variable only ever lives on that one page, which would be the better scope, Variables, or Request, or does it matter? It doesn't really matter, as long as by "lives on that one page" you mean a single script

RE: Which schope? (Was: Re: Application.cfm)

2000-12-06 Thread Simon Horwith
202.797.6570 (direct line) www.figleaf.com -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 11:29 AM To: CF-Talk Subject: Which schope? (Was: Re: Application.cfm) Just out of curiosity .. If you just need to set a variable for one

RE: Which schope? (Was: Re: Application.cfm)

2000-12-06 Thread Philip Arnold - ASP
Just out of curiosity .. If you just need to set a variable for one page and that variable only ever lives on that one page, which would be the better scope, Variables, or Request, or does it matter? If you scope the variables when you call then, then speed wise there is no difference If

Re: Which schope? (Was: Re: Application.cfm)

2000-12-06 Thread paul smith
Variables At 11:28 AM 12/6/00 -0500, you wrote: Just out of curiosity .. If you just need to set a variable for one page and that variable only ever lives on that one page, which would be the better scope, Variables, or Request, or does it matter?

RE: Which scope? (Was: Re: Application.cfm)

2000-12-06 Thread Duane Boudreau
] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, December 06, 2000 9:59 AM Subject: RE: Application.cfm | Right! Your application.cfm should have the following for each | Request-scoped variable: | | CFSET Request.MyVar1 = "foo" | CFSET Request.MyVar2 = "bar"

RE: Which schope? (Was: Re: Application.cfm)

2000-12-06 Thread Hal Helms
Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 11:29 AM To: CF-Talk Subject: Which schope? (Was: Re: Application.cfm) Just out of curiosity .. If you just need to set a variable for one page and that variable only ever lives on that o

RE: Application.cfm

2000-12-06 Thread Kinley Pon
ubject: RE: Application.cfm In your application cfset application.variablename = "variable" In your custom tag #application.variablename# Scoping it as request.variablename is BAD! The request scope is set for each PAGE request and is not the same thing as application scope. Bef

RE: Application.cfm

2000-12-05 Thread Dave Watts
In your application cfset application.variablename = "variable" In your custom tag #application.variablename# Scoping it as request.variablename is BAD! The request scope is set for each PAGE request and is not the same thing as application scope. Before I figured out my application

RE: Application.cfm

2000-12-05 Thread Darryl Lyons
Do you use the fusebox methodology? -Original Message- From: Benjamin Fitts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 10:01 AM To: CF-Talk Subject: RE: Application.cfm Regarding Application variables. When my code wasn't properly written I thought custom tags

Re: APPLICATION.CFM Variable problems

2000-12-05 Thread Richard L Smith
ot; [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, December 04, 2000 3:20 PM Subject: Re: APPLICATION.CFM Variable problems One thing that happened to me recently, was I forgot that a relative URL would be relative to the template that was called, not the include f

APPLICATION.CFM Variable problems

2000-12-04 Thread Richard L Smith
Hello; I have a strange problem with CFParam in my APPLICATION.CFM file. I put some cfparams containing some references to style sheets that are used throughout the site. CFPARAM NAME="stTypeA" default="styles/aStyle.css" CFPARAM NAME="stTypeB" default="s

Application.cfm

2000-12-04 Thread Neil H.
Would application variables be available to a module (i.e. a template called by CFModule) ? And if they are how far up the tree will CF look for the application.cfm file? My problem is I set a variable called datasource equal to my DSN name. I attempt to reference #datasource# and even

Re: APPLICATION.CFM Variable problems

2000-12-04 Thread David Cummins
be the only ones that work... David Cummins Richard L Smith wrote: Hello; I have a strange problem with CFParam in my APPLICATION.CFM file. I put some cfparams containing some references to style sheets that are used throughout the site. CFPARAM NAME="stTypeA" defau

Re: [Application.cfm]

2000-12-04 Thread Alex
set it as a session var "Neil H." [EMAIL PROTECTED] wrote: Would application variables be available to a module (i.e. a template called by CFModule) ? And if they are how far up the tree will CF look for the application.cfm file? My problem is I set a variable called datasource equal

RE: Application.cfm

2000-12-04 Thread Jason Egan
t.cfm" userid="10" dsn="#dsn#" Then attributes.userid and attributes.dsn would be available to me in my tag test.cfm. hope this helps. je -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: Monday, December 04, 2000 11:19 AM To: CF-Talk Subject: Appli

Re: Application.cfm

2000-12-04 Thread Ryan
At 13:19 12/4/00 -0500, you wrote: Would application variables be available to a module (i.e. a template called by CFModule) ? And if they are how far up the tree will CF look for the application.cfm file? My problem is I set a variable called datasource equal to my DSN name. I attempt

RE: APPLICATION.CFM Variable problems

2000-12-04 Thread Won Lee
11:06 AM To: CF-Talk Subject: APPLICATION.CFM Variable problems Hello; I have a strange problem with CFParam in my APPLICATION.CFM file. I put some cfparams containing some references to style sheets that are used throughout the site. CFPARAM NAME="stTypeA" default="styles/aSty

RE: Application.cfm

2000-12-04 Thread Scott, Andrew
--Original Message- From: Ryan [mailto:[EMAIL PROTECTED]] Sent: 05 December 2000 07:20 To: CF-Talk Subject: Re: Application.cfm At 13:19 12/4/00 -0500, you wrote: Would application variables be available to a module (i.e. a template called by CFModule) ? And if they are how far up the tree wi

RE: Application.cfm

2000-12-04 Thread Dave Watts
No, I don't believe so - custom tags - called by cf_ or cfmodule are run on a separate thread, so they aren't aware of application variables (like #dsn# for your datasource). That's not true. Application variables are available from within custom tags, as are request variables. Dave

RE: Application.cfm

2000-12-04 Thread Benjamin Fitts
the variable BOTH in the application.cfm and the custom tag. In your application cfset application.variablename = "variable" In your custom tag #application.variablename# Scoping it as request.variablename is BAD! The request scope is set for each PAGE request and is not the

RE: Application.cfm inheritence

2000-11-28 Thread Andrew Scott
Yes they can, all you need to do is cfinclude the previous application.cfm from the root dir and the child will be able to use any variable scope... -Original Message- From: Anthony Geoghegan [mailto:[EMAIL PROTECTED]] Sent: Monday, 27 November 2000 10:49 PM To: CF-Talk Subject: RE

RE: Application.cfm inheritence

2000-11-28 Thread Michael She
Thansk everyone for the help! At 10:48 AM 11/29/00 +1100, Andrew Scott you wrote: Yes they can, all you need to do is cfinclude the previous application.cfm from the root dir and the child will be able to use any variable scope... -Original Message- From: Anthony Geoghegan [mailto

RE: Application.cfm inheritence

2000-11-27 Thread Anthony Geoghegan
In a word, no. Regards, Anthony Geoghegan. Lead Developer, What's On Where (WOW!) http://www.wow.ie mailto:[EMAIL PROTECTED] -Original Message- From: Michael She [mailto:[EMAIL PROTECTED]] Sent: 25 November 2000 01:31 To: CF-Talk Subject: Application.cfm inheritence Hello

RE: Application.cfm inheritence

2000-11-27 Thread Adam Reynolds
On the otherhand, if you don't put an application.cfm in the child directory, the server will go up the directory tree looking for one. -Original Message- From: Anthony Geoghegan [SMTP:[EMAIL PROTECTED]] Sent: Monday, November 27, 2000 11:49 AM To: CF-Talk Subject:RE

RE: Application.cfm inheritence

2000-11-26 Thread Scott, Andrew
Yes provided they belong to the same directory structure for this application. For example, if I have application.cfm in the application root directory, then later I call a file that was in another directory as /includes then it will say it can't find it, move up a directory until it can't reach

Re: Application.cfm inheritence

2000-11-25 Thread Jeffry Houser
Functional solution I would prefer to see the settings separated out as their own includes, instead of just including the parent. It would give you more control. Todd Ashworth wrote: ColdFusion only looks up the directory tree if it can't find an Application.cfm. As soon

Application.cfm inheritence

2000-11-24 Thread Michael She
Hello, Will a "child" application.cfm inherit variables, settings, etc from the parent application.cfm? For example: +Root Dir |application.cfm +---Some Subdir | applicaiton.cfm(2) will application.cfm(2) be able to get the settings from application.cfm? -- Michael She I m

Re: Application.cfm inheritence

2000-11-24 Thread Todd Ashworth
ColdFusion only looks up the directory tree if it can't find an Application.cfm. As soon as it finds one, it stops. Just cfinclude the parent application.cfm into the child one. cfinclude template = "../Application.cfm" Todd - Original Message - From: "Michael She&qu

Can Application.cfm secure html files?

2000-11-17 Thread Douglas Jordon
Maybe this is simple, but I'm not seeing it. Can I use Application.cfm to secure html files or will it only secure .cfm? I'm being asked to implement security for mostly static html files for a site in progress. TIA, Doug Jordon ~~ Structure your

RE: Can Application.cfm secure html files?

2000-11-17 Thread Russel Madere
. -Original Message- From: Douglas Jordon [mailto:[EMAIL PROTECTED]] Sent: Friday, November 17, 2000 11:58 To: CF-Talk Subject: Can Application.cfm secure html files? Maybe this is simple, but I'm not seeing it. Can I use Application.cfm to secure

Re: Can Application.cfm secure html files?

2000-11-17 Thread Lee Surma
Maybe this is simple, but I'm not seeing it. Can I use Application.cfm to secure html files or will it only secure .cfm? I'm being asked to implement security for mostly static html files for a site in progress. Application.cfm will work if you change your Web server mappings to to process all

RE: Can Application.cfm secure html files?

2000-11-17 Thread David Livingston
If you set up.html files to be processed like .cfm files Application.cfm will protect them. http://www.infranet.com/ProcessHTMAsCFM.htm Dave -Original Message- From: Douglas Jordon [mailto:[EMAIL PROTECTED]] Sent: Friday, November 17, 2000 11:58 AM To: CF-Talk Subject: Can

RE: Can Application.cfm secure html files?

2000-11-17 Thread Nick McClure
: If you set up.html files to be processed like .cfm files Application.cfm will protect them. http://www.infranet.com/ProcessHTMAsCFM.htm Dave -Original Message- From: Douglas Jordon [mailto:[EMAIL PROTECTED]] Sent: Friday, November 17, 2000 11:58 AM To: CF-Talk Subject: Can Application.cfm

RE: CFTRY in Application.cfm?

2000-11-02 Thread Chris Norloff
FABORT Essentially the application.cfm will run, include the script you wanted and then abort. Not pretty but it works in most configurations. You get into trouble if you have a lot of different paths. The better way to handle this would be to have everything run through some central template (as

RE: CFTRY in Application.cfm?

2000-10-31 Thread Christopher P. Maher
y CFABORT Essentially the application.cfm will run, include the script you wanted and then abort. Not pretty but it works in most configurations. You get into trouble if you have a lot of different paths. The better way to handle this would be to have everything run through some centra

RE: CFTRY in Application.cfm?

2000-10-31 Thread ron
There is a work around that will let you add a site wide CFTry/CFCatch in the application. Just do the following: CFTry CFInclude template="#cgi.script_name#" CFCatch /CFCatch /CFTry CFABORT Essentially the application.cfm will run, include the script yo

RE: CFTRY in Application.cfm?

2000-10-30 Thread Chris Norloff
to be in the same file. -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 12:51 PM To: CF-Talk Subject: CFTRY in Application.cfm? Is this reasonable, feasible, or ridiculous? Put CFTRY in Application.cfm and put CFCATCH, /CFCATCH and /CFTRY

RE: CFTRY in Application.cfm?

2000-10-30 Thread Jann VanOver
e="all" cfinclude template="catchAllClause.cfm" /cfcatch cftry -Original Message- From: Chris Norloff [SMTP:[EMAIL PROTECTED]] Sent: Monday, October 30, 2000 7:38 AM To: CF-Talk Cc: [EMAIL PROTECTED] Subject: RE: CFTRY in Application.cfm? Darn. S

CFTRY in Application.cfm?

2000-10-27 Thread Chris Norloff
Is this reasonable, feasible, or ridiculous? Put CFTRY in Application.cfm and put CFCATCH, /CFCATCH and /CFTRY in OnRequestEnd.cfm to catch errors from any page in that part of the application? thanks, Chris Norloff

Re: CFTRY in Application.cfm?

2000-10-27 Thread John Cummings
The application.cfm will throw an error if you do it this way. - Original Message - From: "Chris Norloff" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, October 27, 2000 12:51 PM Subject: CFTRY in Application.cfm? Is this reasonable, feasible,

RE: CFTRY in Application.cfm?

2000-10-27 Thread mherbene
Sadly, the compiler requires CFTRY /CFTRY to be in the same file. -Original Message- From: Chris Norloff [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 12:51 PM To: CF-Talk Subject: CFTRY in Application.cfm? Is this reasonable, feasible, or ridiculous? Put CFTRY

RE: CFTRY in Application.cfm?

2000-10-27 Thread Dave Watts
Is this reasonable, feasible, or ridiculous? Put CFTRY in Application.cfm and put CFCATCH, /CFCATCH and /CFTRY in OnRequestEnd.cfm to catch errors from any page in that part of the application? It's not the approach you want to use, and it won't work in any case. CFTRY and CFCATCH allow

RE: Session Variable vs Application.cfm Opinions

2000-10-13 Thread Rees, Mark (TWIi London)
Subject: Session Variable vs Application.cfm Opinions This is a multi-part message in MIME format. --B7EB5F3727E53FF272E76A94 Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Hi, I am c

Session Variable vs Application.cfm Opinions

2000-10-12 Thread Nick Slay
so storing the paths to the images as session.variables. How 'safe' are session variables? I started to wonder whether it would be any better/worse if I added code to the application.cfm file to read the preferences/affiliate settings so they are available as local variables on e

Weird prob with Application.cfm

2000-09-25 Thread Todd Ashworth
I have this code in 2 different Application.cfm files. cfif not IsDefined('Variables.CompanyName') cfscript Variables.CompanyName = "Janty.com"; Variables.DSN = "Janty2"; Variables.TempUploadPath = "D:\myvqf_uploaded_songs_temp";

RE: Weird prob with Application.cfm

2000-09-25 Thread Evan Lavidor
Which line is line 10? -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Monday, September 25, 2000 3:06 PM To: CF-Talk Subject: Weird prob with Application.cfm I have this code in 2 different Application.cfm files. cfif not IsDefined

RE: Weird prob with Application.cfm

2000-09-25 Thread Steve Bernard
PM To: CF-Talk Subject: RE: Weird prob with Application.cfm Which line is line 10? -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Monday, September 25, 2000 3:06 PM To: CF-Talk Subject: Weird prob with Application.cfm I have this code in 2 different

RE: Weird prob with Application.cfm

2000-09-25 Thread ron
Subject: RE: Weird prob with Application.cfm Which line is line 10? -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: Monday, September 25, 2000 3:06 PM To: CF-Talk Subject: Weird prob with Application.cfm I have this code in 2 different

RE: Weird prob with Application.cfm

2000-09-25 Thread Ed Toon
Of course you can. The problem is likely a few lines above this section... maybe an unterminated string on line 8. ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, September 25, 2000 2:58 PM To: CF-Talk Subject: RE: Weird prob with Application.cfm

Re: Combining Application.cfm with other CFINCLUDE's

2000-08-24 Thread Cfmarksport
Hi again, I tried Al Musella's idea of eliminating the extra and HEAD tags. Since three files are involved in the whole process there are three sets ... then I put the Application.cfm back in place got the same error. Here is the only tag currently living in my Application.cfm file (I

RE: Combining Application.cfm with other CFINCLUDE's

2000-08-24 Thread Andy Ewings
]] Sent: 24 August 2000 16:21 To: [EMAIL PROTECTED] Subject: Re: Combining Application.cfm with other CFINCLUDE's Hi again, I tried Al Musella's idea of eliminating the extra and HEAD tags. Since three files are involved in the whole process there are three sets ... then I put the Application.cfm

Re: Combining Application.cfm with other CFINCLUDE's

2000-08-24 Thread Deanna L. Schneider
You need to use the "createtimespan()" function around your sessiontimeout numbers: sessiontimeout = "createtimespan(52,0,0,0)" But, that makes your session 52 days long. Do you really want to do that? -d Deanna Schneider

Re: Combining Application.cfm with other CFINCLUDE's

2000-08-24 Thread Cfmarksport
In a message dated 08/24/2000 11:57:38 AM Eastern Daylight Time, [EMAIL PROTECTED] writes: CFAPPLICATION NAME="marksport" SESSIONMANAGEMENT="Yes" SETCLIENTCOOKIES="Yes" SESSIONTIMEOUT="#CreateTimeSpan(52,0,0,0)#" AH! That worked! Ok, on to

RE: Combining Application.cfm with other CFINCLUDE's

2000-08-24 Thread Dan Haley
: Thursday, August 24, 2000 8:21 AM To: [EMAIL PROTECTED] Subject: Re: Combining Application.cfm with other CFINCLUDE's Hi again, I tried Al Musella's idea of eliminating the extra and HEAD tags. Since three files are involved in the whole process there are three sets ... then I put the Applicatio

Re: Combining Application.cfm with other CFINCLUDE's

2000-08-24 Thread Cfmarksport
In a message dated 08/24/2000 1:27:06 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: You need to use the "createtimespan()" function around your sessiontimeout numbers: sessiontimeout = "createtimespan(52,0,0,0)" But, that makes your session 52 days long. Do you really want to do

Re: Combining Application.cfm with other CFINCLUDE's

2000-08-24 Thread [EMAIL PROTECTED]
CFAPPLICATION NAME="marksport" SESSIONMANAGEMENT="Yes" SETCLIENTCOOKIES="Yes" SESSIONTIMEOUT="(52,0,0,0)" Change that last line to: SESSIONTIMEOUT="#CreateTimeSpan(52,0,0,0)#" and it should work for you. M. Casey

Combining Application.cfm with other CFINCLUDE's

2000-08-23 Thread Cfmarksport
Hi all, I have been trying to build a user database for our web site. I am completely new to both CF SQL so it has been an uphill struggle. I'm now working on the problem of how to store move variables from page to page across the site. I wanted to use the Application.cfm page and session

Re: Combining Application.cfm with other CFINCLUDE's

2000-08-23 Thread Todd Ashworth
I'm thinking it has less to do with what is cfincluded and more to do with whatever is in your Application.cfm. Lots of people, myself included, build sites that are nothing but pages included in other pages. Maybe if you posted the contents of your Application.cfm ... ? Todd Ashworth

Re: Combining Application.cfm with other CFINCLUDE's

2000-08-23 Thread Al Musella, DPM
body bgcolor="#FF" HTML HEAD /HEAD BODY bgcolor="#FF" what happens is that you probably have one header in the include file and one in index. Maybe one in application.cfm? You only need one set. Multiple sets can crash your browser - esp. netscape. Al Musella a1webs.c

RE: Application.cfm in a CFMODULE

2000-08-10 Thread David Gassner
You can avoid this whole issue by using the Request scope for variables which are set in application.cfm instead of application or session variables. Request variables aren't shared between threads, so they don't need to be locked; and they are available for the entire page request, including

Application.cfm in a CFMODULE

2000-08-09 Thread Peter Theobald
html font size=3Since CFMODULE doesn't load Application.cfm, I can't use any of my Application.cfm settings in a module. For example, inside a module I cant use Session variables without this:br br CFLock cannot be used to lock the application or session shared scopes without these scopes being

RE: Application.cfm in a CFMODULE

2000-08-09 Thread CHowarth
:[EMAIL PROTECTED]] Sent: Wednesday, August 09, 2000 1:11 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Application.cfm in a CFMODULE html font size=3Since CFMODULE doesn't load Application.cfm, I can't use any of my Application.cfm settings in a module. For example, inside a module I cant use

application.cfm

2000-07-25 Thread Parker, Kevin
Correct me if I'm wrong but I seem tor recall that in the last few weeks there was some mention on this list that you could control access to all files within a directory by doing something with application.cfm. It was something to the effect that without getting past application.cfm everything

Re: application.cfm

2000-07-25 Thread Jared Clinton
all files within a directory by doing something with application.cfm. It was something to the effect that without getting past application.cfm everything else was inaccessible and therefore bestowed great power on the use of application.cfm I've done an extensive search of my email (I keep a

Re: application.cfm

2000-07-25 Thread Jim McAtee
No. It was a dream. Pay no attention to the man behind the curtain. -Original Message- From: Parker, Kevin [EMAIL PROTECTED] To: CF Talk (E-mail) [EMAIL PROTECTED] Date: Tuesday, July 25, 2000 12:05 AM Subject: application.cfm Correct me if I'm wrong but I seem tor recall

RE: application.cfm

2000-07-25 Thread Parker, Kevin
-Original Message- From: Jared Clinton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 25 July 2000 3:42:PM To: [EMAIL PROTECTED] Subject: Re: application.cfm Kevin, Did you think of looking through here : http://www.mail-archive.com/cf-talk@houseoffusion.com/ Jared. "Parker, Kevin" wrote:

RE: application.cfm

2000-07-25 Thread Bert Dawson
ugh the index.cfm: cfif #ListLast(GetTemplatePath(),'\')# is not "index.cfm" cflocation url="/index.cfm?fuseaction=logoff2" /cfif Bert -Original Message- From: Parker, Kevin [mailto:[EMAIL PROTECTED]] Sent: 25 July 2000 07:07 To: CF Talk (E-mail) Subject: application.cfm Corr

Re: application.cfm

2000-07-25 Thread Billy Cravens
Correct me if I'm wrong but I seem tor recall that in the last few weeks there was some mention on this list that you could control access to all files within a directory by doing something with application.cfm. It was something to the effect that without getting past application.cfm everyt

application.cfm

2000-07-18 Thread Peter Benoit
I hear so much about it, yet I'm not sure what I can do with it. Any online tutorials or examples I can see? TIA, Pete -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Application.cfm whats that ?

2000-07-14 Thread vince
hi, We have shifted our service providers and the new people here require us to have an APPLICATION.CFM file in our public_html directory. This is the first time that I have come accross some thing like this .. What should I be doing here ... Yeah ... our site does use a lot of session

Application.cfm... whats that ?

2000-07-14 Thread vince
hi, We have shifted our service providers and the new people here require us to have an APPLICATION.CFM file in our public_html directory. This is the first time that I have come across some thing like this .. What should I be doing here ... Yeah ... our site does use a lot of session

Re: Application.cfm... whats that ?

2000-07-14 Thread Jeffrey A. Zubeck
If you are not running a CF site, you don't personally need it. But, if the SP requires it, I would just create a blank file named application.cfm and upload it to where they want it. Jeff - Original Message - From: vince [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 13

Re: Application.cfm... whats that ?

2000-07-14 Thread Jared Clinton
the cfapplication tag doesn't _have_ to be in the application.cfm file, just ususally is, because thats where it makes sense to put it. [EMAIL PROTECTED] wrote: Yeah ... our site does use a lot of session variables ... but is it necessary to have this file .. How did you set up

Re: Application.cfm... whats that ?

2000-07-14 Thread rkeniger
the cfapplication tag doesn't _have_ to be in the application.cfm file, just ususally is, because thats where it makes sense to put it. True enough, but if you know enough CF to use session variables why would you not know what the application.cfm file is? Rob Keniger

<    5   6   7   8   9   10   11   >