Re: Safe to Upgrade to MX?

2003-07-12 Thread jonhall
Saturday, July 12, 2003, 5:56:41 PM, you wrote: >> Where is this public bug system you speak of? JD> The "MM WishList" is, actually, the bug system: JD> http://www.macromedia.com/support/email/wishform/ JD> Anything put in there is tracked as an issue/request/bug/defect/whatever JD> along with

Re: datasource connections

2003-07-12 Thread Adam Churvis
> Exactly. I agree. My statement was simplistic. No, sir; your statement was patently wrong. I think you still have an idea that there is an inherent relationship between transactions and (regardless of transport mechanism) the timing of requests that arrive at the database. This is simply not

Detecting Parasiteware

2003-07-12 Thread admin
Does anyone know if there is a way to detect if a visitors macjine is infected with parasite ware (like whenu) from CF ? Cheers Richard ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http:/

Re: Php in cf help...

2003-07-12 Thread Ryan Mitchell
Sorry copied the wrong version: Ok so: #ReReplace(cfhttp.FileContent,'[[:alnum:]/]+[[:alnum:]]+\.php+[[:alnum:]:;%- _\.\?/=]+','index.cfm?section=#url.section#&page=#URLEncodedFormat(\0)#','AL L')# Gives me an error saying Missing argument name. wheras: #ReReplace(cfhttp.FileContent,'[[:alnum:]

RE: Safe to Upgrade to MX?

2003-07-12 Thread Jim Davis
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Saturday, July 12, 2003 5:02 PM > To: CF-Talk > Subject: Re: Safe to Upgrade to MX? > > Saturday, July 12, 2003, 2:29:43 PM, you wrote: > > >> -Original Message- > >> From: Bud [mailto:[EMAIL PROTECTE

Re: Safe to Upgrade to MX?

2003-07-12 Thread jonhall
Saturday, July 12, 2003, 2:29:43 PM, you wrote: >> -Original Message- >> From: Bud [mailto:[EMAIL PROTECTED] >> Sent: Saturday, July 12, 2003 2:13 PM >> To: CF-Talk >> Subject: Re: Safe to Upgrade to MX? >> >> >Yes. See the list of known issues on the Macromedia homepage. >> >http://www.m

RE: datasource connections

2003-07-12 Thread Jim Davis
> Jim, > > I'm sorry to say that your entire concept of threading and transactions is > incorrect. I don't mean to hassle you over this, but it's steering people > in the wrong direction. > > Transactions were not created to either manage or account for threading > issues; the transaction occurs

Re: Php in cf help...

2003-07-12 Thread Jim McAtee
Show the code that is generating the error. - Original Message - From: "Ryan Mitchell" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, July 12, 2003 11:38 AM Subject: Php in cf help... > Hello > > Im trying to include a php file within a cold fusion page, and in

Re: How do you

2003-07-12 Thread Ewok
just keep in minde that either (meta refres or js timer) can be turned off, so don't put TOO much dependency on it "Steven Erat" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > >>"I should know this, but I've never had a need for it until now. How do > you force a page refresh every

RE: Safe to Upgrade to MX?

2003-07-12 Thread Jeff Garza
I wouldn't call it an embarrassment, it's a list of know issues. All software has errors in it. There is no such thing as "perfect" software. Try even finding a decent list of "issues" from any of the other big software vendors. With that said, as the document states, these are issues slated for

Re: datasource connections

2003-07-12 Thread Adam Churvis
> It wasn't "ColdFusion Request threading" but rather multi-threading in > general - there are two main reasons DB transactions exist: 1) because > multithreading apps allow concurrent access of resources and 2) to allow for > roll-back processing. > > In other words "since I allow you to do two th

Php in cf help...

2003-07-12 Thread Ryan Mitchell
Hello Im trying to include a php file within a cold fusion page, and in doing so replace all links within the page so that they refer back to the cold fusion page calling the php file... Hope that made sense... So anyways, im doing a cfhttp of the file, and then with the result doing this... #Re

RE: Safe to Upgrade to MX?

2003-07-12 Thread Jim Davis
> -Original Message- > From: Bud [mailto:[EMAIL PROTECTED] > Sent: Saturday, July 12, 2003 2:13 PM > To: CF-Talk > Subject: Re: Safe to Upgrade to MX? > > >Yes. See the list of known issues on the Macromedia homepage. > >http://www.macromedia.com/support/coldfusion/ts/documents/tn18325.htm

RE: datasource connections

2003-07-12 Thread S . Isaac Dealey
> Thanks. I rarely take anything literally. ;^) > In general I try (try being the operative word) to explain > things as simply as possible without bringing up the details.. The quote I like on this is from Einstein: "Everything should be made as simple as possible, but not simpler." s. isaa

RE: datasource connections

2003-07-12 Thread Jim Davis
> My "Huh?" was not because I don't understand transactions (trust that I > do), > but was instead a shocked plea for you to explain how you linked threading > to transactions. You are way off base here, Jim; transactional isolation > and ColdFusion request threading have almost nothing to do with

RE: datasource connections

2003-07-12 Thread Jim Davis
Thanks. I rarely take anything literally. ;^) In general I try (try being the operative word) to explain things as simply as possible without bringing up the details... but you're right, perhaps "threads" was the wrong to use. Although I always (obviously incorrectly) considered processes to be

Re: Safe to Upgrade to MX?

2003-07-12 Thread Bud
>Yes. See the list of known issues on the Macromedia homepage. >http://www.macromedia.com/support/coldfusion/ts/documents/tn18325.htm That's an embarrassment. -- Bud Schneehagen - Tropical Web Creations, Inc. _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ Web Based Solutions / eCommerce Development & H

RE: datasource connections

2003-07-12 Thread Jim Davis
> -Original Message- > From: Adam Churvis [mailto:[EMAIL PROTECTED] > Sent: Saturday, July 12, 2003 12:32 PM > To: CF-Talk > Subject: Re: datasource connections > > > > Jim Davis said: > > > > Run the fist and before it finishes, run the second - the second > will > > > return > > > > whil

Re: datasource connections

2003-07-12 Thread Jochem van Dieten
Jim Davis wrote: > > Databases and ColdFusion are multi-threaded - this means that multiple > actions can happen at one time. I know at least one database that is not multithreaded. PostgreSQL uses processes, not threads. You might want to rethink what you consider to be threads, because your c

Re: datasource connections

2003-07-12 Thread Adam Churvis
> > Jim Davis said: > > > Run the fist and before it finishes, run the second - the second will > > return > > > while the first is still working showing that two connections are in > > use. > > > > > > This is exactly the reason that DB Transactions (and by extension the > > > CFTRANSACTION tag) e

Re: Safe to Upgrade to MX?

2003-07-12 Thread Mahmut Basaran
if you're using access lists on your ntfs partition make sure c:\cfusionmx\wwwroot folder has write permissions set. if you're using com objects make sure you updater3 installed for cfmx. If it still doesn't work, use asp pages for com objects. if you're using a non-english w2k server and cfmx d

Re: datasource connections

2003-07-12 Thread Jochem van Dieten
Barney Boisvert wrote: > > The reason I ask is because the app I'm working on was written with MySQL > using MyISAM tables, which don't support transactions, only table locks. Can't help you there. > No, I'm not pissy, just annoyed that I had to spend the last hour and a half > building a cubic

Re: Safe to Upgrade to MX?

2003-07-12 Thread Jochem van Dieten
Brad Roberts wrote: > Is anyone still having trouble with MX on Win2k & IIS? If so, what > specifically? Yes. See the list of known issues on the Macromedia homepage. http://www.macromedia.com/support/coldfusion/ts/documents/tn18325.htm > Also, what steps should I take when upgrading to ensure

File Upload

2003-07-12 Thread Peter Tilbrook
Product Manager David Deming has left Macromedia; Matt Brown, the excellent DW community manager, just stopped blogging (click here) and left the building, and Macromedia have sacked (click here) some of their Team Macromedia volunteers. Given that there's at least half a million Dreamweaver us

File Upload

2003-07-12 Thread Peter Tilbrook
Just spent the best part of three days attempting to restore my brothers PC to some level of normality. It's a nice machine, AMD Athlon I admit, the real trick is when trying to RESTORE a machine and not do something illegal. A problem here, for example, is that whilst bro is licensed for Win

RE: datasource connections

2003-07-12 Thread Jim Davis
> -Original Message- > From: Adam Churvis [mailto:[EMAIL PROTECTED] > Sent: Saturday, July 12, 2003 1:11 AM > To: CF-Talk > Subject: Re: datasource connections > > Jim Davis said: > > Run the fist and before it finishes, run the second - the second will > return > > while the first is stil