Search the web
Sign In
New User? Sign Up
CFTalk · ColdFusion Talk (CFTalk) List archives
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 143539 - 143568 of 154391   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
143539
yes thats where query in the add to cart comes into play, from now on when they add an item I check to see if it is active "AND active = 'on'" lol anyhow again...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
10:55 am
143540
I'm stuck with this and I'm sure its easy but I need to extract 0.7025 from this result string. i've got it as close as: >0.07025< with 2 re's I'm sure it can...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
7:05 pm
143541
<cfscript> string = '<?xml version="1.0" encoding="utf-8"?><double xmlns=" http://www.webserviceX.NET/">0.7025</double>'; dbl = reReplace(string,...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
7:23 pm
143542
Perfect Thank you very much. ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| AdobeŽ ColdFusionŽ 8 software 8 is the most important...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
7:30 pm
143543
assuming your source is actual/valid XML, why not just use XMLParse()? ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| AdobeŽ...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
7:35 pm
143544
I guess I was over thinking it ;) <cfdump var="#xmlparse(string).double.XmlText#" /> Worked fine aswell. Paul ... ...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
8:00 pm
143545
Can I use cffile to append one file to another? <cffile action="append" output="File2.txt" file="File1.txt"> Doesn't seem to work. (This is assuming File2.txt...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
9:45 pm
143546
... I did this in DOS not too long ago - the command was: COPY File1.txt + File2.txt + File3.txt OutputFile.txt You should be able to do something similar...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
9:49 pm
143547
This isn't a direct answer to your question, but if your process involves creating or concatenating a very large amount of strings you should look into Java's...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
9:57 pm
143548
... Since you didn't mention a version, I assume you are on the latest? (cf8). If so this might work for you: <cffile action="append"...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
10:09 pm
143549
... I figured that was the case, but that still doesn't eliminate the race condition. The cart lives for the duration of their session, which is like 20...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
11:17 pm
143550
... very true. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| AdobeŽ ColdFusionŽ 8 software 8 is the most important and dramatic...
archive@...
mdinowit
Offline Send Email
Jan 1, 2009
11:55 pm
143551
Happy New Year all, I have a client who has asked me to 'mask' his directory structure. I actually have two issues and I hope to find solutions to both. ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
12:01 am
143552
... the illegalaccessError was fromt he xercesimpl.jar in the flex/jars directory. but.. the root problem was a missing namespace entry for the xalan functions...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
1:09 am
143553
Yes, I have done this before. You want to go into IIS and change the file that the 404 errors are pointing to. In IIS: Right click on the website you want and...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
1:51 am
143554
Happy New Year, everyone... I'm running this code: <cffile action="delete" file="e:\inetpub\webroot\fortstewart\user_images\#replace(fieldname, ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
2:16 am
143555
errata: The last line of the message below should be "isn't cutting off..." Duh... Rick ... ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
2:19 am
143556
Try using replaceNoCase. It's not finding the string do to "DELETE_IMAGE_" being upper case and your match string is lower case. Wil Genovese One man with...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
2:22 am
143557
Bravo, Wil, bravo! ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| AdobeŽ ColdFusionŽ 8 software 8 is the most important and...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
2:33 am
143558
cf express... isn't that what rick uses? @mysql gui tools if you're on a mac I ran across a new one that is pretty good if you need a freebie one...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
8:53 am
143559
"cf express +" :oP ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| AdobeŽ ColdFusionŽ 8 software 8 is the most important and...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
2:52 pm
143560
Thank you very much, I will use your suggestions today for the 404 issues. Can anyone give any ideas on the directory masking? William ... From: Chuck...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
3:29 pm
143561
William, For the second part of your question (URL rewriting) there are two ways you can do it. Firstly you can redirect _all_ requests (including 404s) to a...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
3:37 pm
143562
... I think rick uses cf express beta. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| AdobeŽ ColdFusionŽ 8 software 8 is the most...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
6:44 pm
143563
Thankyou for the assistance . I am currently using that type of redirect system inside of my application. What the client wants is for the user to see the...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
6:55 pm
143564
Well you can do that with frames/iframes or AJAX navigation, or something like that, if I understand you correctly - but you would only ever have one public...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
7:06 pm
143565
... You would need to use frames or a RIA interface (AJAX, Flex) to do that. If you're not building a single RIA interface, this is a monumentally bad idea for...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
7:19 pm
143566
You mean they finally put out the non-beta? Oh, man...I've been dealing with beta issues all these years! :o\ ... ...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
7:33 pm
143567
I have a standard javascript function on a CF page intended to open a popup window: function openProfileWindow(url) { popupWin = window.open(url, 'detail',...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
8:11 pm
143568
... Rather than actually addressing your main question, I would recommend that you not bother with encrypting primary key values. If your application is...
archive@...
mdinowit
Offline Send Email
Jan 2, 2009
8:36 pm
Messages 143539 - 143568 of 154391   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright Š 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help