RE: Dynamic variable name (WAS: XML Variable Issue)

2005-01-18 Thread James Smith
OK, well while on the subject of doing things the correct way, how would you set this value? cfset config.siteConfig.siteSections.#url.SectionName#.XMLText = True works, but is there a better/cleaner way? Yey, cfif IsDefined(Config.SiteConfig.SiteSections.#Sections.Name#) works fine!

RE: Dynamic variable name (WAS: XML Variable Issue)

2005-01-18 Thread Pascal Peters
You could do cfset config.siteConfig.siteSections[url.SectionName].XMLText = True -Original Message- From: James Smith [mailto:[EMAIL PROTECTED] Sent: 18 January 2005 10:59 To: CF-Talk Subject: RE: Dynamic variable name (WAS: XML Variable Issue) OK, well while on the subject of

RE: Java Denial of Service

2005-01-18 Thread Robertson-Ravo, Neil (RX)
Yes, unless you are running a higher or newer JVM. -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 18 January 2005 02:11 To: CF-Talk Subject: Java Denial of Service Is this recent bug likely to be a problem for CF6.1 installs?

RE: Java Denial of Service

2005-01-18 Thread Robertson-Ravo, Neil (RX)
Though I need to check if it can indeed accept serialized objectsnot sure on that? -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 18 January 2005 10:27 To: CF-Talk Subject: RE: Java Denial of Service Yes, unless you are running a higher or newer

RE: Java Denial of Service

2005-01-18 Thread James Holmes
That is the part on which I am unclear too - any Java gurus willing to connent on whether CF can accept serialized objects? -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Tuesday, 18 January 2005 6:35 To: CF-Talk Subject: RE: Java Denial of Service

RE: Java Denial of Service

2005-01-18 Thread Robertson-Ravo, Neil (RX)
Guess is that if you are on JRun I suppose that you are at risk as its really the server/JVM not CF which is the problem here -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 18 January 2005 10:58 To: CF-Talk Subject: RE: Java Denial of Service That is the part on

RE: Performance of using a lookup query

2005-01-18 Thread Micha Schopman
Different opinions about these sort of approaches exist, some people keep telling others that this is the right approach because you won't mix different types of objects.. , my opinion out of personal experience .. don't do this. I have code reviewed many applications, and this approach of

Stored procedure VS Views

2005-01-18 Thread Will Tomlinson
With everyone's help I'm pretty much wrapping up the functionality of my clothing app/SQL Server db. I was planning on converting much of my SELECT cfquerys to stored procedures, and started reading some about views. Is a view equal to a stored procedure in performance? Does it matter at all

two websites, one Cfusion, sharing sessions

2005-01-18 Thread Bert Dawson
Is it possible to run 2 websites on a single CF server, and for a user to have the same Jsession on both sites? I have enabled Use J2EE session variables in cf admin, and tried passing the jsessionid in URL and form fields when linking between the two sites, but it doesn't work: sooner or later a

RE: two websites, one Cfusion, sharing sessions

2005-01-18 Thread Tim Blair
Is it possible to run 2 websites on a single CF server, and for a user to have the same Jsession on both sites? The easiest way would be to have the same application name in your cfapplication tag on each site. Of course, both sites would also share the same application scope etc too. Tim.

C++ CFX Tag

2005-01-18 Thread Andrew Dixon
Hi All. Has anyone here every managed to write a C++ CFX tag that works on CFMX on Linux? Even the example CFX tag, cfx_directorylist doesn't appear to work. Any help would be very gratefully received. Andrew. ~| Logware: a

RE: Homesite

2005-01-18 Thread Calvin Ward
And keep in mind that one of the key features of HomeSite+ is the debugging, which doesn't work with CFMX. So the lack of that in HomeSite regular isn't much of a loss of a feature if you are no longer on CF 5 and lower. - Calvin -Original Message- From: Adam Churvis [mailto:[EMAIL

RE: Suggestions sent to Macromedia

2005-01-18 Thread Calvin Ward
Er, still don't see it... -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Monday, January 17, 2005 10:20 AM To: CF-Talk Subject: RE: Suggestions sent to Macromedia Ah shoot. I forgot to paste the message I wrote. Doh! -- Damien McKenna - Web Developer -

RE: Performance of using a lookup query

2005-01-18 Thread Micha Schopman
As a follow up: I tried the situation on MS SQL Server 2000, where I got an Object simply named article, and a table with article properties like title, body. In total I had 20 properties. The lookup query approach used much more CPU power, and needed 135ms to complete. The one in all query

RE: John Dowdell Wants to Know What's Wrong with Macromedia

2005-01-18 Thread Calvin Ward
Dave, I didn't like the query builder that was in the devnet, I don't recall the specifics, besides which devnet is no longer. I know about CommunityMX's extension, and I've written my own, but the filepath display should be part of the UI, not a 3rd party add on that takes up more space. And

Re: Dynamic variable name (WAS: XML Variable Issue)

2005-01-18 Thread Adam Haskell
When dealing with structures (or XML since most of the time XML objects can be dealt with like you deal with structures) a good rule of thumb is to us the . (request.page_id) when you know what you are looking for and to use the [] (request[something]) when you are using a variable to evaluate

RE: two websites, one Cfusion, sharing sessions

2005-01-18 Thread James Holmes
You also need to continue to pass the URKLToken in every link in your app. -Original Message- From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: Tuesday, 18 January 2005 7:58 To: CF-Talk Subject: RE: two websites, one Cfusion, sharing sessions Is it possible to run 2 websites on a single

Re: Oracle help please

2005-01-18 Thread Frank Mamone
Greg, I tried this: UPDATE EIM_CONTACT SET A.CON_CUST_STAT_CD = ( SELECT B.PC_STATUS FROM EIM_CONTACT A , EIM_CONTACT B WHERE A.ROW_ID = B.CON_PERSON_UID AND B.CON_PR_POSTN = 'Y' ) I get Table or View does not exist. - Frank On Mon, 17 Jan 2005 16:17:59 -0600, Greg Morphis [EMAIL

Wrap custom tag

2005-01-18 Thread Jeremy Bunton
I'm currently stuck using MX 6.0 and was wondering if there is a custom tag out there that will function like the wrap() function in 6.1. After searching the Maco site I turned up nothing, but I hear there is such a thing. Jeremy

RE: Wrap custom tag

2005-01-18 Thread Calvin Ward
If at all possible, you want to move to 6.1, there's a number of issues that were resolved with that update. - Calvin -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 8:50 AM To: CF-Talk Subject: Wrap custom tag I'm currently stuck using

Re: Oracle help please

2005-01-18 Thread Frank Mamone
I worked out the syntax quirks and now it looks like this: UPDATE eim_contact SET con_cust_stat_cd = ( SELECT b.pc_status FROM eim_contact a, eim_contact b WHERE a.row_id = b.con_person_uid AND b.con_pr_postn = 'Y' ) Now I get : Single row sub-query returns more than one row. I'm trying to

RE: Wrap custom tag

2005-01-18 Thread Jeremy Bunton
I want to and we do have it on a few other boxes, but the one this app is running on has yet to updated and might not be for a few months yet. I can't recall where I heard or saw it, but I'm sure I have heard of a custom tag that simulates the wrap() in 6.1. Jer -Original Message-

Re: two websites, one Cfusion, sharing sessions

2005-01-18 Thread Bert Dawson
They already *do* share the same application name The problem seems to be with setting the jsession cookie: I go to site-a, get a jsession cookie, then when i follow a link to site-b i need to have the same jsession cookie set for that domain. If i pass the in the URL

RE: CFEclipse Stuido (for lack of a better term)

2005-01-18 Thread Damien McKenna
If anyone is having problems with this I suggest simply re-extracting the files. I had a previous installation of eclipse I forgot to remove before extracting the files, so when I started it up it didn't want to work for me. A simple delete-reextract later and it's all groovy. -- Damien

RE: Stored procedure VS Views

2005-01-18 Thread Andy Ousterhout
Will, I believe that Stored Procs are more efficient since SQL will create execution plans for them, while for views, they have to be created for each execution. Andy -Original Message- From: Will Tomlinson s With everyone's help I'm pretty much wrapping up the functionality of my

RE: two websites, one Cfusion, sharing sessions

2005-01-18 Thread RADEMAKERS Tanguy
The problem seems to be with setting the jsession cookie: I go to site-a, get a jsession cookie, then when i follow a link to site-b i need to have the same jsession cookie set for that domain. it's not a bug, it's a (security) feature - a site can only retrieve cookies it has set itself, so if

RE: US Weather from NWS (was RE: CF-Tag Weather for UK (London)?)

2005-01-18 Thread Russel Madere
Has anyone come up with a solution to the problem of accessing the forecasts? Russel Madere Webmaster 504.832.9835 SunShine Pages by EATEL www.sunshinepages.com -Original Message- From: Russel Madere Sent: Wednesday, January 05, 2005 10:53 AM To: CF-Talk Subject: RE: US Weather from

colums and charting

2005-01-18 Thread Uwe Degenhardt
Hi list, has anybody already done this kind of graph with CFMX 6.1 ? http://212.6.196.230/column_chart.jpg Thanks for infos. Uwe ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

RE: wussy-wig editor

2005-01-18 Thread Tangorre, Michael
From: Thomas Chiverton [mailto:[EMAIL PROTECTED] On Thursday 13 Jan 2005 11:57 am, Adam Haskell wrote: I highly doubt that this program is going to lock a person into It requires your customer to have a Windows O/S to use your web site. windows...and could you show some perfectly good

MSSQL Query based on a date

2005-01-18 Thread Burns, John D
I'm having some strange problems with a query I'm writing. I've got data that can be inserted into a table quite a few times within a minute. I'm trying to refresh a user's view automatically by passing in the last date/time that the person got data from the server. I'm doing a simple query and

Re: Wrap custom tag

2005-01-18 Thread Charlie Griefer
http://www.cflib.org/udf.cfm?ID=249 On Tue, 18 Jan 2005 09:14:38 -0500, Jeremy Bunton [EMAIL PROTECTED] wrote: I want to and we do have it on a few other boxes, but the one this app is running on has yet to updated and might not be for a few months yet. I can't recall where I heard or saw it,

RE: Wrap custom tag

2005-01-18 Thread Ewok
Library http://cflib.org/library.cfm?ID=1 or specificly... http://cflib.org/udf.cfm?ID=249 -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 8:50 AM To: CF-Talk Subject: Wrap custom tag I'm currently stuck using MX 6.0 and was wondering

RE: wussy-wig editor

2005-01-18 Thread Michael T. Tangorre
From: Tangorre, Michael [mailto:[EMAIL PROTECTED] That still uses font tags! Sorry about the late post.. That was stuck in the outbox! ~| Logware: a new and convenient web-based time tracking application. Start tracking

Re: two websites, one Cfusion, sharing sessions

2005-01-18 Thread Bert Dawson
Is this something you've found that works, of is it the official answer? Apart from being such a PITA as to not really be an option, i've done a quick test and it looks like this is not going to would with sticky sessions in a cluster - the request with the jsession in the URL gets passed to

Re: MSSQL Query based on a date

2005-01-18 Thread Adam Howitt
Try this: fullDT = createDateTime(datePart('',userDate), datePart('m',userDate), datePart('d',userDate), datePart('h',userDate), datePart('n',userDate), datePart('s',userDate)) then your comparison becomes datefield #fullDt# Alternatively there is the createODBCDateTime function. I know

RE: MSSQL Query based on a date

2005-01-18 Thread Paul
Is your column datatype a smalldatetime by chance? That only uses precision to the minute. -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 7:47 AM To: CF-Talk Subject: MSSQL Query based on a date I'm having some strange problems with a

Why wont this cfcookie set?

2005-01-18 Thread Phill B
I have this in my page. cfif NOT IsDefined(cookie.dealerName) cfcookie name=cookie.dealerName value=Dealer Name expires=30 /cfif cfoutput#cookie.dealerName#/cfoutput Then when I try to output the cookie value I get an undefined in cookie error. Am I missing some thing here? -- Phillip

Re: US Weather from NWS (was RE: CF-Tag Weather for UK (London)?)

2005-01-18 Thread Claude Schneegans
Has anyone come up with a solution to the problem of accessing the forecasts? I have worked out a small example of the use of my custom tag CFX_mapData here: http://www.contentbox.com/claude/customtags/mapData/USWeatherMaps.cfm?m=1 (BTW it's damn cold today! ;-) I simply CFHTTP every hour one

Re: Why wont this cfcookie set?

2005-01-18 Thread Howie Hamlin
When you set a cookie it is available on subsequent pages from the page on which you set it (if the browser has cookies enabled). HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail

Re: Why wont this cfcookie set?

2005-01-18 Thread Bryan Stevenson
CFCOOKIE adds the COOKIE scope by itself So you have actually set cookie.cookie.dealerName ;-) HTH Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web:

cfcontent error

2005-01-18 Thread Tim Laureska
Has anyone seen this type of error with cfcontent before and what this means: Error Diagnostic Information Context validation error in tag CFCONTENT The tag is not correctly positioned relative to other tags in the template: tag CFCONTENT must have empty content. This means that there can be no

RE: Why wont this cfcookie set?

2005-01-18 Thread COLLIE David
Are you using cflocation on the same page? http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_17023 Maybe the cookie is not being set -- dc ~| Logware: a new and convenient web-based time tracking application.

Re: Why wont this cfcookie set?

2005-01-18 Thread Bryan Stevenson
You sure about that Howie? I've set lots of cookies that I've used further along in the same file.but anyway...that wasn't Phil's problem ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell:

RE: Why wont this cfcookie set?

2005-01-18 Thread RADEMAKERS Tanguy
because cookie. is the scope, not part of the cookie name. try this: cfif NOT IsDefined(cookie.dealerName) cfcookie name=dealerName value=Dealer Name expires=30 /cfif cfoutput#cookie.dealerName#/cfoutput /t -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent:

Re: Why wont this cfcookie set?

2005-01-18 Thread Phill B
I've tried setting it and viewing it on the same page and subsequent pages but it wont work. :-\ On Tue, 18 Jan 2005 10:44:51 -0500, Howie Hamlin [EMAIL PROTECTED] wrote: When you set a cookie it is available on subsequent pages from the page on which you set it (if the browser has cookies

Re: Why wont this cfcookie set?

2005-01-18 Thread Phill B
STUPID! STUPID! STUPID! Got to love the simple things that hang you up. Thanks. On Tue, 18 Jan 2005 07:46:19 -0800, Bryan Stevenson [EMAIL PROTECTED] wrote: CFCOOKIE adds the COOKIE scope by itself So you have actually set cookie.cookie.dealerName ;-) HTH Cheers Bryan Stevenson

Re: Why wont this cfcookie set?

2005-01-18 Thread Howie Hamlin
You're right - that wasn't Phil's problem. However, when you set a cookie in a page it is returned as a Set-cookie header to the browser when the content of the page is returned. If the browser accepts the cookie then the cookie is sent as part of the browser request to the server so a

Re: two websites, one Cfusion, sharing sessions

2005-01-18 Thread Bert Dawson
On Tue, 18 Jan 2005 15:29:50 +0100, RADEMAKERS Tanguy [EMAIL PROTECTED] wrote: it's not a bug, it's a (security) feature - a site can only retrieve cookies it has set itself, I know that. I need to get to a situation where 2 sites have the same jsessionid. It gets set automatically on site-a,

RE: MSSQL Query based on a date

2005-01-18 Thread Burns, John D
Nope, the column type is datetime. John Burns Certified Advanced ColdFusion MX Developer AI-ES Aeronautics, Web Developer -Original Message- From: Paul [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 10:48 AM To: CF-Talk Subject: RE: MSSQL Query based on a date Is your

RE: two websites, one Cfusion, sharing sessions

2005-01-18 Thread RADEMAKERS Tanguy
If i set the cookie on site-b (using the value in url.jsessionid) manually using CF then the $ signs are helpfully escaped to %24. is that because it came from the URL? Try the two following tricks: - use UrlDecode() when writing url.jsessionid to the cookie or - have siteA write a cookie for

RE: two websites, one Cfusion, sharing sessions

2005-01-18 Thread Dave Watts
is that because it came from the URL? Try the two following tricks: - use UrlDecode() when writing url.jsessionid to the cookie or - have siteA write a cookie for siteB (using cfcookie domain=... syntax) and vice versa (siteB writes cookies for siteA) The first option should work. The

RE: Why wont this cfcookie set?

2005-01-18 Thread Dave Watts
Are you using cflocation on the same page? http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_17023 Maybe the cookie is not being set Just as a heads-up, this is no longer an issue with CFMX, which will let you use CFCOOKIE and CFLOCATION within the same page. The tech note

RE: cfcontent error

2005-01-18 Thread Dave Watts
Has anyone seen this type of error with cfcontent before and what this means: Error Diagnostic Information Context validation error in tag CFCONTENT The tag is not correctly positioned relative to other tags in the template: tag CFCONTENT must have empty content. This means that there

Encryption Problem

2005-01-18 Thread Jim Rathmann
I have an encryption problem. I just started using the encrypt/decrypt functions in cold fusion to encrypt my SQL passwords. I am having a problem with a certain password. The password encrypted is: K9Hans0085 which is fine to me but when I decrypt it I get the following returned: K9Hans0084.

OT: Reccomendation mail server reccomendation

2005-01-18 Thread Jon Block
This one is off topic... Sorry but thank you! I have about 100 domains that I'm doing mail forwarding for. I provide email forwarding for each of the domains with my current mail server by hand :=( I'm constantly getting request to do things like: Please forward [EMAIL PROTECTED] to [EMAIL

Re: Encryption Problem

2005-01-18 Thread Claude Schneegans
ToBase64(Encrypt(Pass,Key)) and Decrypt is ToBinary(decrypt(Pass,Key). If you use ToBase64 after encrypt, you shoud use ToBinary BEFORE decrypt: decrypt(ToBinary(Pass,Key)) -- ___ REUSE CODE! Use custom tags; See

Re: Encryption Problem

2005-01-18 Thread Jim Rathmann
My mistake when I do the decrpt it is as follows: CFSET DataString = ToString(ToBinary(trim(Password))) CFSET Password = decrypt(trim(DataString),key) Sorry for the confusion. ~| Find out how CFTicket can increase your

RE: two websites, one Cfusion, sharing sessions

2005-01-18 Thread RADEMAKERS Tanguy
The first option should work. after some quick experimentation. it doesn't :( cfcookie name=test_reencoded value=#URLDecode()# yields: Set-Cookie: TEST_REENCODED=%24%24%24%24%24%24%24%24; path=/tanguyland/ what does though, is doing it by hand: cfheader

RE: Reccomendation mail server reccomendation

2005-01-18 Thread Burns, John D
I use iMail and it gives some potential for scripting various needs, but leaves much to be desired. Someone was talking a couple of weeks back about a new mail server that hostmysite.com (I think) is using to replace all of their iMail servers. It was very inexpensive and looked to be quite

Re: two websites, one Cfusion, sharing sessions

2005-01-18 Thread Bert Dawson
I tried UrlDecode() , and replace, but using cfcookie or cfset cookie always seems to escape the $. Is there a way to manually set the cookie without using javascript or CF? test cfcookie name=TEST value=$ cfcookie name=TEST1 value=#URLdecode('%24')# cfset cookie.TEST2 = $ script

Re: Oracle help please

2005-01-18 Thread Rebecca Wells
Just remove the From line, i.e.: UPDATE TABLE1 SET TABLE1.FIELD = TABLE2.FIELD WHERE TABLE1.KEY = TABLE2.KEY AND TABLE1.FIELD = 'Y' ~| Logware: a new and convenient web-based time tracking application. Start tracking and

Re: cfcontent error

2005-01-18 Thread Tim Laureska
thanks Dave... it appears to be a CF version problem... its throws the error on CF5 not CFMX -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 04:47 PM To: 'CF-Talk' Subject: RE: cfcontent error Has anyone seen this type of error with

RE: cfcontent error

2005-01-18 Thread Dave Watts
thanks Dave... it appears to be a CF version problem... its throws the error on CF5 not CFMX While that may be true, the code as written doesn't appear to be correct on either version. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

RE: CF Text Support App?

2005-01-18 Thread Rick Faircloth
Hi, Jon... The app would actually be used for one-on-one counseling, much like tech support apps work...no video...just basically text messaging. Is there a way to do this just in CF? Or would Flash / Flash Communication Server be needed? I saw a tag in the Developer's Exchange called

Re: Oracle help please

2005-01-18 Thread Frank Mamone
TABLE2 is actually the same table so I need to use an alias. Without a from I cannot give it an alias name. Thanks. -Frank On Tue, 18 Jan 2005 12:38:48 -0400, Rebecca Wells [EMAIL PROTECTED] wrote: Just remove the From line, i.e.: UPDATE TABLE1 SET TABLE1.FIELD = TABLE2.FIELD WHERE

Re: two websites, one Cfusion, sharing sessions

2005-01-18 Thread Bert Dawson
On Tue, 18 Jan 2005 18:13:02 +0100, RADEMAKERS Tanguy [EMAIL PROTECTED] wrote: what does though, is doing it by hand: cfheader name=Set-Cookie value=TEST_BYHAND=;path=/tanguyland/ yields Set-Cookie: TEST_BYHAND=;path=/tanguyland/ Cool - that does the trick. Now the

Re: Oracle help please

2005-01-18 Thread Jochem van Dieten
Frank Mamone wrote: TABLE2 is actually the same table so I need to use an alias. Without a from I cannot give it an alias name. If TABLE1 and TABLE2 are the same table, your example: UPDATE TABLE1 SET TABLE1.FIELD = TABLE2.FIELD FROM TABLE1, TABLE2 WHERE TABLE1.KEY =

Re: IE6-SP1 (MS04-040 Update) Locks JRun Admin

2005-01-18 Thread Adrocknaphobia
Am I the only person in the world dealing with this issue? Or do subsequent IE patches resolve this issue? -Adam On Mon, 17 Jan 2005 15:00:33 -0500, Adrocknaphobia [EMAIL PROTECTED] wrote: FYI: JRun Admin console locks up Internet Explorer after applying the following IE6 SP1 security

Re: Encryption Problem

2005-01-18 Thread Jim Rathmann
My mistake when I do the decrypt it is as follows: CFSET DataString = ToString(ToBinary(trim(Password))) CFSET Password = decrypt(trim(DataString),key) Sorry for the confusion. You need to change encrypted to binary then to string then you can decrypt. That is where my problem exists, well I

Re: Oracle help please

2005-01-18 Thread Adrocknaphobia
I recommend reading Chapter 6 of Oracle Database 10g SQL or your version equivalent. http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_108a.htm#2068235 -Adam On Tue, 18 Jan 2005 19:18:01 +0100, Jochem van Dieten [EMAIL PROTECTED] wrote: Frank Mamone wrote:

Sell used Macromedia software?

2005-01-18 Thread Damien McKenna
Is it legal to sell used Macromedia software, i.e. something I don't use anymore? -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h ~|

OT: What to do with unused copy of MM Director 6

2005-01-18 Thread Damien McKenna
Related to the previous question... would a full unopened box of Macromedia Director 6 Multimedia Studio still be useful today? -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h

RE: Reccomendation mail server reccomendation

2005-01-18 Thread Emmet McGovern
Host My Site is using Smarter Mail now. Inexpensive and has a pretty nice webmail interface. We use mailenable. It has simple config files that are easy to write to with cf. It's also free. http://smartertools.com/ http://www.mailenable.com emmet -Original Message- From: Burns,

RE: cfcontent error

2005-01-18 Thread Tim Laureska
Yes, I know... I removed the filename reference in the cfcontent tag and its behaving -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 12:51 PM To: CF-Talk Subject: RE: cfcontent error thanks Dave... it appears to be a CF version problem...

RE: two websites, one Cfusion, sharing sessions

2005-01-18 Thread RADEMAKERS Tanguy
Just out of interest, does anyone else share jsessions over several domains in this (or any other) way? we share jsessions across a cluster (we run CFMX in weblogic) but the sessions are replicated by weblogic - as i understand it, that's the basic benefit behind nesting cf sessions inside j2ee

Double tick confusion

2005-01-18 Thread Eric Creese
I am a little confused on the double tick. I am aloowing users to store a () in a product name to indicate inches( 1x2x4) but when they go to edit the product forinstance and display the name in the form everything after the first () is gone. How do I correct this? I thought I took care of this

RE: two websites, one Cfusion, sharing sessions

2005-01-18 Thread RADEMAKERS Tanguy
ooops, ignore that - didn't see the over several domains - thought it was a straight up clustering question. my bad. -Original Message- From: RADEMAKERS Tanguy Sent: Tuesday, January 18, 2005 7:46 PM To: 'cf-talk@houseoffusion.com' Subject: RE: two websites, one Cfusion, sharing

MySql to Sql Server Convert LIMIT

2005-01-18 Thread Lori
Anyone have any ideas of the best way to do a LIMIT in Sql Server? I know sql server does not have an equivalant. I have an idea of what I want to do but wanted to get other ideas too. ~Lori ~| Logware: a new and convenient

RE: Double tick confusion

2005-01-18 Thread Michael T. Tangorre
From: Eric Creese [mailto:[EMAIL PROTECTED] I am a little confused on the double tick. I am aloowing users to store a () in a product name to indicate inches( 1x2x4) but when they go to edit the product forinstance and display the name in the form everything after the first () is gone.

RE: MySql to Sql Server Convert LIMIT

2005-01-18 Thread Eric Creese
LIMIT like the number of records you return If so SQL server has TOP [number of records]. Not sure if that is what you are looking for? -Original Message- From: Lori [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 12:51 PM To: CF-Talk Subject: MySql to Sql Server Convert

RE: Double tick confusion

2005-01-18 Thread Eric Creese
thanks -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 12:54 PM To: CF-Talk Subject: RE: Double tick confusion From: Eric Creese [mailto:[EMAIL PROTECTED] I am a little confused on the double tick. I am aloowing users to store

Re: wussy-wig editor

2005-01-18 Thread Adrocknaphobia
Why bother replying? -Adam On Wed, 12 Jan 2005 15:00:39 +, Thomas Chiverton [EMAIL PROTECTED] wrote: On Wednesday 12 Jan 2005 00:18 am, dave wrote: http://xstandard.com/page.asp?p=A4372B00-8D7F-4166-977C-64E5C4E3708Es=E638 AEB0-ADC1-448B-9CE5-FB8AAE1FE55B Why bother looking at a

RE: Double tick confusion

2005-01-18 Thread RADEMAKERS Tanguy
input type=text name=size value=cfoutput#HTMLEditFormat(1x2x4)#/cfoutput watch all those you need to escape the in the call to the function. /t -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 7:54 PM To: CF-Talk Subject: RE:

Re: Stored procedure VS Views

2005-01-18 Thread Adrocknaphobia
Here is the skinny. A stored procedure is faster than an inline query because it is precompiled on the database and most databases make 'plans' on the fastest way to execute the query. A view is compiled as well. However when you query a view it executes the view's sql then it executes your sql

Re: MySql to Sql Server Convert LIMIT

2005-01-18 Thread Lori
Like starting from 200 and going to 300. ~Lori - Original Message - From: Eric Creese [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, January 18, 2005 1:54 PM Subject: RE: MySql to Sql Server Convert LIMIT LIMIT like the number of records you return If so SQL

Re: Oracle help please

2005-01-18 Thread Frank Mamone
Definately not what I want. This is an ETL job. So the system exports the data from several tables and denormalizes it. Then I need to do the updates and re-import. So as you can imagine there will be a lot of empty rows. Here is what I have: ROW_ID CON_PERSON_UID PC_STATUS CON_CUST_STATUS

Re: MySql to Sql Server Convert LIMIT

2005-01-18 Thread Adam Howitt
You can do successive finds e.g. get top 300, order by the reverse of your original pull then do top 100 on that recordset. This, of course, assumes that you don't have a unique row identifier to do a select where id between 200 and 300. For example: SELECT TOP 100 t1.* FROM (SELECT TOP 300

display number of pages left

2005-01-18 Thread Daniel Kessler
I have a search (http://hhp.umd.edu/studentservices/internships.cfm). If I have alot of hits in the search results, want to display the first 25 and then do page 1,2,n after that. Is the idea that I just search for the first 25 with maxrows=25 and then follow a search for the total number to

Re: display number of pages left

2005-01-18 Thread Greg Morphis
Do your query and then loop over it.. using cfloop with startrow and maxrow attributes On Tue, 18 Jan 2005 14:19:34 -0500, Daniel Kessler [EMAIL PROTECTED] wrote: I have a search (http://hhp.umd.edu/studentservices/internships.cfm). If I have alot of hits in the search results, want to display

Re: display number of pages left

2005-01-18 Thread Adam Howitt
I just posted this in response to a different question. A note on your use of #preservesinglequotes# here - that is inherently unsafe and should really be replaced by a cfqueryparam. As it stands your find text could allow a malicious SQL injection to delete tables or pull back login names

Re: display number of pages left

2005-01-18 Thread Adam Howitt
That isn't really a good idea since you are asking for all your records into CF before you manipulate the results. The result is an app which doesn't scale well and chokes on simple paging query. Greg Morphis wrote: Do your query and then loop over it.. using cfloop with startrow and maxrow

Re: Oracle help please

2005-01-18 Thread Aaron Rouse
I am surprised something like the example I emailed earlier would not work for this. Though maybe I am skimming the problem too much. I update our LDAP table off of itself via the merge statement. My guess on 9i MERGE INTO EIM_CONTACT A USING ( SELECT B.PC_STATUS, B.CON_PERSON_UID

OT: Thanks for CFEclipse!

2005-01-18 Thread Damien McKenna
I just wanted to thank everyone involved in CFEclipse, it really is a great system, especially now with the all-in-one archive with the plugins. Thanks! :-) -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h

Re: Oracle help please

2005-01-18 Thread Jochem van Dieten
Frank Mamone wrote: ROW_ID CON_PERSON_UID PC_STATUS CON_CUST_STATUS CON_PR_POSTN I need to put the value of PC_STATUS into CON_CUST_STATUS where CON_PERSON_UID matches ROW_ID and marked as CON_PR_POSTN = 'Y' Remember this is denormalized data. So, essentially I need to do a self

Thanks! Was RE: CFmail and receiving 1 copy

2005-01-18 Thread James Watkins
I would like to thank all the great responses on this. I elected to do the separate emails that Jared suggested. Seemed to work best with my Oracle database. Jim W -Original Message- From: James Watkins [mailto:[EMAIL PROTECTED] Sent: Friday, January 14, 2005 7:33 AM To: CF-Talk

Re: Oracle help please

2005-01-18 Thread Frank Mamone
You are right about that. I tried it on MS with another field giving a unique complex key. The denormalized tables are confusing the hell out of me and I may be making the a big assumption about what the 'Y' flag really means. Since, the system puts the Y there, that is, there is no

Re: Sell used Macromedia software?

2005-01-18 Thread Adam Haskell
If it is not something you have purchased an upgrade license for I wouldn't think there would be any legal problems selling old copies. Adam H On Tue, 18 Jan 2005 13:34:52 -0500, Damien McKenna [EMAIL PROTECTED] wrote: Is it legal to sell used Macromedia software, i.e. something I don't use

RE: Why wont this cfcookie set?

2005-01-18 Thread Ewok
Well take this... cfcookie name=duh value=duhhuh expires=20 cfoutput#cookie.duhhuh#/cfoutput Put it in a template and hit it once... don’t refresh. Then close your browser and take just the cfcookie... tag out... cfoutput#cookie.duh#/cfoutput And visit the page again. The content of the

RE: Sell used Macromedia software?

2005-01-18 Thread John Cummings
Macromedia has a section on the website that talks about transfer of product ownership from one party to another. This can be done in accordance with the license agreement for the product in question. More information is available here: John Cummings Principal Engineer ColdFusion Product

Re: Encryption Problem

2005-01-18 Thread Claude Schneegans
not sure what else to do. The trim function is useless here, and may even be the cause of the problem I'm not sure if the function ToBase64 can produce a trailing space at the end, but if it is the case, it wont be the same string that will be decrypted. --

  1   2   >