Re: Stored Procedure Variables from CF

2002-03-19 Thread Richard Meredith-Hardy
THANKYOU for raising this issue... just playing with cfstoredproc and couldn't understand why I was getting strange results now I know why. (this is definitely something which is an exception to usual CF behaviour) "Rosa, Issac" wrote: > > When passing variables from ColdFusion to a MSSQL sto

RE: Stored Procedure Variables from CF

2002-03-19 Thread Rosa, Issac
How about when calling the SP from a cfquery and passing parameters? Do they still have to be in the same order in the cfquery as in the sp? Like this: exec MyStoredProc '#VariableOne#', '#VariableTwo#' Issac Rosa -Original Message- From: Richard Meredith-Hardy [mailto:[EMAIL

meta tags...

2002-03-19 Thread James
Hi, How do you guys go about adding keywords and descriptions for search engines? Which is the best method, i have heard of people including the info into the application.cfm file and others including it in every single page anyone got any experience, insight or code they want to share. :-)

RE: meta tags...

2002-03-19 Thread Robert Everland
I use the fusebox methodology and inside of the methodology you call each page through a fuse, each fuse is what the user would see. So inside of each of my fuses I include a title, meta keywords, and meta description. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Origi

RE: meta tags...

2002-03-19 Thread Carlisle, Eric
I'd recommend using separate ones in every single page. It's more effective if the meta tags reflect the content of each page. -Original Message- From: James [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 8:27 AM To: CF-Talk Subject: meta tags... Hi, How do you guys go abou

RE: meta tags...

2002-03-19 Thread Carlisle, Eric
Oops, hit the send button before I was done. :/ If the site is big enough, I used the name of the file to query keywords from a database. SELECT keywords WHERE filename = '/index.cfm' I always figured I was creating extra db traffic... I'd love to hear more about other methods as well. :)

RE: SQL>>>HELP QUICK!

2002-03-19 Thread Diana Nichols
If athID is your primary key, have you set Identity to 'yes'? (This will "autonumber" your records.) HTH D Diana Nichols Webmistress http://www.lavenderthreads.com 770.434.7374 -Original Message- From: CF_JONNY [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18,

Re: meta tags...

2002-03-19 Thread Stephen Moretti
James, Depends on how detailed you want to go with your meta tags One system I've built in times past has a page description and keywords associated with each item of content, so that when you displayed a page the description and keywords matched up with the content being displayed along wit

RE: UDF question

2002-03-19 Thread Raymond Camden
[deletia] > My second question is isn't it true that, assuming all other things > being equal, any algorithm or function coded in binary, compiled > language is going to perform better than one written in a markup > language and executed in JIT or even an interpreted language > executed in > a vi

Upgrade from 4.01 to 5

2002-03-19 Thread Kevin McCabe
Hi All, I know this question is always being asked, but any central help would be usful. We are currently running Allaire ColdFusion 4.01 and Want to upgrade to Macromedia ColdFusion 5 Does any one hae have any Whitepapers on this or any issues to look out for? Cheers

RE: WOT: INACCESSIBLE_BOOT_DEVICE error on Win2k

2002-03-19 Thread David Grabbe
No, tried that -- same error. I ended up doing a new Win2k install and then accessing the old HD through that. David David Grabbe Manager, Information Systems Church of the Great God [EMAIL PROTECTED] http://www.cgg.org -Original Message- F

RE: Stored Procedure Variables from CF

2002-03-19 Thread Mark A. Kruger - CFG
Yes - the ording problem is a function of the RDBMS (according to the documentation for Cfstoredproc). -Original Message- From: Rosa, Issac [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 6:55 AM To: CF-Talk Subject: RE: Stored Procedure Variables from CF How about when calling

RE: (OT) IIS Question for Local Server and Host file

2002-03-19 Thread Neil Giarratana
One thing to watch out for is if you're running Windows 2000 Professional w/ IIS (or is it still called PWS?). They restrict the workstation versions to only run a single web site. If you want to do multiple websites on that machine, you're better off installing apache (www.apache.org). Regards

RE: UDF question

2002-03-19 Thread Jim Curran
Hey all, Just a thought off the top of my head, Premise: Local Vars do not need to be cflocked Why not 1) copy the session structure to a temporary local structure in Application.cfm: 2) Reference the temp structure in all templates: ... 3) Set t

RE: UDF question

2002-03-19 Thread Matthew R. Small
I think it's already pretty common practice to copy the session structure to the request scope, which also does not need to be locked. I don't do it, but then I also don't use many session variables. - Matt Small -Original Message- From: Jim Curran [mailto:[EMAIL PROTECTED]] Sent: Tuesd

Re: UDF question

2002-03-19 Thread Jochem van Dieten
Jim Curran wrote: > > 1) copy the session structure to a temporary local structure in > Application.cfm: > > > > > > 2) Reference the temp structure in all templates: > > ... > > 3) Set the session struct equal to the temp struct in OnRequestEnd.cfm > >

RE: UDF question

2002-03-19 Thread Raymond Camden
Just a reminder - whenever you copy _any_ structure, if you are not 100% sure the data is flat (no deep structs), you should use Duplicate() instead. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email

RE: UDF question

2002-03-19 Thread Raymond Camden
> > 3) Set the session struct equal to the temp struct in > OnRequestEnd.cfm > > > > > > > > > > Use Duplicate() instead of StructCopy() because StructCopy() doesn't > copy as many levels as it should. > No - it _does_ go as deep as possible, but it creates pointers on

RE: UDF question

2002-03-19 Thread Dave Watts
> Just a thought off the top of my head, > > Premise: Local Vars do not need to be cflocked > > Why not > > 1) copy the session structure to a temporary local > structure in Application.cfm: > > > > > > 2) Reference the temp structure in all templates: > >

creating triggers in cfquery...

2002-03-19 Thread Tyler Silcox
Do we have to do anything special to create triggers in cfqueries? I'm getting a rather blatant error: ODBC Error Code = 37000 (Syntax error or access violation) [Microsoft][ODBC SQL Server Driver][SQL Server]Incorrect syntax near the keyword 'TRIGGER'. SQL = "CREATE TRIGGER "Groups_Admin

RE: UDF question

2002-03-19 Thread Jim Curran
Thanks Ray & Jochem - j -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 10:18 AM To: CF-Talk Subject: RE: UDF question Just a reminder - whenever you copy _any_ structure, if you are not 100% sure the data is flat (no deep structs), you

RE: CFLOCK all the time?

2002-03-19 Thread Dave Watts
> Should the statement > be locked? Yes. It's a variable read, according to the CF Server product development team. > 'Full Checking' in CF admin does not object. This is more a flaw with the Full Checking option than anything else. As far as I can tell, Full Checking can miss several things

ColdFusion and ColdBeer

2002-03-19 Thread Matthew R. Small
So... are there any CF conferences coming up anytime soon? I'm in the mood to party down with you ColdFusionites. It gets lonely here at the beach. :-) Matt Small __ Structure your ColdFusion code with Fusebox. Get the off

RE: CFLOCK all the time?

2002-03-19 Thread Dave Watts
> Indeed it does. But in all the instances I just saw (quick > review), it was also doing a cfset, which absolutely MUST > be locked. > > See, what I want to do is simply this: > > > > > > > > > Session.isLoggedIn is set within a cflock (obviously) on a > valid login. After that, I

RE: ColdFusion and ColdBeer

2002-03-19 Thread Raymond Camden
CFNORTH is coming up. For a list in general, check www.cfconf.org === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus "My ally is the Force, and a powerful

SQL Error, I know

2002-03-19 Thread coldfusion . developer
I know this is suppose to be for CF stuff, but I know someone can help with this. I'm under the gun here. I'm getting this SQL 2000 error message when I try to add a new column to an existing table that's filled with data. ODBC error: [Microsoft][ODBC SQL Server Driver][SQL Server]Could not

RE: SQL Error, I know

2002-03-19 Thread Dan Phillips
Your database is full. Allocate more space for it in Enterprise Manager. Dan Phillips CFXHosting.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 10:42 AM To: CF-Talk Subject: SQL Error, I know I know this is suppose to be for CF

Re: SQL Error, I know

2002-03-19 Thread Paul Hastings
> ODBC error: [Microsoft][ODBC SQL Server Driver][SQL > Server]Could not allocate space for > object 'Tmp_samp_request' in database 'hititte4_db' > because the 'PRIMARY' filegroup is full. is that db set to grow? if so, your disk is probably filled. if not, allow it to grow... __

Re: <<<>>> SQL Question

2002-03-19 Thread Ernie Pena
JON, I've run in to this problem before and if you are using MS ACCESS then its as simple as selecting autonumber for your ID field, however if your using SQL server (any ver) you have to make the ID field Data Type ="int" and the Identity value to yes and you are good to go. Ernie Pena Sr. CF D

RE: creating triggers in cfquery...

2002-03-19 Thread Albrechtas, Adam
You might try removing the quotes from around the trigger name and table name in your SQL statement. Adam. -Original Message- From: Tyler Silcox [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 10:29 AM To: CF-Talk Subject: creating triggers in cfquery... Do we have to do anyt

Re: UDF question

2002-03-19 Thread Sharon Diorio
> The server, admittedly, does not host any > extremely-high activity sites. There's the kicker. Locking variables is something you can *usually* get away with on low traffic sites. But put any load on these sites and you start getting odd errors that are seemingly sporadic (if you're not fam

RE: RE: UDF question

2002-03-19 Thread Dave Watts
> > The only concurrency issues that seem to come up in CF are > > when we needto single thread any piece of code - that's what > > the locks do. But I haven't seen any code at all that allows > > us to start new threads in the same page. > > Everytime a new user goes onto your web site, a new

RE: SQL Error, I know

2002-03-19 Thread Andy Ewings
nice one - seen this before. It aint your disk that is full it's your filegroup (SQL groups data/objects into filegroups). By any chance are you running SQL on SBS (Small business Server)? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 19 March 2002 15:48 To

RE: locking (was: UDF question)

2002-03-19 Thread Dave Watts
> > The server, admittedly, does not host any > > extremely-high activity sites. > > There's the kicker. Locking variables is something you can > *usually* get away with on low traffic sites. But put any > load on these sites and you start getting odd errors that are > seemingly sporadic (if

Re: UDF question

2002-03-19 Thread Sharon Diorio
- Original Message - From: "Jim Curran" <[EMAIL PROTECTED]> > Just a thought off the top of my head, > 1) copy the session structure to a temporary local structure in > Application.cfm: > > > > Actually, this is one of the more common workarounds for locking issues. Although I usua

RE: SQL Error, I know

2002-03-19 Thread coldfusion . developer
Not quite sure. Our ISP is hosting our CF Web site along with SQL 2000. The ISP's Adminsitrator is trying to tell me it's a Professional Services request and wants to charge me $200/hour to fix the problem. D- > nice one - seen this before. It aint your disk that is full it's your > filegro

RE: SQL Error, I know

2002-03-19 Thread Andy Ewings
If you are running SQL on SBS there is a maximum size to your filegroups (which you can easily reach). It sucks believe me -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 19 March 2002 16:02 To: CF-Talk Subject: RE: SQL Error, I know Not quite sure. Our ISP

Re: locking (was: UDF question)

2002-03-19 Thread Sharon Diorio
- Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, March 19, 2002 11:05 AM Subject: RE: locking (was: UDF question) > I know that this is only a typo, but you meant "Not locking variables ...", > right? Yep. Missed my morning co

RE: SQL Error, I know

2002-03-19 Thread coldfusion . developer
Is there any solution? > If you are running SQL on SBS there is a maximum size to your filegroups > (which you can easily reach). It sucks believe me > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 19 March 2002 16:02 > To: CF-Talk > Subject: RE: SQL E

Database storage of client variables

2002-03-19 Thread Teel, C. Doug
I recently(in the past couple of weeks) set up a database called CFVARS to store all our client variables. It's a repository for client variable of 4 sites with different cfapplication names. A user recently received an error(below) that a duplicate key row is trying to be inserted. Could anyon

Re: SQL Error, I know

2002-03-19 Thread Paul Giesenhagen
Ouch!! I would first find out how much space you are suposed to have for your database, then right click on your database (in enterprise manager) and view properties (it will tell you how much space is being used). If it is full (which is probably is).. and the numbers are correct (ie you are us

RE: SQL Error, I know

2002-03-19 Thread coldfusion . developer
How's this for customer relations ... e-mail from hosting company's DBA ... Your database is not configured to grow automatically. You pay for a set size monthly and that is all that is available. You can request more disk space if you need it, but that's up to you. This is definitely NOT

RE: Database storage of client variables

2002-03-19 Thread Andy Ewings
Have all of your Application.cfm's have different names for the Application? -Original Message- From: Teel, C. Doug [mailto:[EMAIL PROTECTED]] Sent: 19 March 2002 16:08 To: CF-Talk Subject: Database storage of client variables I recently(in the past couple of weeks) set up a database ca

RE: SQL Error, I know

2002-03-19 Thread Dan Phillips
You would have to have admin rights to the SQL server to increase the space. Have your ISP check to see how much free space you have left on the SQL server. Obviously if it's under a couple Megs or has no space left, more space needs to be added. -Original Message- From: [EMAIL PROTECTED]

RE: Database storage of client variables

2002-03-19 Thread Teel, C. Doug
They do all have different names. Thanks -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 10:10 AM To: CF-Talk Subject: RE: Database storage of client variables Have all of your Application.cfm's have different names for the Application? --

RE: SQL Error, I know

2002-03-19 Thread coldfusion . developer
Thanks everyone! You guys are the best! D- > You would have to have admin rights to the SQL server to increase the space. > Have your ISP check to see how much free space you have left on the SQL > server. Obviously if it's under a couple Megs or has no space left, more > space needs to be added

RE: SQL Error, I know

2002-03-19 Thread Andy Ewings
They also may be including your log files in the space that you use - If they are not backing up properly you might find that your log files are massive and that providing the segments in the logfiles are ordered properly backin g them up should free up a tonne of space -Original Message-

CFHTTP POST - authentication issue

2002-03-19 Thread Diana Nichols
I am trying to post a form to a client's server (WIN2K,IIS) using CFHTTP. The process works great - until they enable the login/password on their server. Is there any other method to do this transfer automatically utilizing CF? or JS? (Must use SSL and authenticate via login/password to their ser

RE: CFHTTP POST - authentication issue

2002-03-19 Thread Garza, Jeff
HTTPS is no problem for CFHTTP. Just make sure to include the correct port number (443). As for the authentication, make sure that they are only using Basic Authentication. ColdFusion cannot authenticate using Digest or Windows authentication. Perhaps you could show us your CFHTTP statement?

Re: ColdFusion and ColdBeer

2002-03-19 Thread Michael Dinowitz
I'll be at the CF conference in Washington and any other conference that asks me to speak. http://www.cfconf.com/ has a list of conferences and events. At 10:39 AM 3/19/02, you wrote: >So... are there any CF conferences coming up anytime soon? I'm in the >mood to party down with you ColdFusion

RE: CFHTTP POST - authentication issue

2002-03-19 Thread Diana Nichols
That's the issuethey refuse to disable Windows authentication...the connection worked perfectly when they didthe quote from my client: "Windows NT Challenge/Response--in simplistic terms is the user id/password that must be authenticated. We cannot turn this off, as that is what controls

Locking and session variables

2002-03-19 Thread Mark A. Kruger - CFG
Everyone - please note the new thread name (we long ago left UDFs). Dave, you wrote: >However, it's been my experience that, in most cases, this doesn't work very >well in the real world. Copying the entire scope into a local variable is >very expensive, and causes problems under load. We actual

RE: CFHTTP POST - authentication issue

2002-03-19 Thread Kevin Miller
It's time to do some explaining that basic authentication with SSL is just as secure (probably more) as Microsoft's proprietary challenge/response (NTLM) scheme, and that you are just as authenticated while using the standards-based approach. Kevin >>> [EMAIL PROTECTED] 03/19/02 08:47AM >>> Th

Re: CFHTTP POST - authentication issue

2002-03-19 Thread Jochem van Dieten
Diana Nichols wrote: > That's the issuethey refuse to disable Windows authentication...the > connection worked perfectly when they didthe quote from my client: > > "Windows NT Challenge/Response--in simplistic terms is the user id/password > that must be authenticated. We cannot turn thi

Re: Intranet/Hosting Toolkit from www.intrafoundation.com

2002-03-19 Thread phumes1
Hi, I've installed and tried all the the custom tags but none of them give me what I want. I have a CF template where I'm passing the username from my authentication form. I want to be able to pass the username to one of the custom tags and retrieve the associated group(s) of that specific user

RE: CFHTTP POST - authentication issue

2002-03-19 Thread Garza, Jeff
Won't work... They can continue to use Windows Authentication, they just have to also enable basic authentication (IIS gives you the option to use both at the same time). The entire session is encrypted by SSL so there is no disadvantage to using basic authentication as well If they absolute

Flash MX and CF5

2002-03-19 Thread Douglas Brown
We prob need a CF-flashTalk list, but in the meantime I am just now beginning my journey into dynamic content in flash, and was wondering if someone had an idea of how to populate a combo box from a query... I have this so far, please help. Query SELECT * FROM mfg &mfg=#myList# Flash

Re: Flash MX and CF5

2002-03-19 Thread Bryan Stevenson
Doug, Flash MX will make that process WAY easier ;-) Bryan Stevenson VP & Director of E-Commerce Development Electric Edge Systems Group Inc. p. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com ---

Re: Flash MX and CF5

2002-03-19 Thread Douglas Brown
I have Flash MX I am just confused "Success is a journey, not a destination!!" Doug Brown - Original Message - From: "Bryan Stevenson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, March 19, 2002 9:26 AM Subject: Re: Flash MX and CF5 > Doug, > > Flash MX

Running Parallel

2002-03-19 Thread Lee Surma
We are going to be running parallel with a new system and I will need to compare old versus new. Does anyone know of any reusable code or technique that compares similar but not exact tables and creates an exception report. -- Lee Surma Public Radio International [EMAIL PROTECTED] 612-330-922

Re: Flash MX and CF5

2002-03-19 Thread jeff tapper
did u wrap the cfml page with a whitespace makes flash unhappy At 09:27 AM 3/19/2002 -0800, you wrote: >I have Flash MX I am just confused > > >"Success is a journey, not a destination!!" > > > >Doug Brown >- Original Message - >From: "Bryan Stevenson" <[EMAIL PROTECTED]> >To: "CF-T

RE: Flash MX and CF5

2002-03-19 Thread Justin Hansen
Does that work? You could put the list in a text file any time you add/update a 'mfg', update the text file. I'm also jumping in to this journey (in my "spare" time). OT: Geez, this is really going to cut into my new obsession, Motor City Online. Any other CFers playing MCO? Justin Hansen -

RE: ColdFusion and ColdBeer

2002-03-19 Thread Matthew R. Small
OK... I'm coming... thanks for the replies. - Matt Small -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 11:42 AM To: CF-Talk Subject: Re: ColdFusion and ColdBeer I'll be at the CF conference in Washington and any other conference tha

RE: Flash MX and CF5

2002-03-19 Thread Mark A. Kruger - CFG
Jeff, don't forget to use the -showdebugoutput="NO"- option as well (debug info makes flash unhappy too... flash is hard to please ). -Original Message- From: jeff tapper [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 11:32 AM To: CF-Talk Subject: Re: Flash MX and CF5 did u w

RE: Flash MX and CF5

2002-03-19 Thread VAN VLIET, SCOTT E (SBCSI)
You would need to iterate through each item and add it to the combo box. Here's an example of how to populate a combo box from an array: // Considering we had array populated with Labels // which we use for the Values as well for (i = 0; i < myArray.length){ comboBoxInstance.addItem(myArr

Re: Flash MX and CF5

2002-03-19 Thread Douglas Brown
Yeah I tried that, I only get a "," when I run it. "Success is a journey, not a destination!!" Doug Brown - Original Message - From: "jeff tapper" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, March 19, 2002 9:32 AM Subject: Re: Flash MX and CF5 > did u wr

What is the Limit of CFSCHEDULE

2002-03-19 Thread John McCosker
Greetings, I am trying to find Stats on the Limitations of CFSCHEDULE on cfserver, is there a recommended number of simultaneous schedules, Thanks for any help, John __ Structure your ColdFusion code with Fusebox. Get the offi

Re: Flash MX and CF5

2002-03-19 Thread Douglas Brown
Well that would not be very dynamic!!! And I have about 60 tables I would need to convert to text files. yuck..Our goal is to create the first shopping cart for computer configuration done soley in flash "Success is a journey, not a destination!!" Doug Brown - Original Message - F

Need help with mappings in CF Admin

2002-03-19 Thread David Grabbe
I'm stuck on getting these CF mappings to work. In CF Admin, I have set up a logical path called '/articles/', and a physical path of 'C:\Inetpub\wwwroot\test_domain1\literature\articles\'. I am trying to access this directory from a different domain: test_domain2 (same box). I set up a link to

RE: What is the Limit of CFSCHEDULE

2002-03-19 Thread James Maltby
My advice is Don't use it - especially if you are using 4.5 or lower (not sure about CF% tho.) - far better to use the NT scheduler (if it's on NT) or (SQL scheduler) as both rely on the OS system clocks. CFSCHEDULE is flaky at the best of times... J -Original Message- From: John McCosk

RE: Flash MX and CF5 (Part 2)

2002-03-19 Thread VAN VLIET, SCOTT E (SBCSI)
Here's how you could dynamically create the XML for that combo box: SELECT MfgID, MfgName FROM Mfg #MfgName# HTH :) Ps. If enough people are interested, I can put together an example and make it available online. Just let me know :) --

RE: What is the Limit of CFSCHEDULE

2002-03-19 Thread VAN VLIET, SCOTT E (SBCSI)
I have never used the NT Scheduler to make HTTP Requests. If you have, please tell! That would make my life A LOT easier :) TIA. -- SCOTT VAN VLIET SENIOR ANALYST SBC SERVICES, INC Tel: 858.886.3878 Fax: 858.653.6763 Email: [EMAIL PROTECTED] -Original Message- From: James Malt

Re: Flash MX and CF5 (Part 2)

2002-03-19 Thread Douglas Brown
Scott An example would be awesomeJust getting the basics down of integrating CF and Flash is all that is needed. I think the release of CF MX will help when it gets here. "Success is a journey, not a destination!!" Doug Brown - Original Message - From: "VAN VLIET, SCOTT E (SB

Re: UDF question

2002-03-19 Thread Keith
You're talking about developers who don't use CFLOCK because they are ignorant of CF locking issues. I'm sure we all agree that this is a bad thing, but it's not exactly relevent to the original discussion. You can write perfectly "solid" applications that do not lock session variable access. S

RE: locking (was: UDF question)

2002-03-19 Thread Dave Watts
> > The question is - do you want CF to automatically handle > > everything for you at the sacrifice of speed? > > Raymond, I'm not Raymond, but I'll attempt a response anyway. > My first question to you is is there ever a reason not to > lock access to Session or Application scoped variables

RE: Flash MX and CF5 (Part 2)

2002-03-19 Thread Clint Tredway
Also check out www.flashcfm.com for other tutorials and code. Clint -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 9:52 AM To: CF-Talk Subject: Re: Flash MX and CF5 (Part 2) Scott An example would be awesomeJust getting the basics

RE: Flash MX and CF5 (Part 2)

2002-03-19 Thread VAN VLIET, SCOTT E (SBCSI)
I don't think they have any Flash MX examples yet. -- SCOTT VAN VLIET SENIOR ANALYST SBC SERVICES, INC Tel: 858.886.3878 Fax: 858.653.6763 Email: [EMAIL PROTECTED] -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March

RE: UDF question

2002-03-19 Thread Dave Watts
> You're talking about developers who don't use CFLOCK > because they are ignorant of CF locking issues. I'm > sure we all agree that this is a bad thing, but it's > not exactly relevent to the original discussion. > > You can write perfectly "solid" applications that do > not lock session va

OT: headache

2002-03-19 Thread Dina Hess
Hi all, Sorry for the OT post, but I'm hoping one of you can put an end to my ongoing headache with textareas. First off, I'm not working in ColdFusion on this one...it's ASP...and I've already checked Google and the CF-Talk archives. Here's what I'm trying to do: 1) maintain linefeeds/carria

Re: UDF question

2002-03-19 Thread Keith
Mr. Watts, I've never seen you issue such an insulting reply. You yourself have stated that you have no "real" information to back up your claims. Sorry that I disagree with you, but I don't care to have my professionalism questioned. Shame on you. [EMAIL PROTECTED] - Original Message --

RE: Need help with mappings in CF Admin

2002-03-19 Thread Bryan Love
could be many things. What's the value of attributes.page? Most likely you just need to add a "/" in front of the replace() function like this... If the template in a CFINCLUDE tag begins with a "/" then CF looks for a CF mapping, otherwise it will try the file relative to it's current posit

Re: OT: headache

2002-03-19 Thread BEN MORRIS
If I am reading this right, you just want the text to appear as 'normal' html would, but not ignoring the white space line breaks as html does. I have done this by replacing line breaks in the text with , then just enclose the text in instead of >>> "Dina Hess" <[EMAIL PROTECTED]> 03/19/02

RE: UDF question

2002-03-19 Thread Dave Watts
> I've never seen you issue such an insulting reply. You > yourself have stated that you have no "real" information > to back up your claims. > > Sorry that I disagree with you, but I don't care to have > my professionalism questioned. I'm sorry that you read my response as a personal insult.

Re: CFX custom tag

2002-03-19 Thread Sharon Diorio
If I'm understanding the question, you can just set a session variable at login/authentication time indicating that the code has been run. HTH! Sharon - Original Message - From: "phumes1" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tue

RE: Database storage of client variables

2002-03-19 Thread Matt Robertson
Is your primary key for the table a composite of the cfid and app fields? Or did you just set cfid to the primary? I've run cdata with the composite index described above (I believe this is the ''right'' way to do it) and where the cfid field is a simple index and there is no primary key defined

Re: CFX custom tag

2002-03-19 Thread phumes1
This would go in my index.cfm file, correct? At 02:12 PM 3/19/2002 -0500, you wrote: >If I'm understanding the question, you can just set a session variable at >login/authentication time indicating that the code has been run. > > > > > > > > > > > > >HTH! > >Sharon >

Confessions of a sloppy non-CFLOCKer

2002-03-19 Thread Keith
I, #vMyName#, wish to apologize to #vMrWatts#. and to all #application.ListName# members. I've been pushing a discussion of #session.DiscussionTopic# which, with my own help, has gotten out of hand. If it's not already clear to everyone, I am a #vBadProgrammerType#. I, #vMyNam

RE: Need help with mappings in CF Admin

2002-03-19 Thread David Grabbe
Thanks, Bryan. That solved it. Didn't realize I needed a leading "/". David David Grabbe Manager, Information Systems Church of the Great God [EMAIL PROTECTED] http://www.cgg.org -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sen

Re: CFX custom tag

2002-03-19 Thread Sharon Diorio
Depends on what you're doing with it. I frequently do site-wide security where I set variables in the login.cfm then check for those variables in the Application.cfm. Sharon DiOrio - Original Message - From: "phumes1" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesd

RE: headache

2002-03-19 Thread Conrad Classen
Dina First off. Before writing the data, replace all instances of vbCRLF with Chr(10). In JavaScript vbCRLF is rendered as \r\n, and you only require the \n part. Once the field is populated, I find that the best way to reinstate the line breaks Is to do the following: var re = /\\n/g; frm.Fie

CF Server Reports

2002-03-19 Thread Brockman, Chuck
Hi all, I'm still having troubles with the server reports in CF Administrator. I've replaced my showreport.cfm per Macromedia's instructions because I was getting: Error retrieving report. No access privileges. However, I am still getting this error. Does anyone have any suggestions?

Re: CFX custom tag

2002-03-19 Thread phumes1
I'm not using a login.cfm file. I have the security set in IIS to use NT authentication on the wwwroot directory. When you try to access the webpage then a NT username/password dialog pops up. At 02:32 PM 3/19/2002 -0500, you wrote: >Depends on what you're doing with it. I frequently do site-

RE: Need help with mappings in CF Admin

2002-03-19 Thread Dave Watts
> In CF Admin, I have set up a logical path called '/articles/', > and a physical path of > 'C:\Inetpub\wwwroot\test_domain1\literature\articles\'. I > am trying to access this directory from a different domain: > test_domain2 (same box). > > I set up a link to a file in this directory: href=

RE: Confessions of a sloppy non-CFLOCKer

2002-03-19 Thread Cantrell, Adam
You forgot to scope your variables scoped variables. :) Adam. > -Original Message- > From: Keith [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, March 19, 2002 1:37 PM > To: CF-Talk > Subject: Confessions of a sloppy non-CFLOCKer > > > > > > > > type="READONLY" > > > > > type="R

CF Ad packages?

2002-03-19 Thread Pete Ruckelshaus
We need a decent advertisement serving/reporting/management package, budget isn't really an issue so long as the package does what we need it to, which is mainly report decent stats on views and click throughs (these reports should be directly accessible to advertisers via a login), and be easily

RE: Running Parallel

2002-03-19 Thread Dave Watts
> We are going to be running parallel with a new system and I > will need to compare old versus new. Does anyone know of any > reusable code or technique that compares similar but not > exact tables and creates an exception report. If you're talking about comparing the database schema, as oppo

RE: Need help with mappings in CF Admin

2002-03-19 Thread David Grabbe
Are there any safeguards I can use to protect against this? David David Grabbe Manager, Information Systems Church of the Great God [EMAIL PROTECTED] http://www.cgg.org -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, M

Re: Confessions of a sloppy non-CFLOCKer

2002-03-19 Thread Sharon Diorio
Nah, it's the only scope I don't scope. Largely because when CF loops through the variables scopes looking for what scope to use, it hits the local scope first. And because I scope all other variables, there isn't a security problem. Sharon - Original Message - From: "Cantrell, Adam"

Re: UDF question

2002-03-19 Thread Keith
I realize you weren't insulting me and I apologize. Please understand that I don't work on projects that cost 100's of thousands of dollars. My customers and I have modest goals. I want to efficiently produce clean, maintainable applications that meet specific needs. A consultant asking $250/h

Re: Need help with mappings in CF Admin

2002-03-19 Thread Sharon Diorio
What you can do is name all includes with a preceeding naming convention, such as an underscore. Then don't pass the entire name in the URL, add the preceeding naming convention in the cfinclude. Allowable include name: _allowed.cfm template.cfm?filename=taboo.cfm You can enclose in CFCATC

  1   2   >