RE: Windows Update

2003-06-30 Thread Robertson-Ravo, Neil (RX)
Erm, it could be a bad class file within IE. Windows Update basically is hfnetchk with a few add-ons etc. You can also run the MBSA which will provide a good sample of whats not on, though to be honest, starting with the latest SP and then running update is a better bet as sometimes for a

CFLIB

2003-06-30 Thread Robertson-Ravo, Neil (RX)
Is there a way to download the ENTIRE libaries at CFLIB? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

CFMX and J2SE

2003-06-30 Thread John McCosker
Greetings, on one of our production servers I installed J2 Standard Edition then CFMX, now we are getting database executing errors saying maximum license for standard edition is 10. Is CFMX not handling ODBC connections anymore and J2SE is. I should not have the two installed I feel. Has anyone

refresh form to anchor

2003-06-30 Thread Hugo Ahlenius
Hi, A simple question: the user is submitting a form, and I went the resulting page to be scrolled down to anchor #X (either a a name tag or an id in the resulting page). This is a form method=get. How do I do this? In the action, I can't specify an #anchor... /Hugo

Re: CFLIB

2003-06-30 Thread Massimo Foti
Is there a way to download the ENTIRE libaries at CFLIB? One of these days we need to figure out a smart way to integrate the whole arsenal of UDF from cflib in DW... There are different things we could do, first of all code coloring and code hints, but also the ability to browse cflib from DW

UDF for MSSQL full-text searches

2003-06-30 Thread Hugo Ahlenius
Hi, I am using the MSSQL full-text indexes for searching in a database from a webpage. Is there an UDF out there that would 'bake' in data for that, or is there a simple way to solve this with regexps... ? If not, I would have to look into that myself (if not regexps, the string needs to be

RE: UDF for MSSQL full-text searches

2003-06-30 Thread Robertson-Ravo, Neil (RX)
Have you ruled out Verity? -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 10:17 To: CF-Talk Subject: UDF for MSSQL full-text searches Hi, I am using the MSSQL full-text indexes for searching in a database from a webpage. Is there an UDF out there

RE: UDF for MSSQL full-text searches

2003-06-30 Thread Hugo Ahlenius
Yes, cause verity (at least in CF 4, which we are partly on) can't search things in the database. And the MSSQL full-text indexing seems very good to me! - Hugo Ahlenius E-Mail: [EMAIL PROTECTED] Project Officer

RE: UDF for MSSQL full-text searches

2003-06-30 Thread Robertson-Ravo, Neil (RX)
not sure about 4, but verity can certainly search within a Database I must admit, I have never had to use the full text searches as our server guys dont like the load they cause. -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 10:41 To: CF-Talk

RE: refresh form to anchor

2003-06-30 Thread Taco Fleur
You can still specify the anchor in a get operation, why would you not be able to? form method=get action=page.cfm#anchor name=frm1/form -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED] Sent: Monday, 30 June 2003 7:09 PM To: CF-Talk Subject: refresh form to anchor Hi,

RE: refresh form to anchor

2003-06-30 Thread Hugo Ahlenius
Try it, it didn't work for me (in IE 6 at least, IIS and CF5). It seems like the template is called but things after the template name are dropped. It might work with method=POST though, 'cause I know that URL variables, for example, can be used in the action there... /H.

FW: Search engine safe urls in CFMX

2003-06-30 Thread Jerry Staple
Hi Can anyone tell me how you turn urls into search engine safe urls in Coldfusion Mx i.e TURN index.cfm?user=Joe Bloggsbgcolor=bluecounty=2 INTO index.cfm/user=Joe Bloggs/bgcolor=blue/county=2 etc etc Thanks in Advance Jerry Staple Web Application Developer Certified

Re: UDF for MSSQL full-text searches

2003-06-30 Thread Calvin Ward
I don't think that MSSQL full text causes any more of a load than Verity does. - Calvin - Original Message - From: Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 30, 2003 5:37 AM Subject: RE: UDF for MSSQL full-text searches not sure

Re: Homesite + question

2003-06-30 Thread Calvin Ward
True it's an opinion, however while semantics aside, I realize that CF developers have done well without and IDE, but then again, many of them graduate to real languages with real IDE's, to paraphrase... I view the lack of an effective IDE as a shortcoming of CF, albeit that you can develop with

RE: UDF for MSSQL full-text searches

2003-06-30 Thread Hugo Ahlenius
It is not the search that is the major load, it is the indexing. Using MSSQL, one can set the indexing to be performed in the background, and also triggered by changes in the indexed table. AFAIK, Verity needs to do full indexes each time, which can take quite some time. (NB. I don't have any

Re: Best Practices for CFIF

2003-06-30 Thread Calvin Ward
I believe you'll find the performance is different in CFMX, specifically with the cfif myVar will no longer be trailing far behind cfif myVar IS True. And even more importantly even less performance variation. However, I do agree with Dave, the differences are fairly marginal and there are better

RE: Search engine safe urls in CFMX

2003-06-30 Thread Taco Fleur
You could form al your links like index.cfm/var=foo And use the custom tag I wrote, remove the cf_error tag !-- fileInfo authorTaco Fleur ([EMAIL PROTECTED])/author createDateSunday, 06 May 2003 18:29:00createDate

Re: Homesite + question

2003-06-30 Thread Massimo Foti
I view the lack of an effective IDE as a shortcoming of CF, albeit that you can develop with no IDE at all is certainly a good thing, but then you can use notepad for Java too, can't you? :P Well, Java managed to became relevant long before decent Java IDEs were available... And the sad

RE: Search engine safe urls in CFMX

2003-06-30 Thread Hugo Ahlenius
Taco, Your documentation/header seems invalid, if it is supposed to be XML: you forgot to close the createDate tag (and what DTD?) :) - Hugo Ahlenius E-Mail: [EMAIL PROTECTED] Project OfficerPhone:

RE: Search engine safe urls in CFMX

2003-06-30 Thread Taco Fleur
You also might want to change the delimiter from . To = in cfset setVariable(url. listFirst(variables.item, .), listRest(urlDecode(variables.item),.)) Like so cfset setVariable(url. listFirst(variables.item, =), listRest(urlDecode(variables.item),=)) And you need to include this tag before

Re: UDF for MSSQL full-text searches

2003-06-30 Thread Calvin Ward
Hugo, Note that I wasn't speaking about searching. Correct about MSSQL, in either case, both solutions require that the database be indexed with some degree of frequency, the amount of that freqency is dependent upon your need for accuracy in real time. However, Verity will be creating load on

Re: UDF for MSSQL full-text searches

2003-06-30 Thread Paul Hastings
I don't think that MSSQL full text causes any more of a load than Verity does. well it causes it on another server at least. plenty of reasons to use full-text in place of verity: - full text searches benefit from sql server's caching, so the more you search the faster they get, verity searches

Re: UDF for MSSQL full-text searches

2003-06-30 Thread Paul Hastings
Correct about MSSQL, in either case, both solutions require that the database be indexed with some degree of frequency, the amount of that freqency is dependent upon your need for accuracy in real time. full-text indexing engine can know whats been changed if your indexed rows are TIMESTAMPed,

RE: UDF for MSSQL full-text searches

2003-06-30 Thread Robertson-Ravo, Neil (RX)
probably right, but you know what DBA's are like...anything which is out of the hands of the organiser it deemed too much load -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 11:48 To: CF-Talk Subject: Re: UDF for MSSQL full-text searches I don't

RE: Search engine safe urls in CFMX

2003-06-30 Thread Taco Fleur
Interesting.. -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED] Sent: Monday, 30 June 2003 9:20 PM To: CF-Talk Subject: RE: Search engine safe urls in CFMX Taco, Your documentation/header seems invalid, if it is supposed to be XML: you forgot to close the createDate tag

Re: Homesite + question

2003-06-30 Thread Calvin Ward
Massimo, I hope you are right, but my thought is that we are already seeing MM stop developing and supporting Homesite. Did you happen to locate the Homesite Development Center on macromedia.com? But we got one for Central already :P Central ColdFusion ColdFusion for J2EE Contribute Director

Re: Homesite + question

2003-06-30 Thread Massimo Foti
I hope you are right, but my thought is that we are already seeing MM stop developing and supporting Homesite. The free 5.2 update was released 5 months ago, not that bad in my opinion... Did you happen to locate the Homesite Development Center on macromedia.com? But we got one for Central

RE: refresh form to anchor

2003-06-30 Thread Sicular, Alexander
Hugo, a name=#myquery.recordID#/a form action=myactionpage.cfm?suff=1somemore=2###query.recordID# Remember to escape the pounds if you have your form in a cfoutput... Gl, alex -Original Message- From: Hugo Ahlenius [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 5:09 AM To:

RE: Homesite + question

2003-06-30 Thread Raymond Camden
True it's an opinion, however while semantics aside, I realize that CF developers have done well without and IDE, but then again, many of them graduate to real languages with real IDE's, to paraphrase... CF is not a real language? Wow, have I been building apps in an imaginary world?

RE: CFLIB

2003-06-30 Thread Raymond Camden
You _can_ get everything if you use the generator tool. Click on the tools tab. As for using cflib.org from DW - well, you _can_ use it from Studio or HS+ rather easily, again, just go to tools and download the browser tool. It allows you to browse cflib.org via Studio/HS+, copy code to the

CFFTP putFile and getFile failing

2003-06-30 Thread David Hannum
I've been using CFFTP on a scheduled application for over a year now. It's worked without a hitch until a few days ago. Now, getFile and putFile both return an error that says No Response From Server. I would think that the FTP Server on the other box was to blame, except that the process runs

Re: Homesite + question

2003-06-30 Thread Calvin Ward
That wasn't my opinion, just paraphrasing :) - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 30, 2003 9:11 AM Subject: RE: Homesite + question True it's an opinion, however while semantics aside, I realize that CF

Help with error msg in CFMX?

2003-06-30 Thread Bosky, Dave
Has anyone experienced these two error msgs before? The page contains a basic select query and outputs the results. Everything works fine it just generates these error messages. Are there any issues with the JDBC Drivers in CFMX? Error MSG 1 [Macromedia][SQLServer JDBC Driver]Request cannot be

MM Forums

2003-06-30 Thread GL
Anyone using the MM Forums this morning? My CFMX died this weekend and I went to the MM Forums to look for advice. I found a thread where a bunch of people are claiming the same behavior. I clicked Reply and get this error: Element UP_USERNAME is undefined in REQUEST. The error occurred in

RE: MM Forums

2003-06-30 Thread Robertson-Ravo, Neil (RX)
I think a lot of people are getting this error.I thinks its noted. -Original Message- From: GL [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 14:57 To: CF-Talk Subject: MM Forums Anyone using the MM Forums this morning? My CFMX died this weekend and I went to the MM Forums to look for

RE: MM Forums

2003-06-30 Thread webguy
Did you try the suggestion in my mail? here it is again : Chould be an issue with the jrun connector. Can you browse all your site a using the built in webserver? (e.g. http://localhost:8500/ ) If it is check out MM site kb article about the connector WG -Original

Run background URLs

2003-06-30 Thread Paolo Cesana
Hi, Using CF5 Is it possible to do accomplish the following? I have a loop which executes a couple of queries and then needs to run a specific URL using the data prepared by the previous query for each loop iteration and displays its result in a different target window. cfloop

Caching Techniques.

2003-06-30 Thread Ian Skinner
Any suggestions on best practices for caching pages to improve performance. I have a site, where the pages are dynamically built from various pieces and components. But most of the pages, once they are built, do not change very frequently. (Updates to content monthly or quarterly). What are

RE: MM Forums

2003-06-30 Thread GL
I haven't been able to try this. I uninstalled CFMX. I'm in the process of scanning for viruses, then I'm going to try to reinstall CFMX. Thanks though. I'll try that if I have issues after reinstalling. Greg -Original Message- From: webguy [mailto:[EMAIL PROTECTED] Sent: Monday, June

Plug and play calendar

2003-06-30 Thread jeremy
Already did some searching but didn't really find anything like what I want (free). All I need is a calendar that can show one month at a time or more as long as I can go forward and backwards. Then I need to post events on certain days and have a link to the page with that info. I suppose I could

Calendar App

2003-06-30 Thread Eric Creese
Was a link to the source for this app ever posted? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

RE: Plug and play calendar

2003-06-30 Thread Eric Creese
http://www.myrtlebeachconventioncenter.com/eventcalendar/eventcalendar.cfm -Original Message- From: jeremy [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 9:34 AM To: CF-Talk Subject: Plug and play calendar Already did some searching but didn't really find anything like what I

RE: Calendar App

2003-06-30 Thread jeremy
That would work great, do you have the source? -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 10:43 AM To: CF-Talk Subject: Calendar App Was a link to the source for this app ever posted?

CFLOGIN Quickie

2003-06-30 Thread Candace Cottrell
How can I find out what is being passed as the ROLES attribute of my CFLOGINUSER? Login page: CFQUERY NAME=GetUser DATASOURCE=#request.DSN# SELECT USERS.UserID, USERS.UserFirstName, USERS.RoleID, Roles.RoleName FROM USERS, Roles WHERE

Re: CFLOGIN Quickie - SOLVED-Ignore

2003-06-30 Thread Candace Cottrell
IGNORE this... all I needed to do was a trim here: CFLOGINUSER NAME=#GetUser.UserID#,#GetUser.UserFirstName# PASSWORD=#FORM.Password# ROLES=#TRIM(GetUser.RoleName)# It's Monday... please forgive me. Candace K. Cottrell, Web Developer The Children's

Re: Plug and play calendar

2003-06-30 Thread Graham Pearson
Take a look at http://calendar.niesc.k12.in.us. Is this something that you are looking for. Already did some searching but didn't really find anything like what I want (free). All I need is a calendar that can show one month at a time or more as long as I can go forward and backwards. Then

Cfswitch question

2003-06-30 Thread Candace Cottrell
Is this illegal? Cfswitch expression=IsUserInRole() CfCase value=Admin h2Administrator Functions: /h2 /cfcase CfCase value=Facilities h2Facilities Functions: /h2 /cfcase /Cfswitch Candace K. Cottrell, Web Developer The Children's

RE: CFLOGIN Quickie - SOLVED-Ignore

2003-06-30 Thread Raymond Camden
Even though you said ignore, I'm going to respond anyway. ;) There is no way currently to get a list of the roles a user belongs to, so you must write your own system. This could easily be done w/ a UDF. The actual code of the UDF will depend on your security implementation.

Re: Cfswitch question

2003-06-30 Thread Neculai Macarie
I think it should be Cfswitch expression=#IsUserInRole()# mack / - Original Message - From: Candace Cottrell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 30, 2003 7:54 AM Subject: Cfswitch question Is this illegal? Cfswitch expression=IsUserInRole()

RE: Plug and play calendar

2003-06-30 Thread Scott Wilhelm
Graham: It looks like you left out a CFOUTPUT tag for the link below sync to palm/outlook. HTH, Scott -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 10:53 AM To: CF-Talk Subject: Re: Plug and play calendar Take a look at

Re: Cfswitch question

2003-06-30 Thread Michael Dinowitz
IsUserInRole() needs to be in pounds Is this illegal? Cfswitch expression=IsUserInRole() CfCase value=Admin h2Administrator Functions: /h2 /cfcase CfCase value=Facilities h2Facilities Functions: /h2 /cfcase /Cfswitch Candace K.

RE: Cfswitch question

2003-06-30 Thread Ian Skinner
Don't know, but if so you will need pounds in the expression. I always forget that. cfswithc expression=#IsUserInRole()# -- Ian Skinner Web Programmer BloodSource Sacramento, CA -Original Message- From: Candace Cottrell [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003

RE: Cfswitch question

2003-06-30 Thread Tony Weeg
yeah, so that it will actually parse the value of isUserInRole() rather than validate that the value is actually = IsUserInRole() make sense? tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original

RE: Plug and play calendar

2003-06-30 Thread jeremy
That will work fine, do you have the source? This is for an estate auction site. The client (one person company) wants a calendar that will show when he has an auction then link to the info (date, place, maybe some pics of some of the items being auctioned off) Usually 3 to 5 auctions a month.

Creating a Search

2003-06-30 Thread Scott Wilhelm
Hello: I'm trying to create a search engine for my website that will incorporate a few different domains virtual domains...Is there a way with Cold Fusion to index multiple domains, and then search against those? Since my site is both static dynamic, I need something that won't be just

RE: Cfswitch question

2003-06-30 Thread Jim Davis
It's not illegal, but it won't work. IsUserInRole() takes a role and returns a Boolean (true/false) - it really can't be used in a switch like that. (The value attribute looks at the RETURN of expression - it doesn't act as input to it.) Jim Davis -Original Message- From: Candace

post test

2003-06-30 Thread Michael T. Tangorre
just testing this account out.. as of now, nothing works :-( ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

CFMX Inquiry (Problem)

2003-06-30 Thread Graham Pearson
I have ran into a strange problem this morning with CFMX and I am unable to find a solution to this. I am running CFMX with Apache under Windows and in one of my applications I have made a change to the mainpage.cfm with an CFABORT command on the 4th line. When I login to this application I

(OT) RegEx editor

2003-06-30 Thread Michael Dinowitz
I've talked to the creator of this RegEx editor: http://www.blackie.dk/KDE/KRegExpEditor/ He's willing to port it to Windows as a standalone visual RegEx creator for us. We'll have the source (in Qt) and the license and I'd make it a community thing. What's needed? $720 If your interested in such

RE: Plug and play calendar

2003-06-30 Thread Graham Pearson
The Palm/Outlook Sync requires a program that we have not purchased cause of Budget Issues. We are working on writing our own Palm Conduit. Unless someone already has written one that does not cost $1,000.00's Graham: It looks like you left out a CFOUTPUT tag for the link below sync to

RE: Cfswitch question

2003-06-30 Thread Candace Cottrell
Thanks Jim... Sooo, I guess I have to do this by going through each of my roles and doing cfifs? Seems like I am hardcoding almost. Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org

Re: Caching Techniques.

2003-06-30 Thread Massimo Foti
Any suggestions on best practices for caching pages to improve performance. I have a site, where the pages are dynamically built from various pieces and components. But most of the pages, once they are built, do not change very frequently. (Updates to content monthly or quarterly). What are

RE: CFMX Inquiry (Problem)

2003-06-30 Thread GL
I'm quoting Jim Davis here: When CFMX runs a page it actually takes your source file and compiles it to a Java class. It's actually that Java class that's run when the page is requested. CF is supposed to recompile these pages whenever they change - sometimes it gets stuck and doesn't do it,

RE: CFMX Inquiry (Problem)

2003-06-30 Thread webguy
They are in [cf web root]\WEB-INF\cfclasses WG -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 16:03 To: CF-Talk Subject: CFMX Inquiry (Problem) I have ran into a strange problem this morning with CFMX and I am unable to find a solution to this. I

RE: CFLOGIN Quickie - Ray

2003-06-30 Thread Candace Cottrell
Hmmm... that seems like something one would need to know... Maybe you could do... CFLOGINUSER NAME=#GetUser.UserID#,#GetUser.UserFirstName#, #GetUser.RoleName# PASSWORD=#FORM.Password# ROLES=#TRIM(GetUser.RoleName)# And then parse it out of the name part. Of

RE: Cfswitch question

2003-06-30 Thread Ian Skinner
Well you could use the pre-cfswitch option... cfif IsUserInRole cfelseif IsUserInRole... cfelseif IsUserInRole cfelse No mathing roles found. /cfif Not quite as clean as a cfswitch...but some of the benifits and should be a bit faster then a bunch of complete cfif/cfif blocks.

RE: Cfswitch question

2003-06-30 Thread Jim Davis
-Original Message- From: Candace Cottrell [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 11:07 AM To: CF-Talk Subject: RE: Cfswitch question Thanks Jim... Sooo, I guess I have to do this by going through each of my roles and doing cfifs? Pretty much. I've personally

RE: CFLOGIN Quickie - Ray

2003-06-30 Thread Raymond Camden
To me, that seems to hacky. If roles for user A was simply, cfquery name=getroles ... select rolename from you get the idea /cfquery I'd simply turn this into a UDF called getRoles(name). Use it when you logon and use it when you need the list.

SQL Repeated Number Query

2003-06-30 Thread Josh Remus
I have a strange SQL question, I'm not sure even what term I would use to search the archive, but I did try looking, for what it's worth. I have a RA database which tracks incoming returns and service performed on those units. That table (RA) contains a SerialNumber and a CreateDate/Time stamp.

RE: Cfswitch question

2003-06-30 Thread Candace Cottrell
Gotcha... Thx Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org [EMAIL PROTECTED] [EMAIL PROTECTED] 6/30/2003 11:17:48 AM Well you could use the pre-cfswitch option... cfif

Simple CF Parser...

2003-06-30 Thread Tyler Silcox
I have a string variable set by a cffile read and I'm trying to create a simple udf for parsing the file. So far it works quite well, but I don't have it searching for cfoutputs, it doesn't handle CFMX's built-in evaluate for pound signs (like: #MyCounter + 1#), or any cfscript writeoutputs,

RE: (OT) RegEx editor

2003-06-30 Thread webguy
What is the $720 for, a copy of QT for windows? There is a free non-commercial windows version. This may have changed since I looked last. If the $720 is for VStudio 6 (the free win qt version required it.. ), I have a copy of that. The RegEx editor source is GPL'ed right? If its just a

RE: CFMX Inquiry (Problem)

2003-06-30 Thread Graham Pearson
Thanks that solve the issue once I deleted all of those files, and Stopped/Started the Coldfusion Services. They are in [cf web root]\WEB-INF\cfclasses WG -Original Message- From: Graham Pearson [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 16:03 To: CF-Talk Subject: CFMX

RE: CFMX Inquiry (Problem)

2003-06-30 Thread webguy
You can stick this in a .bat file net stop ColdFusion MX ODBC Agent net stop ColdFusion MX ODBC Server net stop ColdFusion MX Application Server Del C:\CFusionMX\wwwroot\WEB-INF\cfclasses\*.* /Q net start ColdFusion MX Application Server net start ColdFusion MX ODBC Agent net start ColdFusion

Re: (OT) RegEx editor

2003-06-30 Thread Michael Dinowitz
The $720 is for a visual RegEx building tool WRITTEN in Qt. If it's GPLed, then anyone here could get it and compile it for us, right? Could you? From the email, it seems that something specific needs to be done to get it into windows. If I'm incorrect in this and you (or someone else) can get it

Re: SQL Repeated Number Query

2003-06-30 Thread Jochem van Dieten
Josh Remus wrote: I have a RA database which tracks incoming returns and service performed on those units. That table (RA) contains a SerialNumber and a CreateDate/Time stamp. What I need is SQL that will check if there is more than one entry for a particular serial number in a 90-day

RE: SQL Repeated Number Query

2003-06-30 Thread Josh Remus
Thank you Jochem, I knew it had to be possible! I didn't think to link the table to itself. Josh -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Monday, June 30, 2003 11:43 AM To: CF-Talk Subject: Re: SQL Repeated Number Query Josh Remus wrote: I

CFLOOP question

2003-06-30 Thread Paul Campano
I am looping through items in a shopping cart and need to add up the price of each item to get a total price. How would I do this? I thought about setting a variable price per iteration through the loop, but that just gets overwritten each time. Thanks. Paul Campano

RE: CFLOOP question

2003-06-30 Thread Robertson-Ravo, Neil (RX)
You can simply add up the column total beforehand. - no need to loop and add them up etc. -Original Message- From: Paul Campano [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 16:55 To: CF-Talk Subject: CFLOOP question I am looping through items in a shopping cart and need to add up the

Re: CFLOOP question

2003-06-30 Thread Michael T. Tangorre
cfset total = 0 cfloop cfset total = total + price /cfloop Mike - Original Message - From: Paul Campano [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 30, 2003 11:55 AM Subject: CFLOOP question I am looping through items in a shopping cart and need to add up the

RE: CFLOOP question

2003-06-30 Thread Nagy, Daniel J
cfset attributes.total = 0 cfloop index=temp from=1 to=#ListLen(CartList)# step=1 cfset attributes.total = attributes.total + CartList[temp] /cfloop cfoutput My Total Price Is $#attributes.total# /cfoutput depending on what kind of structure you're holding the cart items in,

Re: CFLOOP question

2003-06-30 Thread Graham Pearson
In your loop you can do cfset TPrice = TPrice + ItemPrice I am looping through items in a shopping cart and need to add up the price of each item to get a total price. How would I do this? I thought about setting a variable price per iteration through the loop, but that just gets

RE: CFLOOP question

2003-06-30 Thread Adrian Lynch
cfset total = 0 cfloop from=1 to=whatever index=i cfset total = total + yourPrice /cfloop Something along those lines should work. Ade -Original Message- From: Paul Campano [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 16:55 To: CF-Talk Subject: CFLOOP question I am looping

RE: CFM Shopping Cart System

2003-06-30 Thread Larry Juncker
Very nice, I wouldn't mind a look see either Larry Juncker Senior Cold fusion Developer Heartland Communications Group, Inc. [EMAIL PROTECTED] (515) 574-2122 CONFIDENTIALITY NOTICE The information contained in this e-mail is intended only for the use of the individual or entity to which it

RE: Caching Techniques.

2003-06-30 Thread Kola Oyedeji
Hi Somone posted this link recently to a collection of caching related articles on Macromedia. It may give you an idea of what options you have available:- http://www.macromedia.com/support/coldfusion/data_source.html HTH Kola -Original Message- From: Ian Skinner [mailto:[EMAIL

RE: (OT) RegEx editor

2003-06-30 Thread webguy
From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Subject: Re: (OT) RegEx editor The $720 is for a visual RegEx building tool WRITTEN in Qt. If it's GPLed, then anyone here could get it and compile it for us, right? Could you? yeap, of course there maybe some issues, depending on the libs.

RE: used to use cfml.exe but MX doesn't have it...

2003-06-30 Thread Jeremy Bruck
Brian, The easiest way to create an html page is either CFHTTP, but I prefer to use CFSaveContent. Here is an example: cfsavecontent variable=SEOHTMLPage full html page with CFM code it in /cfsavecontent cffile action=WRITE file=name of file.html

RE: CFM Shopping Cart System

2003-06-30 Thread Manesh Manickam
Did he ever post the source? -Original Message- From: Fusion [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2003 6:25 PM To: CF-Talk I would to - Original Message - From: Dan Phillips [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, June 27, 2003 9:53 AM Subject:

Questions about security

2003-06-30 Thread Eric Creese
I have some questions about CFMX security, loop hole, pit falls and configuration. I have two Win2k clustered servers that will contain membership data that will be stored in SQL Server DB on a third server. I need to insure that I will not be hacked. Is there any particular configuration that

RE: Questions about security

2003-06-30 Thread webguy
Secure Windows - get the O'reilly book http://www.oreilly.com/catalog/securwinserv/ http://www.microsoft.com/security/ Secure IIS - http://www.iisfaq.com/default.aspx?view=P142 Secure SQL server -http://www.sqlsecurity.com/DesktopDefault.aspx Use

RE: Questions about security

2003-06-30 Thread Eric Creese
Thanks. My main concern is from the CF side of things. The network admins can look at the rest. I am introducing CF here at my new employer and I will need to provide this type of info for them if they choose to go with CF. -Original Message- From: webguy [mailto:[EMAIL PROTECTED] Sent:

RE: Questions about security

2003-06-30 Thread webguy
Oh yeah, I left out; a decent firewall, and a properly configered DMZ / Zones / network and maybe IDS (www.Snort.org is cool) and decent passwords. looking at CFMX server then alone (ie without your code...) Disable / remove RDS, Run it under a user account which only has the

CFMX SQLException error

2003-06-30 Thread John McCosker
Greetings, we have had CFMX on our development server now for the last 6 months, and decided we would migrate from CF5 to CFMX on our Production server over the weekend, Our Development server is in one domain and our production server is in another but both are connected to our SQL server 7.0

Re: CFMX SQLException error

2003-06-30 Thread ksuh
That error message is not from CFMX. It's from your database server. It seems that you're running MSDE, not SQL Server - Original Message - From: John McCosker [EMAIL PROTECTED] Date: Monday, June 30, 2003 11:10 am Subject: CFMX SQLException error Greetings, we have had CFMX on

RE: CFMX SQLException error

2003-06-30 Thread John McCosker
It seems that you're running MSDE What is MSDE? That error message is not from CFMX. Well this would possibly make sense as ASP pages are throwing the same error. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 18:14 To: CF-Talk Subject: Re: CFMX

RE: CFMX SQLException error

2003-06-30 Thread webguy
Hi, First of all I don't understand 'Standard Edition', we are running CFMX Enterprise for windows, and why upgrade. I think the error refers to the licenses for your database rather than CFMX. Sure you don't have more simultaneous connections in total , i.e. CFMX CFM anything else than your

RE: CFMX SQLException error

2003-06-30 Thread webguy
Microsoft Database Engine = MSDE http://www.microsoft.com/sql/ WG -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED] Sent: 30 June 2003 18:17 To: CF-Talk Subject: RE: CFMX SQLException error It seems that you're running MSDE What is MSDE? That error message is not from

RE: CFMX SQLException error

2003-06-30 Thread Dave Watts
The error from both our production and developments environments is, SQLException while attempting to connect: java.sql.SQLException: [Macromedia][SQLServer JDBC Driver][SQLServer]Login failed. The maximum simultaneous user count of 10 licenses for this 'Standard Edition' server has

RE: CFMX SQLException error

2003-06-30 Thread John McCosker
Are you using both CFMX and CF5 together? CF5.0 is still installed and running, we have not removed it yet, we didn't think this was an issue as MM documentation explains that on migration CF5 is disabled if there is co-existence. //CFMX CFM You have confused me here. -Original

CFMX Linux?

2003-06-30 Thread Manesh Manickam
I was wondering if there is a version for linux? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

  1   2   >