RE: mySQL equivalent of MS Access Money fieldtype?

2002-12-17 Thread Matt Robertson
I use INT (unsigned) for ALL numerica vals and remove all other parms in the field spec. This results in INT(10) unsigned. Then I use CF to format the value according to whatever display rules I want the output to follow. --Matt Robertson-- MSB Designs, Inc. http://mysecretbase.com

Re: Is ColdFusion the best answer

2002-12-17 Thread Jochem van Dieten
Costas Piliotis wrote: mySQL doesn't use MDAC does it? I believe macromedia claims the trouble is with MDAC, not ColdFusion... MyODBC on the other hand uses a little bit of MDAC. The driver manager is used by all ODBC drivers, but I am not sure if that runs all the time or only when setting

RE: CF Instant Messaging

2002-12-17 Thread Brandon Harper
An option besides those old tags is PresenceWorks ( http://www.presenceworks.com ). I've worked enough with it enough to get something basic working in CF 5, then another project came along and I haven't gotten back to it yet. Perhaps I'll be able to write it as a CFC by the time it's a priority

RE: Best PHP Open Source Shopping Cart/E-Commerce Package?

2002-12-17 Thread Adam Reynolds
Best E-commerce package? Personally I would use Actinic. Awesome. -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: 13 December 2002 22:08 To: CF-Talk Subject: OT: Best PHP Open Source Shopping Cart/E-Commerce Package? I know this is a bit off topic, but I'm

RE: Medical Financial Enterprise Applications CF Security

2002-12-17 Thread Oliver Cookson
snip Can anyone provide specific links. press releases, information regarding the security plus's / minuses and again - the success rate of Cold Fusions implementation on large scale, secure, mission-critical applications in the medical and/or financial industries? Have a look at

Re: silly question

2002-12-17 Thread Stephen Moretti
Tony, #selectedAccounts[id]# selectedAccounts1109 is what i have to eventually parse, but selectedAccounts and Id parse to the value of something together. how in de heck do i do this? cfparam name=brain fart monday default=Too Much Friday Night!!! What scope is selectedAccounts in?

RE: CFC Instance Identification

2002-12-17 Thread Paul Kenney
Robert, You can create a struct in the Server (or Application) scope that holds a reference to each instantiated object. Lets call this this Server.stObjects. Each object needs a unique ID, so a UUID will be perfect. Add a property called ObjectID in each component that you want to put inside

Working with CF MMS enabled phones

2002-12-17 Thread Zac Spitzer
anyone got any good pointers on working with these next gen gsm phones, like the nokia 7650 with the built in camera and GPRS? what do i need server side to recieve mms in coldfusion? i see there are two options, email or http(s) z

CFX_Image Help

2002-12-17 Thread Mark Leder
Hi All, I'm using this tag to grab an image file uploaded by an end user through a file form field. I want to convert it to jpg and resize it if necessary (borrowing from a CFDJ article. Three issues: 1) I keep seeing in the HOF list archives that developers are using an ACTION=iml, though I

RE: CFC Instance Identification

2002-12-17 Thread Robert Polickoski
Paul, Thank you very much. I will certainly try your suggestion. Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP -- Original Message -- From: Paul Kenney [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED]

RE: Working with CF MMS enabled phones

2002-12-17 Thread Mike Townend
We have a site running which just uses the email side of things... As before we get funding we are looking for direct MMS as I assume that this will be like SMS and so access to gateways etc wiill be needed... -Original Message- From: Zac Spitzer [mailto:[EMAIL PROTECTED]] Sent:

Incrementing a variable

2002-12-17 Thread FlashGuy
Hi, For some reason I can't get my variable to increment when my page is reloaded. I have the following in my application.cfm file cfset child = 0 In my index.cfm file I have the following. cfset child=child + 1 Everytime I refresh the page manually or by using an a href within mu file to

RE: Incrementing a variable

2002-12-17 Thread Mike Townend
Youll need to do something like... In Application.cfm CFLOCK TIMEOUT=5 THROWONTIMEOUT=No TYPE=EXCLUSIVE SCOPE=APPLICATION CFPARAM NAME=Application.child DEFAULT=0 /CFLOCK And in the index file CFLOCK TIMEOUT=5 THROWONTIMEOUT=No TYPE=EXCLUSIVE SCOPE=APPLICATION CFSET

RE: Incrementing a variable

2002-12-17 Thread webguy
Are you trying to get this result? 1st view of index.cfm value=1 2nd view of index.cfm value=2 3rd view of index.cfm value=3 If so you are doing to wrong because this is what you are actually doing 1st view of index.cfm appliation.cfm sets child = 0 index.cfm sets child = child

Re: CF price increase in 2003?

2002-12-17 Thread Pete Ruckelshaus
If they (MM) did a better job of marketing/promoting Cold Fusion, then maybe this would actually make them some money. Instead, it's going to alienate a lot of current users, probably driving a number of them to the free (PHP, NET) alternatives. Pete - Original Message - From: Eric

RE: Incrementing a variable

2002-12-17 Thread Adrian Lynch
It will always get reset back to 0 with every page request. -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: 17 December 2002 12:12 To: CF-Talk Subject: Incrementing a variable Hi, For some reason I can't get my variable to increment when my page is reloaded. I have

RE: Incrementing a variable

2002-12-17 Thread Paolo Cesana
It looks like you're resetting the variable each time a page loads Use cfparam instead to set it once if you choose to place the init in application.cfm Also, you need to think about variable scope... Rgds Paolo Cesana IT Development Mgr. Electricity is not the result of a series of

Re: Incrementing a variable

2002-12-17 Thread Taz
That's because on every page request you reset the value to zero What are you trying to do? Taz - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 17, 2002 12:12 PM Subject: Incrementing a variable Hi, For some reason I can't

Re: Incrementing a variable

2002-12-17 Thread DDB Lists
Your application.cfm is loaded on every refresh so the variable is set to zero every time. You should put it in a persistant scope and check for it's existance: cif not isdefined(application.child) cfset application.child = 0 /cfif and cfset application.child = application.child + 1 -

RE: Incrementing a variable

2002-12-17 Thread FlashGuy
On Tue, 17 Dec 2002 12:26:53 -, webguy wrote: Are you trying to get this result? 1st view of index.cfm value=1 2nd view of index.cfm value=2 3rd view of index.cfm value=3 Yes. If so you are doing to wrong because this is what you are actually doing OK..I see...how would I go

Re: Compare Two Lists - Keep What Is Similar

2002-12-17 Thread Zac Spitzer
Scott Brady wrote: Hi everyone. I am looking for a way to compare 2 different lists of information, and after comparing them keep which records are exactly the same. I'd probably convert them both to arrays. Then, I'd loop along the first array and look for each element within the second

RE: Incrementing a variable

2002-12-17 Thread FlashGuy
Hmm...OK I just tried it out and its not quite working the way I wanted it to. On Tue, 17 Dec 2002 12:23:20 -, Mike Townend wrote: Youll need to do something like... In Application.cfm CFLOCK TIMEOUT=5 THROWONTIMEOUT=No TYPE=EXCLUSIVE SCOPE=APPLICATION CFPARAM

Re: Incrementing a variable

2002-12-17 Thread FlashGuy
I'm trying to set a variable based on were I am in my directory structure. At initial loading of my index.cfm I would set a variable to 0 WHen I click on a link and drill-down into the directory I want that variable incremented. At the same time if I go backup up in the directorure structure I

RE: Incrementing a variable

2002-12-17 Thread webguy
That code looks ok to me , how is it not working ? An error ? cflock In Application.cfm CFLOCK TIMEOUT=5 THROWONTIMEOUT=No TYPE=EXCLUSIVE SCOPE=APPLICATION CFPARAM NAME=Application.child DEFAULT=0 /CFLOCK And in the index file CFLOCK TIMEOUT=5 THROWONTIMEOUT=No TYPE=EXCLUSIVE

RE: Incrementing a variable

2002-12-17 Thread Mike Townend
What do you need it to do? It does pretty much what your orignal code does... Ive just moved it to a persistant scope... -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 12:44 To: CF-Talk Subject: RE: Incrementing a variable Hmm...OK I

Re: Incrementing a variable

2002-12-17 Thread FlashGuy
If I close the brower the application.child variable doesn't get cleared? On Tue, 17 Dec 2002 13:30:50 +0100, DDB Lists wrote: Your application.cfm is loaded on every refresh so the variable is set to zero every time. You should put it in a persistant scope and check for it's existance:

RE: Incrementing a variable

2002-12-17 Thread FlashGuy
No...no error. code works just fine. Its not not behaving like I want it to. On Tue, 17 Dec 2002 12:55:38 -, webguy wrote: That code looks ok to me , how is it not working ? An error ? cflock In Application.cfm CFLOCK TIMEOUT=5 THROWONTIMEOUT=No TYPE=EXCLUSIVE

update form

2002-12-17 Thread Dave Lyons
the MM update behavior was throwing a ton of errors so i wrote one out but its not working. can anyone please look it over and see where i'm messing up thanks! !---update record--- cfif isdefined(form.update_profile) cfguery name=Update

RE: Incrementing a variable

2002-12-17 Thread Mike Townend
You might want to look at something like... CFSET Child = ListLen(GetDirectoryFromPath(ExpandPath(*.*)), \) Or something similar HTH -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 12:51 To: CF-Talk Subject: Re: Incrementing a variable

RE: Incrementing a variable

2002-12-17 Thread John McCosker
Are you using fusebox? If you are you could use the fuseaction to determine if it increments or vise verca, e.g. D:\dir1 [0] fuseaction=thisFusecounter=#attributes.counter# D:\dir2 [0] fuseaction=thisOtherFusecounter=#attributes.counter# then in your app globals CFPARAM NAME=attributes.counter

RE: Incrementing a variable

2002-12-17 Thread webguy
Use a session instead of a application scope In Application.cfm CFLOCK TIMEOUT=5 THROWONTIMEOUT=No TYPE=EXCLUSIVE SCOPE=session CFPARAM NAME=session.child DEFAULT=0 /CFLOCK And in the index file CFLOCK TIMEOUT=5 THROWONTIMEOUT=No TYPE=EXCLUSIVE SCOPE=session CFSET session.child

RE: update form

2002-12-17 Thread John McCosker
//cfguery cfquery maybe ? J -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED]] Sent: 17 December 2002 13:02 To: CF-Talk Subject: update form the MM update behavior was throwing a ton of errors so i wrote one out but its not working. can anyone please look it over and

Checking

2002-12-17 Thread FlashGuy
I need to check if part of one string matches part of another. For example, I have to variables. dir = D:\documents\test strShowMe = documents\test,documents\test2,mywork\test,misc\test Using cfif how could I check to see if any text from the dir variable, either documents or test return a

RE: update form

2002-12-17 Thread Mike Townend
Could be a typo... maritualStatus OR if your using SQLServer I believe user is a reserved word so you might have to change the sql to talk to a table [user] HTH -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 13:02 To: CF-Talk Subject:

Re: Incrementing a variable

2002-12-17 Thread Stephen Moretti
Flash guy - Use a session variable. DDBLists - you need cflocks on that code even in cfmx. Its the classic example of a race condition. - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 17, 2002 12:53 PM Subject: Re:

Re: update form

2002-12-17 Thread Stephen Moretti
Dave, Whats the error? Stephen - Original Message - From: Dave Lyons [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 17, 2002 1:02 PM Subject: update form the MM update behavior was throwing a ton of errors so i wrote one out but its not working. can anyone

Re: Incrementing a variable

2002-12-17 Thread Taz
Spooky You ought to do a ListLen() on the template path using '\' as the delimiter Taz ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Checking

2002-12-17 Thread Clint Tredway
cfif findNoCase(whatyouarelookingfor,stringtosearch) try that. If you need further help, just let me know. Clint - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 17, 2002 7:15 AM Subject: Checking I need to check if part of

RE: Incrementing a variable

2002-12-17 Thread FlashGuy
OK...but every time I hit the refresh it increments. I don't want that. Also everytime I drill down into the directory structure I also want the counter to decrement if I click on a link to go back. Probably too much work, right? On Tue, 17 Dec 2002 13:11:03 -, webguy wrote: Use a

Re: update form

2002-12-17 Thread Jochem van Dieten
Quoting Dave Lyons [EMAIL PROTECTED]: the MM update behavior was throwing a ton of errors so i wrote one out but its not working. Define not working. cfguery name=Update datasource=reCFM UPDATE user (firstName, lastName, username, password, email, city, state, country, zip, sex, sexPref,

Re: Checking

2002-12-17 Thread Stephen Moretti
Folder = ListRest(dir,/); if (ListFind(strShowMe,Folder) GT 0) { // Found condition } else { // Not Found Condition } I need to check if part of one string matches part of another. For example, I have to variables. dir = D:\documents\test strShowMe =

RE: Medical Financial Enterprise Applications CF Security

2002-12-17 Thread Joshua Tipton
http://www.mydatavault.net/ CF in medical field On Mon, 16 Dec 2002, Oliver Cookson wrote: snip Can anyone provide specific links. press releases, information regarding the security plus's / minuses and again - the success rate of Cold Fusions implementation on large scale, secure,

Re: update form

2002-12-17 Thread Bud
On 12/17/02, Dave Lyons penned: education, seeking, aboutME , aboutYOU , activated) VALUES ('#FORM.firstName#', '#FORM.lastName#', '#FORM.username#', '#FORM.password#', '#FORM.email#', '#FORM.city#', '#FORM.state#', '#FORM.country#', '#FORM.zip#', '#FORM.sex#', '#FORM.sexpref#', '#FORM.BDmonth#',

RE: update form

2002-12-17 Thread Dobris, Eric
-Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 8:33 AM To: CF-Talk Subject: Re: update form You have 35 columns and only 32 values to insert. They need to contain the same amount of values. Also it's cfquery not cfguery.

Re: CFHTTP on MX

2002-12-17 Thread Cutter (CF_Talk)
Thanks Dave, that answer was right on the money. Cutter Dave Watts wrote: Your problem isn't with CF, really. You're attempting to use Google, and it's rejecting your attempt. When I tried your code out, I got this in my handy packet-sniffer: Forbidden Your client does not have permission to

RE: mySQL equivalent of MS Access Money fieldtype?

2002-12-17 Thread Rick Faircloth
Thanks, Matt. I'll go with INT...what does the unsigned part mean and what are the implications of signed or unsigned? Rick -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 3:17 AM To: CF-Talk Subject: RE: mySQL equivalent of MS Access

RE: Banned words list for use with Fusetalk

2002-12-17 Thread Jim Davis
Well, the recognized master in the field has his complete list here: http://www.georgecarlin.com/georgecarlin/dirty/2443.html Still - you should decide in advance how much effort you want to spend on this and not go over - this is a pit of crap you may never come out of. Oh, did I say crap? Is

CF STUDIO 4.5 RDS question

2002-12-17 Thread Frank Mamone
On one of my RDS connections I cannot see all the files in c:\. The filter is set for All documents. When I do this from home with CFS 5.0 I see all the files. Has anyone heard of this? Thanks ~| Archives:

RE: CF Instant Messaging

2002-12-17 Thread jon roig
Does CFMX have better sockets support through Java now? If so, it might be trivial to whip something simple up... -- jon -Original Message- From: Brandon Harper [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 3:49 AM To: CF-Talk Subject: RE: CF Instant Messaging An

RE: mySQL equivalent of MS Access Money fieldtype?

2002-12-17 Thread Jochem van Dieten
Quoting Rick Faircloth [EMAIL PROTECTED]: I'll go with INT...what does the unsigned part mean and what are the implications of signed or unsigned? http://www.mysql.com/doc/en/Numeric_types.html BTW, your original question is answered there as well. Jochem

RE: query inside cfscript

2002-12-17 Thread Ben Doom
Not in CF5. --Ben Doom Programmer General Lackey Moonbow Software : -Original Message- : From: Owens, Howard [mailto:[EMAIL PROTECTED]] : Sent: Monday, December 16, 2002 7:22 PM : To: CF-Talk : Subject: query inside cfscript : : : Is it possible to run a database query (in

Generating PDFs in CF

2002-12-17 Thread Ciliotta, Mario
Hi, I was wondering if anyone has any information on how to create a PDF on the fly in CF. I have been told to look at Active PDF, but right now there is no money to purchase that tool, so I was looking of either a custom tag or maybe an article or two on how to do this. We are currently

RE: CF STUDIO 4.5 RDS question

2002-12-17 Thread Boardwine, David L.
Hi Frank, I had this happen to me. Updating Studio 4.5 with the service pack (sorry I can't remember which SP) fixed it for me. HTH DavidB -Original Message- From: Frank Mamone [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 9:19 AM To: CF-Talk Subject: CF STUDIO 4.5 RDS

RE: Generating PDFs in CF

2002-12-17 Thread webguy
There are loads of ways to do this, not enough time to emumerate, check the Archives Here is one I like XML - PDF via fop (XSL-FO) http://xml.apache.org/fop/ http://www.xml.com/pub/a/2001/01/17/xsl-fo/index.html WG -Original Message- From: Ciliotta, Mario [mailto:[EMAIL PROTECTED]]

Re: Generating PDFs in CF

2002-12-17 Thread Jerry Johnson
Some questions: How complex and or regular are the PDFs you are trying to create? How often are you trying to create them? Quantity? Are you building them on the fly for viewing, or generating and saving them via CF? I have had great success: Building the PS by hand in CF, and running

RE: CF STUDIO 4.5 RDS question

2002-12-17 Thread Robertson-Ravo, Neil (RX)
try applying SP 4.5.2 update -Original Message- From: Boardwine, David L. [mailto:[EMAIL PROTECTED]] Sent: 17 December 2002 14:42 To: CF-Talk Subject: RE: CF STUDIO 4.5 RDS question Hi Frank, I had this happen to me. Updating Studio 4.5 with the service pack (sorry I can't remember

CFMX: Caching files

2002-12-17 Thread Angel Stewart
Hey all, I am running into an issue with CFMX apparently not showing the latest files that I place on the server. If I make a change to a file, say showdetails.cfm on my machine and load that page from the webserver, it shows me the previous page, not the page I just updated. I need to stop

RE: CFMX: Caching files

2002-12-17 Thread Tony Weeg
its not the trusted cache being set is it? ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From: Angel Stewart

RE: Generating PDFs in CF

2002-12-17 Thread Ciliotta, Mario
Basically, Some of the pdf are just very simple - printable versions of pages, some are more complex in that they are copies of the the form that you filled out. Even though we are trying to be paperless, people here still like to have a printable and readable copy of what they requested so

Client Variables Best Practices

2002-12-17 Thread Robert Shaw
Hi, Multi-part question for the list today. I'll be moving our client variables from the registry to an Oracle Database (ColdFusion 5). I'm wondering this: 1. Are there any tips, tricks, or things to look out for with clustering using load balancing in this environment? 2. Is it best practice to

RE: CFMX: Caching files

2002-12-17 Thread Tony Weeg
are you getting the normal second or two delay for the first time run of a page? I have noticed with cfmx, that there tends to be a second or two of compiling time for each first run of a page. or are the pages simply just loading with no recompense for a newer version or not? ..tony Tony Weeg

Re: mySQL equivalent of MS Access Money fieldtype?

2002-12-17 Thread Stephen Moretti
Quoting Rick Faircloth [EMAIL PROTECTED]: I'll go with INT...what does the unsigned part mean and what are the implications of signed or unsigned? http://www.mysql.com/doc/en/Numeric_types.html BTW, your original question is answered there as well. Just to add INT is INTEGER

Re: CFMX: Caching files

2002-12-17 Thread Dave Carabetta
Hey all, I am running into an issue with CFMX apparently not showing the latest files that I place on the server. If I make a change to a file, say showdetails.cfm on my machine and load that page from the webserver, it shows me the previous page, not the page I just updated. I need to stop and

RE: Generating PDFs in CF

2002-12-17 Thread Jeff D. Chastain
Not a free solution, but ActivePDF will do quite a few interesting things with PDF files and can be used via CF. -- Jeff -Original Message- From: Ciliotta, Mario [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 9:35 AM To: CF-Talk Subject: RE: Generating PDFs in CF

Install problem on Solaris

2002-12-17 Thread Stacy Young
We're attempting to install CFMX with Updater 2 on our production machine and we've run into a problem that didn't happen in our QA environment. Our unix admin specified an alternate root directory when installing (as with qa machines) but when we attempt to access the CF administrator we get the

RE: CFMX: Caching files

2002-12-17 Thread Adrian Lynch
One or two seconds, and the rest! -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: 17 December 2002 15:41 To: CF-Talk Subject: RE: CFMX: Caching files are you getting the normal second or two delay for the first time run of a page? I have noticed with cfmx, that there

RE: Generating PDFs in CF

2002-12-17 Thread Tony Weeg
but is activePDF ok with CFMX yet? I have tried to no avail. ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping reporting www.navtrak.net 410.548.2337 -Original Message- From:

RE: Install problem on Solaris

2002-12-17 Thread Stacy Young
Sorry this was double post to Linux list...can't retrieve my password on HoF to change my subscription from digest... Stace -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 10:43 AM To: CF-Talk Subject: Install problem on Solaris We're

OT sql order by

2002-12-17 Thread Tim Do
hello... I have a varchar field in sql2000 that I use as unit #'s for apts. They can enter as 1,2,3a,4b,10. I would like to order that by the unit number, but since its a varchar, it comes out 1,10,2,3a,4b. How would I order it like this: 1,2,3a,4b,10 TIA

RE: Generating PDFs in CF

2002-12-17 Thread Matthew Small
If I already had Crystal, I would do everything I could to make Crystal work. I've been through the wringer making printed pages work in CF, and the only thing that really worked for me was using COM and Word, but it was a poor solution to a complex problem. I started using

RE: update form

2002-12-17 Thread Robert Segal
An SQL update statement has a different syntax, it look like you are trying to do an insert. Try UPDATE user set firstname = '#form.firstname#', lastname = '#form.lastname#'... WHERE primarykey = some value You also need to indicate which row in the table to update by using

Re: OT sql order by

2002-12-17 Thread Bryan Stevenson
ListSort(YourField,numeric) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

RE: CFMX: Caching files

2002-12-17 Thread Angel Stewart
Yes..that was the problem. *sheepish grin* Would there be a way to turn on that sort of caching on a per site basis? We DO have about two sites where not having to recompile pages would come in really handy, but of course for others that are updated it isn't desirable. -Gel -Original

Re: CFMX: Caching files

2002-12-17 Thread Zac Spitzer
Dave Carabetta wrote: Hey all, I am running into an issue with CFMX apparently not showing the latest files that I place on the server. If I make a change to a file, say showdetails.cfm on my machine and load that page from the webserver, it shows me the previous page, not the page I just

Re: OT sql order by

2002-12-17 Thread Bryan Stevenson
FYIthat function would be used after the data is retrieved. If you want to get it out of the DB in the proper order, use that function to sort the list before you insert it into the DB. HTH Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t.

CFlock in CFScript

2002-12-17 Thread Ben Doom
I asked this before, but it never landed in my inbox (nor did any replies) so I'll ask again. Is it possible to lock application, session, etc. variables in a cfscript? If so, how? I'm guessing it's not, but it would make my life easier and my code cleaner in at least one instance. :-)

RE: CFMX: Caching files

2002-12-17 Thread Tony Weeg
well...even for the pages that stay static once compiled, they don't need to recompile, from what I have seen. so it wouldn't make too much difference anyway. ..tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce

RE: CFlock in CFScript

2002-12-17 Thread Robertson-Ravo, Neil (RX)
put locks around the script block [?] -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED]] Sent: 17 December 2002 16:20 To: CF-Talk Subject: CFlock in CFScript I asked this before, but it never landed in my inbox (nor did any replies) so I'll ask again. Is it possible to lock

RE: CFlock in CFScript

2002-12-17 Thread Raymond Camden
You can't. However, you could write a UDF to act as a wrapper. For example, if you wanted to get foo from the application scope and wanted a readOnly lock (fyi, I'm writing this code pretty quickly, so forgive any typos) cffunction name=applicationRead returnType=any output=false

RE: mySQL equivalent of MS Access Money fieldtype?

2002-12-17 Thread Rick Faircloth
In a message after the one you sent below, Stephen Moretti commented: INT is INTEGER which means that there's no decimal places Not much good for real money that I'm afraid. If INT won't display decimals, how do you get around that in CF for monetary values that aren't zero to the right of

Re: Generating PDFs in CF

2002-12-17 Thread Zac Spitzer
Ciliotta, Mario wrote: Hi, I was wondering if anyone has any information on how to create a PDF on the fly in CF. I have been told to look at Active PDF, but right now there is no money to purchase that tool, so I was looking of either a custom tag or maybe an article or two on how to do

RE: CFMX: Caching files

2002-12-17 Thread Angel Stewart
0_0 So...then what's the point of the Trusted Cache setting in the first place? -Gel -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] well...even for the pages that stay static once compiled, they don't need to recompile, from what I have seen. so it wouldn't make too

Restarting the ColdFusion MX Service

2002-12-17 Thread Mark Johnson
Having a terrible time lately getting the CFMX service to start back up. When I restart the service i get the following message attempting to start up The ColdFusion MX Application Server service could not be started. Check the server default log files for more information. The information in the

RE: CFlock in CFScript

2002-12-17 Thread webguy
Not directly, but you can cheat :-) Do something like these functions http://www.cflib.org/library.cfm?ID=17 Actually, submit it if you write it Here is the logic / no testing / scoping etc.. just logic cffunction name=LockAndSet cfargument name=variable type=string required=yes /

RE: CFlock in CFScript

2002-12-17 Thread webguy
great minds Raymond , great minds... WG -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 17 December 2002 16:33 To: CF-Talk Subject: RE: CFlock in CFScript You can't. However, you could write a UDF to act as a wrapper. For example, if you wanted to get

RE: mySQL equivalent of MS Access Money fieldtype?

2002-12-17 Thread Rick Faircloth
Thanks for the url, Jochem. I do research the docs *usually*, but I've found in many cases, that it takes an inordinate amount of time to find an answer to a simple question. So sometimes I just go for the quick fix. :o) And, although the docs explain the possibilities for monetary values, I

RE: CFlock in CFScript

2002-12-17 Thread Ben Doom
We're still working in CF5. Thanks for the UDF -- I'd not figured out how to write them in taggish yet, although I had the vague idea it could be done. --Ben Doom Programmer General Lackey Moonbow Software : -Original Message- : From: Raymond Camden [mailto:[EMAIL

RE: CFlock in CFScript

2002-12-17 Thread Ben Doom
Except that doesn't help when I'm writing a UDF. Maybe I should have mentioned that. :-) --Ben Doom Programmer General Lackey Moonbow Software : -Original Message- : From: Robertson-Ravo, Neil (RX) : [mailto:[EMAIL PROTECTED]] : Sent: Tuesday, December 17, 2002 11:27 AM :

RE: CFMX: Caching files

2002-12-17 Thread Tony Weeg
I don't think I can answer that one, ill defer to some of the guru's. cf_TonyMaybe however I believe that it is really a legacy setting, or maybe not, that was necessary so that a page wouldn't get compiled each time it was ran, however now that the cf server engine is

need tag for dropdown and input

2002-12-17 Thread Valerie L. Criswell
I know I've seen it somewhere on my journeys. It's the tag that displays both a dropdown (populated from a query) as well as an accompanying text input so that the if the needed value isn't listed in the dropdown, the user can enter it into the text box. But only one variable for the value is

RE: CFMX: Caching files

2002-12-17 Thread Mark Johnson
Big difference. Everytime CF has to grab a file to be included or executed it has to do a check to see that the source has not changed or been updated before it can run the compiled code. If you have trusted cache turned on you don't need to perform that check because you can trust that the code

RE: Banned words list for use with Fusetalk

2002-12-17 Thread Mosh Teitelbaum
So I tried to follow your link and NetNanny jumped right out of my computer, slapped me, and than quit 8^). -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Jim Davis [mailto:[EMAIL

RE: CFlock in CFScript

2002-12-17 Thread Robertson-Ravo, Neil (RX)
:-) LOL. the other posts should do it no probs, our Jedi master and webguy (?) should sort it out! -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED]] Sent: 17 December 2002 16:54 To: CF-Talk Subject: RE: CFlock in CFScript Except that doesn't help when I'm writing a UDF.

RE: CFMX: Caching files

2002-12-17 Thread Adrian Lynch
So what sort of gain is there with enabling it? A little or a lot? Ade -Original Message- From: Mark Johnson [mailto:[EMAIL PROTECTED]] Sent: 17 December 2002 17:10 To: CF-Talk Subject: RE: CFMX: Caching files Big difference. Everytime CF has to grab a file to be included or executed

Re: RE: Generating PDFs in CF

2002-12-17 Thread Alexandro Colorado
There is an open source solution that generate PDF called FOB. I havent really check it out, I saw it on a presentation of XML on CF. I will post the URL as soon as I get the rest of the info from the guy that did the presentation. On Tue, 17 Dec 2002, Matthew Small ([EMAIL PROTECTED])

RE: CFMX: Caching files

2002-12-17 Thread Angel Stewart
But there is no way to turn on Trusted Cache for sepecific directories i.e. websites on the server.. It either runs for all, or it doesn't run at all...? -Gel -Original Message- From: Mark Johnson [mailto:[EMAIL PROTECTED]] Big difference. Everytime CF has to grab a file to be

Re: CF Instant Messaging

2002-12-17 Thread John McKown
Just curious Why reinvent the wheel? Trillan works great (www.trillian.cc), has no ads, and is free. Also works with ICQ, AIM, MSN, Yahoo, and IRC. -- John McKown Brandon Harper wrote: An option besides those old tags is PresenceWorks ( http://www.presenceworks.com ). I've worked

RE: CFMX: Caching files

2002-12-17 Thread Mike Townend
AFAIK If the value is not set then cf checks the timestamps to see if the file has changed.. If it has it recompiles the file... Whereas if the value is checked then cf will not check the timestamps to see if the files have changed.. It will just server the copy of the file from memory HTH

Re: CFX_Image Help

2002-12-17 Thread Ewok
1) I keep seeing in the HOF list archives that developers are using an ACTION=iml, though I can't find documentation for that attribute anywhere in the CFX_Image docs (v1.6.6.9). What does this Attribute do? Theres a text file on nothing but IML in the zip here.

Re: mySQL equivalent of MS Access Money fieldtype?

2002-12-17 Thread Sean A Corfield
On Tuesday, Dec 17, 2002, at 07:41 US/Pacific, Stephen Moretti wrote: INT is INTEGER which means that there's no decimal places Not much good for real money that I'm afraid. Integer is the safer way to represent money - as pennies - because that way you avoid rounding errors. Financial

  1   2   3   >