Re: Disaster recovery license for Coldfusion

2006-09-01 Thread Andy Allan
There was a change in the licensing between MX6.1 and MX7. As of MX7, although the licensing is still per processor, the 2 processors must be on the same physical server. With MX6.1 you could split the license over two single CPU servers. On 31/08/06, Casey Dougall [EMAIL PROTECTED] wrote: MX7

Re: Problem with uploading Zip file. Anyone please help me!!

2006-09-01 Thread libo bian
cfhttp method=post url=http://www./upload.html; username= password= resolveurl=yes multipart=Yes cfhttpparam name=UploadFile file=D:\Websites\scripts\ebaymotorpro\AETA89337\ebaymotorpro_AETA89337.zip type=file mimetype=application/zip /cfhttp -- Alan Rother Macromedia

Flex 2 - painfully slow...

2006-09-01 Thread D F
So I'm investigating Flex 2 and its painfully slow. Didn't seem to bad at first but gradually got worse and worse. Has anyone else been experiencing this? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: Rich text Editors

2006-09-01 Thread Tom King
Thanks all for the pointers: I've now successfully integrated TinyMCE into my Custom made CF CMS :) Its really is VERY good... Ta T On 1 Sep 2006, at 05:35, Paul Hastings wrote: James Holmes wrote: Is that something FCK does much better? TinyMCE is pretty good too. I prefer it to FCK.

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
I have always seen Flex to be slow, certainly as the apps get larger and more complex. Be prepared for massive memory consumption and increading load times. I remember trying the IF mortgage calculator... Jeez that was slow. Note: Most of my dippings have been in Flex 1.x and I thought Flex 2

Using ParameterExists on MX7

2006-09-01 Thread Ken
Hi... just wondering how CF MX7 reacts using legacy code that includes deprecated tags/functions like ParameterExists etc. Would it generate error messages, or would it process the pages ignoring the deprecated code? - K ~|

RE: Disaster recovery license for Coldfusion

2006-09-01 Thread Peterson, Chris
Russ, That's the ticket, I think I am going that route. Then I can sync everything daily and just swap over when / if disaster strikes. Excellent idea, one of those 'why didn't I think of that' ones!! Chris Peterson -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent:

Re: Using ParameterExists on MX7

2006-09-01 Thread Robertson-Ravo, Neil (RX)
It will still work as far as I know, I doubt it will ever be removed? You can stil call cfa tags I think! This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It

Re: Problem with uploading Zip file. Anyone please help me!!

2006-09-01 Thread Casey Dougall
Alan added multipart=Yes to your cfhttp string. On 9/1/06, libo bian [EMAIL PROTECTED] wrote: cfhttp method=post url=http://www./upload.html; username= password= resolveurl=yes multipart=Yes cfhttpparam name=UploadFile

Re: Flex 2 - painfully slow...

2006-09-01 Thread D F
I do only have 512 ram on this dual core laptop plus running other applications so that may explain it. But none of my other apps grind to almost a complete halt like Flex 2 does. Its not like I'm into a heavy app either, I'm just going through the basic lessons. Sometimes I'm waiting for

Re: Problem with uploading Zip file. Anyone please help me!!

2006-09-01 Thread libo bian
Alan added multipart=Yes to your cfhttp string. On 9/1/06, libo bian [EMAIL PROTECTED] wrote: I have tried that as well, but still no luck? anymore suggestions? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
I have 2GB RAM, and it can still drag. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be

OT: SQL Server CPU Utilization maxes at 25%

2006-09-01 Thread Rick Root
I have a fairly large bulk insert DTS task in SQL Serve that loads 5 gig or so of data into our database every morning. It drops the original tables, bulk inserts the data, then recreates all the indexes. No logging, etc. I'm trying to figure out a way to improve the speed of this process -

Re: Quick Question

2006-09-01 Thread Teddy Payne
#chr(10)##chr(13)# will simulate a carriage return combination. Then when you need to modify the string that has delimeters in it, you can use ListChangeDelims to change delimeters or StripCR to yank out the trailing 10-13 comination. Teddy

Re: Flex 2 - painfully slow...

2006-09-01 Thread Rick Root
D F wrote: So I'm investigating Flex 2 and its painfully slow. Didn't seem to bad at first but gradually got worse and worse. Has anyone else been experiencing this? Are you referring to Flex Builder, or actual Flash 9 / Actionscript 3 apps that Flex Builder 2 produces? I've found Flex

Re: help! coding for point of sales or cash bills

2006-09-01 Thread Teddy Payne
Sherry, So are you just trying to add one record at a time to a database? Teddy On 8/31/06, Sherry Qiu [EMAIL PROTECTED] wrote: Im a beginner for coldfusion but have to rush out a simple program for point of sales. The program has to include an order table with one row as default (data

Re: OT: SQL Server CPU Utilization maxes at 25%

2006-09-01 Thread Robertson-Ravo, Neil (RX)
5GB Every morning?! All new data? This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It

CFcookie...am I not using it correctly?

2006-09-01 Thread Andy Matthews
There's a flash video on the front page of my company website. The boss wants it to play straight off the first time you visit, then go to a still frame with a play button the second (and any time afterwards). So I thought to myself, cfcookie would be a great idea. I've got this code at the top

Re: OT: SQL Server CPU Utilization maxes at 25%

2006-09-01 Thread Jim Wright
Rick Root wrote: I have a fairly large bulk insert DTS task in SQL Serve that loads 5 gig or so of data into our database every morning. It drops the original tables, bulk inserts the data, then recreates all the indexes. No logging, etc. I'm trying to figure out a way to improve the

Re: CFcookie...am I not using it correctly?

2006-09-01 Thread Jim
Put your cfcookie after the flash. Else it will always be 1 when you get to the flash. cfparam name=COOKIE.previousvisitor default=0 fo.addVariable(previousvisitor, cfoutput#COOKIE.previousvisitor#/cfoutput); cfif COOKIE.previousvisitor IS 0 cfcookie name=previousvisitor value=1

Re: Flex 2 - painfully slow...

2006-09-01 Thread Teddy Payne
Which aspect is slow? The inital loading of the swf? Compilation? Just saying it is slow is not really a good indicator or an issue. I do not have any latencies when I compile or load. I asked a few other developers and they are not having speed issue either. Teddy On 9/1/06, Robertson-Ravo,

RE: CFcookie...am I not using it correctly?

2006-09-01 Thread Andy Matthews
Damn... I would say that it was 3am when I did that yesterday, but I can't even use that excuse. Thanks Jim. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original

Undeliverable

2006-09-01 Thread Orlini, Robert
Hello, How come I get this error in the mail log? Error,632,09/01/06,09:36:32,,Failed to send the spooled mail file, C:\CFUSION\Mail\spool\6FA.cfmail. SMTP server replied 5.5.4 Invalid Address Moved file to C:\CFUSION\Mail\undelivr\716.cfmail. The emails in the SQL dbase are correctly

OT: Enterprise Architect 6.1 problem

2006-09-01 Thread Victor Moore
Hi, I have installed a trial version of Enterprise Architect and when trying to connect to the db server, if I test the connection it' s OK, but when finishing with the wizard it gives an error: Enterprise Architect has experienced a network error and will close down. I am trying to use

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
For me it was the loading of the Application itself, though to be honest, it doesn't bother me anymore as I just close the browser if I encounter a Flex app these days (not that there are many). This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL,

Re: Flex 2 - painfully slow...

2006-09-01 Thread D F
The slowest things for me were: 1. Rebuilding the application space... 2. Setting a document to be the default application page... 3. Adding a new mxml page. On Friday 01 September 2006 13:05, D F wrote: I do only have 512 ram on this dual core laptop plus running other applications so

Re: Method for printing labels from browser?

2006-09-01 Thread Claude Schneegans
I *think* it uses a COM object to utilize Word, but I'm not sure about that. Actually - at least the version I use - creates an RTF document in line, but it uses CFSAVECONTENT which was new with CF 5, so it won't wort with CF 4.5 However, I think any average programmer should be able to

Re: Method for printing labels from browser?

2006-09-01 Thread Claude Schneegans
just have to see how much *slightly* really is. It uses CFSAVECONTENT which was new with CF 5, and CFSCRIPT The first can easily be worked around, for the second, I don't remember if it was available under 4.5, but here again, CFscripts can be reprogrammed using tags. Anyway, this tag is free,

Re: Flex 2 - painfully slow...

2006-09-01 Thread Teddy Payne
You can speed up Flex Builder by regularily defragmenting the drive that the application runs on. Teddy On 9/1/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 01 September 2006 13:05, D F wrote: I do only have 512 ram on this dual core laptop plus running other applications so that

RE: CFLOCK problem

2006-09-01 Thread Ken Ferguson
I think that the key here is that this is an indicator of how the rest of the code is likely written. While it's silly and is likely to slow things down a bit, I doubt seriously that this one useless bit of code is causing the server to crash. However, I'd be willing to bet that the rest of the

Re: Rich text Editors

2006-09-01 Thread Jose Diaz
Cool, I also recently integrated TinyMCE into my blogcfc and Im really happy with it. Jose Diaz www.bleachedbug.com On 9/1/06, Tom King [EMAIL PROTECTED] wrote: Thanks all for the pointers: I've now successfully integrated TinyMCE into my Custom made CF CMS :) Its really is VERY good...

RE: Undeliverable

2006-09-01 Thread Orlini, Robert
Thanks Jochem. The problem was that I had to addresses on the from field in my code. I removed one and it worked fine. Robert O. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 9:33 AM To: CF-Talk Subject:Re:

Re: Method for printing labels from browser?

2006-09-01 Thread Claude Schneegans
It uses CFSAVECONTENT which was new with CF 5, and CFSCRIPT ooops, sorry, it also uses CFWDDX, also new with CF 5. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
Hmm, you shouldn't have to do this - this is not really a good thing or selling point of Flex Builder (though, at least it is better than Flex Builder 1!), but it is good practice to defrag regularly. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey,

Re: ColdFusion and script.aculo.us

2006-09-01 Thread James Holmes
Via MXAJAX, yes I'm just getting into it. On 9/1/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Anyone using it with script.aculo.us? Are you calling CFCs much the same way as you can with AjaxCFC etc? -- CFAJAX docs and other useful articles: http://www.bifrost.com.au/blog/

Re: Flex 2 - painfully slow...

2006-09-01 Thread Teddy Payne
Defragmentation is not a selling point of Flex Builder. Eclipse based IDEs start quicker when the data segments are less fragmented. This is an observation I made on a Windows XP machne over time. I run several versions of Eclipse based IDEs and each one showed noticeably less workbench load

Re: OT: SQL Server CPU Utilization maxes at 25%

2006-09-01 Thread Rick Root
Robertson-Ravo, Neil (RX) wrote: 5GB Every morning?! All new data? We're dumping our entire mainframe db2 database every night and FTPing them to the SQL Server. We don't have the ability to do replication, and writing processes on the mainframe that would only dump the data that changed

Re: ColdFusion and script.aculo.us

2006-09-01 Thread Robertson-Ravo, Neil (RX)
No, I mean, are you performing (and can you) CFC calls via script.aculo.us? Looking around the offerings, this one seems to be the best, most features etc. (outside of the larger ones). This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL,

Re: OT: SQL Server CPU Utilization maxes at 25%

2006-09-01 Thread Rick Root
Jim Wright wrote: Is this perhaps a 4 CPU machine, with Task Manager set to show one graph for all, and with SQL server set to only use one CPU? It's a dual CPU machine with hyperthreading. Yeah, I didn't consider that the single graph would really just show an average. When viewed as 4

Re: Flex 2 - painfully slow...

2006-09-01 Thread Tom Chiverton
On Friday 01 September 2006 15:06, D F wrote: The slowest things for me were: [developer things] Well, there is a lot to be said for making sure your Eclipse (if you are not using Flex Builder 'as is') is up to date, likewise your JVM (I think 1.5.8 just came out) and normal things like

Re: Flex 2 - painfully slow...

2006-09-01 Thread Tom Chiverton
On Friday 01 September 2006 15:07, Robertson-Ravo, Neil (RX) wrote: For me it was the loading of the Application itself, though to be honest, it doesn't bother me anymore as I just close the browser if I encounter a Flex app these days (not that there are many). You shouldn't really be having

Re: Flex 2 - painfully slow...

2006-09-01 Thread Rick Root
Robertson-Ravo, Neil (RX) wrote: For me it was the loading of the Application itself, though to be honest, it doesn't bother me anymore as I just close the browser if I encounter a Flex app these days (not that there are many). Must be just you, because I've never encountered slowness in a

Re: ColdFusion and script.aculo.us

2006-09-01 Thread Michael J. Sprague
I've been using Scriptaculous/Prototype with ColdFusion for several months now and am very happy with it. I'm not familiar with how AjaxCFC handles it's calls to CFCs but I typically write cfm pages that call the CFC methods i need and handle and display logic if necessary. If you want to call

Re: Flex 2 - painfully slow...

2006-09-01 Thread Douglas Knudsen
Please be clear on what you are talking about, eh? Are you talking of editing, compiling, executing? Flex Builder can be a hog, its a Eclipse thing. see: http://bugs.sakaiproject.org/confluence/display/ARW/Eclipse+Performance+Tuning+Tips

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
One of the worst as I noted was the IF mortgage calculator... It was awful. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is

Re: Flex 2 - painfully slow...

2006-09-01 Thread D F
I defrag monthly. You can speed up Flex Builder by regularily defragmenting the drive that the application runs on. Teddy On 9/1/06, Tom Chiverton [EMAIL PROTECTED] wrote: ~| Introducing the Fusion Authority Quarterly Update.

Re: Flex 2 - painfully slow...

2006-09-01 Thread Teddy Payne
I suspect this is systemic to each person. I can rebuild application spaces without much latency, assigning a new application root is instant and creating a new MXML file is like adding a new CFML file. I would suggest tingting the environment on another system and see if you have the same

RE: ColdFusion and script.aculo.us

2006-09-01 Thread Adrian Showalter
I use the script.aculo.us to call CFM files which contain the logic to call the CFCs and output formatted HTML results, but I do not use it to call CFCs directly as all of my presentation code is in CFM files.  I also use it for effects and DOM manipulation.  It is possible to call CFCs

RE: Disaster recovery license for Coldfusion

2006-09-01 Thread Russ
If your servers are on a domain, you can use DFS to keep them in sync. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 7:28 AM To: CF-Talk Subject: RE: Disaster recovery license for Coldfusion Russ, That's the ticket, I

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
Weekly for me. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the exclusive

RE: help! coding for point of sales or cash bills

2006-09-01 Thread loathe
You're just looking to do a regular add edit delete application on a single table, or are you looking to have a catalog from which to choose items, and so forth? -Original Message- From: Sherry Qiu [mailto:[EMAIL PROTECTED] Sent: Thursday, August 31, 2006 9:53 PM To: CF-Talk

Re: ColdFusion and script.aculo.us

2006-09-01 Thread James Holmes
MXAJAX contains script.aculo.us as part of its core. It does AjaxCFC style CFC calls. On 9/1/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: No, I mean, are you performing (and can you) CFC calls via script.aculo.us? Looking around the offerings, this one seems to be the best, most

Re: Flex 2 - painfully slow...

2006-09-01 Thread John Dowdell
D F wrote: So I'm investigating Flex 2 and its painfully slow. Didn't seem to bad at first but gradually got worse and worse. Has anyone else been experiencing this? Like others pointed out, in order to turn the above into something answerable, you'd have to replace Flex with something more

Re: ColdFusion and script.aculo.us

2006-09-01 Thread Robertson-Ravo, Neil (RX)
Ah, so it can do everything which script.aculo.us can do out of the box? Isn't MXAJAX still in beta? Stable at the moment? Will have to download it and see if I can make the necessary calls. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL,

Re: ColdFusion and script.aculo.us

2006-09-01 Thread Robertson-Ravo, Neil (RX)
Yeah, when I used cfajax, I could call a CFC from within the JS - just wanted to know if it was possible with .us. But as James noted, seems mxAjax uses Scriptaculous! This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a

using xml as database

2006-09-01 Thread krish P
is it possible to store millions of data in to xml structure instead of using database? is it very sufficient doing this way? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion

Re: using xml as database

2006-09-01 Thread Robertson-Ravo, Neil (RX)
If you want to store as XML then look for an XML database engine. This could act and work as a normal rdbms (though you may need to use XQuery instead of SQL). There are plenty of XML databases out there. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,

Re: Flex 2 - painfully slow...

2006-09-01 Thread Teddy Payne
Each user's utilization of their respective file system will reflect accordingly. Analyze and see ho much red or fragmented files you have and see what time is best for you. There is not right time limit. Your processor and speed of your hard drive will also help with your IDE. The number of

CF Updater 2 problems...

2006-09-01 Thread Kevin Aebig
Hey all, Just so you know, I never patch a machine or software the day the update is released. Mainly because there could be un-foreseen issues, but also so that any kinks that are still around get taken care of as well (revisions). That being said, I waited until now to patch our CF

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
Any externally? Any under medium to heavy load (400-900+ concurrent users)? This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is

RE: Flex 2 - painfully slow...

2006-09-01 Thread Stacy Young
I found nuking antivirus altogether on a development machine helps. As long as you use firefox and don't open exe attachments, you're fine. Been years and haven't had an issue. Dreamweaver days initially prompted me to do this since Symantec didn't like the app all that much! Cheers, Stace

RE: Flex 2 - painfully slow...

2006-09-01 Thread Stacy Young
Number of users should be irrelevant since we're talking about a compiled app running on each clients machine...unless you're indicating your remote calls begin to crawl. Stace -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Friday, September 01,

Re: Flex 2 - painfully slow...

2006-09-01 Thread Rick Root
Robertson-Ravo, Neil (RX) wrote: Any externally? Any under medium to heavy load (400-900+ concurrent users)? That's not really relevant to how a flex app performs on the client, which is what you seem to be having problems with. Otherwise, you're referring to load issues on the server, which

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
What about apps which have to be dynamically compiled - doesn't flex have to recompile each time a static value is dynamically changed? Such as field label - not a value changed via a bind. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL,

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
Anyway, no point in dwelling on the issue :-) I am never going to use Flex either as a developer or a user as far as I know... So in a nutshell... This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,

RE: CF Updater 2 problems...

2006-09-01 Thread Mark Leder
Kevin, I'm having the same problem here with CFChart and have opened a tech support issue with Adobe this past Monday. The only STOPGAP fix Adobe has provided has been to set a CFIDE virtual directory FOR EVERY SITE in IIS 6, pointing to your CFIDE directory (previously I had the CFIDE only in

Re: Flex 2 - painfully slow...

2006-09-01 Thread Rick Root
Robertson-Ravo, Neil (RX) wrote: What about apps which have to be dynamically compiled - doesn't flex have to recompile each time a static value is dynamically changed? Such as field label - not a value changed via a bind. Flex 2 apps are not dynamically compiled. Ever. It's just a .swf that

RE: CF Updater 2 problems...

2006-09-01 Thread Kevin Aebig
I don't know what angers me more... the fact that this issue doesn't exist within the Coldfusion Support area, or that they don't know what's wrong. Please let me know anything that you hear and I'll definitely do the same. Thanks, !k -Original Message- From: Mark Leder [mailto:[EMAIL

FW: hanging thread dump

2006-09-01 Thread Brad Wood
Hey, I'm hoping someone who knows more about Java or how CF works internally help me here. I've been using SeeFusion to monitor my production web servers for a while, and I keep seeing an anomaly I can't explain: A request will come through and do NOTHING for about 600 seconds and then time

Re: Flex 2 - painfully slow...

2006-09-01 Thread Robertson-Ravo, Neil (RX)
Ah, any more, that is it, Flex 1 must have done that :-) Nothing wrong with my comp - far from it. But again, my bad experiences must have been with Flex 1. This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant, Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed

Query Question

2006-09-01 Thread loathe
I have an organization table. There is an org_id and a parent_org_id. I am trying to get all organizations from a certain point down. The environment is DB/2. So far I'm doing: Select org.org_id, org.parent_org_id From organizations org Left join

Re: Query Question

2006-09-01 Thread Barney Boisvert
Have you checked to see if DB/2 supports recursive queries? Most DBs don't, but some do. That'd be the best bet. Otherwise you're stuck with doing the recursion manual: run that query, then run it again for each returned row, repeating until there aren't any more rows. If you have a common

RE: Query Question

2006-09-01 Thread Doug Bezona
This should help: http://tinyurl.com/hee59 -Original Message- From: loathe [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 3:46 PM To: CF-Talk Subject: Query Question I have an organization table. There is an org_id and a parent_org_id. I am trying to get all

OT: Meta redirect?

2006-09-01 Thread Jenny Gavin-Wear
Does anyone know a way to get all requests for a certain sub directory to redirect to route? Thanks, Jenny -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.405 / Virus Database: 268.11.7/434 - Release Date: 30/08/2006

RE: Meta redirect?

2006-09-01 Thread Bobby Hartsfield
Drop an application.cfm in the directory with a cflocation tag in it. ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Jenny Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 3:58 PM To: CF-Talk Subject: OT: Meta

Re: Query Question

2006-09-01 Thread Timothy Heald
Rock :) Wish this were oracle :) That solution for Oracle is sweet. This should help: http://tinyurl.com/hee59 recursion or something in order to go lower than that. I'm beating myself over the head with this one, on a Friday afternoon, any pointers would be much appreciated.

Re: OT: Meta redirect?

2006-09-01 Thread John Beynon
redirect it in IIS/apache...or rewrite the URL with mod_rewrite/isapi_rewrite. On 9/1/06, Jenny Gavin-Wear [EMAIL PROTECTED] wrote: Does anyone know a way to get all requests for a certain sub directory to redirect to route? Thanks, Jenny -- No virus found in this outgoing message.

RE: hanging thread dump

2006-09-01 Thread Dave Watts
Here is a thread dump of what I see (in SeeFusion) while the request is running.  Note, no file names show up-it's like the thread hangs before it even gets to my code. Would uploading a MONDO attachment do this? I think that's possible. You might also want to see what other requests are

RE: Using ParameterExists on MX7

2006-09-01 Thread Dave Watts
Hi... just wondering how CF MX7 reacts using legacy code that includes deprecated tags/functions like ParameterExists etc. Would it generate error messages, or would it process the pages ignoring the deprecated code? Deprecated doesn't mean it won't work. It simply means that it may not

RE: Quick Question

2006-09-01 Thread Dave Watts
chr(10) chr(13) isn't it? On Windows, text files use carriage return/line feed to begin a new line. On Unix, text files use line feed alone, and on Mac Classic text files use carriage return alone. The ASCII code for carriage return is 13, and the code for line feed is 10, so if you want to

RE: Using ParameterExists on MX7

2006-09-01 Thread Dan G. Switzer, II
Hi... just wondering how CF MX7 reacts using legacy code that includes deprecated tags/functions like ParameterExists etc. Would it generate error messages, or would it process the pages ignoring the deprecated code? Deprecated doesn't mean it won't work. It simply means that it may not work

Re: Using ParameterExists on MX7

2006-09-01 Thread Aaron Rouse
Didn't parameterExists() not use quotes where IsDefined() does? Just wanted to point that out because it would be a little more than a simple mass find/replace if quotes had to be added in but nothing a little regex find/replace could not handle. On 9/1/06, Dan G. Switzer, II [EMAIL PROTECTED]

CFinclude and CSS

2006-09-01 Thread coldfusion . developer
All, cfinclude template=../../../info/gogo/header.cfm I trying to create a new page with cficludes for a header and in that header is the css link. How can I view the styles from within that header file? When I try to link or import it from within DreamWeaver MX 2004, I get an error. a

RE: Using ParameterExists on MX7

2006-09-01 Thread Dan G. Switzer, II
Didn't parameterExists() not use quotes where IsDefined() does? Just wanted to point that out because it would be a little more than a simple mass find/replace if quotes had to be added in but nothing a little regex find/replace could not handle. Correct.

Re: CF Updater 2 problems...

2006-09-01 Thread David
What about having the CFIDE folder mapped, but allow no access to root CFIDE folder and Administrator (only allow read and script access to Script and few others)? On 9/1/06, Mark Leder [EMAIL PROTECTED] wrote: Kevin, I'm having the same problem here with CFChart and have opened a tech

Re: cfexecute problem...

2006-09-01 Thread Gabriel Bulfon
Of course if I stop the CF service I can delete the files mannually. Ok if I run mannually oracle) don't release the file handler. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date

Re: Flex 2 - painfully slow...

2006-09-01 Thread Douglas Knudsen
On 9/1/06, Rick Root [EMAIL PROTECTED] wrote: Robertson-Ravo, Neil (RX) wrote: What about apps which have to be dynamically compiled - doesn't flex have to recompile each time a static value is dynamically changed? Such as field label - not a value changed via a bind. Flex 2 apps are

RE: CF Updater 2 problems...

2006-09-01 Thread Snake
There are several things in CFMX that require the CFIDE virtual directory and the JRUNSCRIPTS virtual directory on every site, and this has always been the case. Our control panel creates these by default for every site. CFCHART Flash Remoting CFFORM - Snake -Original Message- From:

Re: Flex 2 - painfully slow...

2006-09-01 Thread Rick Root
Douglas Knudsen wrote: actually you can use FDS and do the dynamic compile thing just like Flex =1.5 Well, from my understanding, it's only compiled the first time the app is loaded - and when the mxml source changes. That's not REALLY dynamic compilation, unless you're dynamically

chat help

2006-09-01 Thread Rick Root
I need some people to join me in the cfopenchat demo chat room. i'm trying to duplicate a bug that only shows up some times for me and I haven't been able to get it to happen at all today. rick ~| Introducing the Fusion

chat help

2006-09-01 Thread Rick Root
I need some people to join me in the cfopenchat demo chat room. i'm trying to duplicate a bug that only shows up some times for me and I haven't been able to get it to happen at all today. http://www.opensourcecf.com/cfopenchat/demo/ rick

Re: Meta redirect?

2006-09-01 Thread Claude Schneegans
Drop an application.cfm in the directory with a cflocation tag in it. I'm not sure application.cfm is called unless the file requested in the HTTP request exists. -- ___ REUSE CODE! Use custom tags; See

Re: Problem using - (hypen) in Verity Searches

2006-09-01 Thread Denny Valliant
Have you tried switching the type of search? I can't remember off-hand, but you might want to try the web one, 'cause it doesn't use all the fancy + - type verity specific stuff. Not sure if that's what's going on, but it's something to try... :De On 8/31/06, Dave Phillips [EMAIL PROTECTED]

Re: File attachment after user error

2006-09-01 Thread Denny Valliant
There is always AJAX. Woot, the other BEST use (besides in-line search filtering) for it. Same page validation. I love it. Should be pretty easy to use existing validation code, even. :den On 8/31/06, Robert Feyerherm [EMAIL PROTECTED] wrote: Maybe there are some possible solutions using

Re: Adding encryption algorithm to MX

2006-09-01 Thread Denny Valliant
On 9/1/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: So, In 7 you can get RSA Encryption? It looks as if you can get just about anyting in 7. There are some docs, but I couldn't figure out how to create a md5 hash that Apache would take for a htpasswd hash... luckily there was a

CF IIS -- any way to treat .html files as .cfm?

2006-09-01 Thread Pete Ruckelshaus
I have a tricky technical problem that I'm trying to solve. I think I could resolve this issue if I was able to process .html files as ColdFusion code. Is there any way to set IIS up to do this? I am using IIS5 CFMX 7 on WinXP (development environment) and Win2K3 Server (well, that's actually

RE: Meta redirect?

2006-09-01 Thread Bobby Hartsfield
Ah, I may have misunderstood. I assumed she meant when ever someone hits any page in the directory. ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Friday, September 01, 2006 9:41 PM

Re: CF IIS -- any way to treat .html files as .cfm?

2006-09-01 Thread Matt Williams
I'm thinking you can have .html, .htm or even .asp handled by the CF server. I could be way off, but go to IIS, WebSite, Properties, HomeDirectory, Configuration. Here you see how file extensions are handled and can edit them. Just change the executable path of the .htm to match that of the .cfm,

Re: Meta redirect?

2006-09-01 Thread Claude Schneegans
I assumed she meant when ever someone hits any page in the directory. OK, but if she wants to redirect when ever someone hits any page in the directory, what would be the purpose of having any page at all in the directory then ? So I assumed that there is no more any file in the directory, and

RE: Meta redirect?

2006-09-01 Thread Bobby Hartsfield
Oh... I can think of a couple reasons to redirect people on requests to any page in a directory. 1 would be due to time sensitive promotions that are currently not valid but will be valid again in the future. You wouldn’t want to delete those files since you'll be using them again and you

  1   2   >