Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 38254 - 38286 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
38254
Hi All, John here, I have having a crisis,and I hope that somebody on the list can help. I have to clean my mac getting rid of my cf localhost, which I...
John
barrjohnm
Offline Send Email
May 1, 2006
9:43 am
38255
Hi Check if you have in CFMX adminstrator: Java and JVM - Java Virtual Machine Path field: C:/CFusionMX7/runtime/jre (this varies depending on the CFMX's files...
Andrei Vasile
andreivasile...
Offline Send Email
May 1, 2006
10:24 am
38256
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Send Email
May 1, 2006
10:35 am
38257
Hi, Thanks for getting back to me. I looked all over the cf admin, but I can't find anything with java settings, but I did find in the setting summary, that...
John
barrjohnm
Offline Send Email
May 1, 2006
10:39 am
38258
I just migrated from cf 5 to cf 7. One of my apps that was working before is now failing. I was performing a cfhttp request like the one below: <cfhttp...
ngu_nyindem
Offline Send Email
May 1, 2006
4:17 pm
38259
try this <cfhttp url="#url#" method="Get"/> <cfset StaticOutput = "#cfhttp.FileContent#"> ngu_nyindem <ngu_nyindem@...> wrote: I just migrated from cf 5...
Hank Miller
hankcfman
Online Now Send Email
May 1, 2006
4:42 pm
38260
I don’t think so because that is java inside a context of your computer and not coldfusion. I am assuming you did place the jar correctly or you would be...
Dan Plesse
empiricallys...
Offline Send Email
May 1, 2006
4:58 pm
38261
Also check all your log files for a better error message. Try this <cfset class.forName("com.mysql.jdbc.Driver")> _____ From: coldfusion-howto@yahoogroups.com ...
Dan Plesse
empiricallys...
Offline Send Email
May 1, 2006
5:07 pm
38262
That's a crazy looking cfhttp tag Try this <cfhttp url="http://finance.yahoo.com/q/ks?s=abmd" method="get" resolveurl="false" useragent="Mozilla/4.0...
Dan Plesse
empiricallys...
Offline Send Email
May 1, 2006
5:29 pm
38263
Hi Dan, Thank you so much for your help. It appears that when I had the MySQL driver in: ...
John Barrett
barrjohnm
Offline Send Email
May 2, 2006
3:03 am
38264
Thanks for the thanks. I think I solved the last three other questions but no word as of yet. _____ From: coldfusion-howto@yahoogroups.com ...
Dan Plesse
empiricallys...
Offline Send Email
May 2, 2006
5:40 am
38265
Hi Dan, I feel like I am learning more everytime I try something new`-` By the way, I located your coldfusion file to see which MySQL driver that I have...
John Barrett
barrjohnm
Offline Send Email
May 2, 2006
6:29 am
38266
I am thinking about writing a book called "Coldfusion Java Hacks" for O <http://hacks.oreilly.com/pub/q/all_hacks> 'Reilly Media. I guess I could put all my...
Dan Plesse
empiricallys...
Offline Send Email
May 2, 2006
7:23 am
38269
I am trying to implement a wait in one of my apps that transfers (ftp, http) information from one server to another. I have this process (file and http...
ngu_nyindem
Offline Send Email
May 2, 2006
8:38 pm
38270
Hey Alex, You can create and sleep a java thread to make CF wait...this should get you there: <cfset thread = CreateObject("java", "java.lang.Thread")> <cfloop...
Joe Rinehart
jrinehartasi
Offline Send Email
May 2, 2006
8:58 pm
38271
Store the retry count in an application variable - that way you can keep track of how many times you've failed to send the data. -John...
John Bartlett
wyntermoonwolf
Offline Send Email
May 2, 2006
9:06 pm
38272
Hi- I'm trying to pass two variables through a url to a page that updates records in the dbase. The query string looks like this: ...
Trevor Lyman
trevormorris...
Offline Send Email
May 2, 2006
9:40 pm
38273
is BandID a numeric field or varchar? You might want to wrap that url.BandID in a <cfqueryparam> to prevent SQL injection....
Greg Morphis
omenchaos
Offline Send Email
May 2, 2006
9:44 pm
38274
BandID is an autonumber/primary key. I'm a bit of a newb so would the cfparam be set like this? <cfparam name="BandID" default="#url.BandID#"> The things is I...
Trevor Lyman
trevormorris...
Offline Send Email
May 2, 2006
9:50 pm
38275
Remove the comma from this line and try again. SET SoundFileExists = 'No', Trevor Lyman <trevorgroups@...> wrote: Hi- I'm trying to pass two variables...
Hank Miller
hankcfman
Online Now Send Email
May 2, 2006
10:01 pm
38276
<cfquery datasource="datasourcename" name="Band"> UPDATE Table1 SET SoundFileExists = 'No', WHERE BandID=<cfqueryparam value="#url.BandID#" ...
Maximilian Nyman ( Ze...
max_nyman
Offline Send Email
May 2, 2006
10:02 pm
38277
Doh!!! (I knew that.. ugh.. ) thanks ... [Non-text portions of this message have been removed]...
Trevor Lyman
trevormorris...
Offline Send Email
May 2, 2006
10:13 pm
38278
I know this is WAY off topic, but I know there are a lot of intelligent people here. I just wanted to get people's input on AES Encryption vs. Hashing a value....
Doug Arthur
douga2k2
Offline Send Email
May 2, 2006
10:15 pm
38279
Remove the comma at the end of the SET line. Commas are used to seperate different fields being updated but you're only updating one field. -John...
John Bartlett
wyntermoonwolf
Offline Send Email
May 2, 2006
10:52 pm
38280
I wonder if placing PrepareStatements in the CF Admin would be a great place to further abstract away database interactively. This way the programmer only has...
Dan Plesse
empiricallys...
Offline Send Email
May 3, 2006
3:10 am
38281
Hi, if this is off topic, please forgive me. Is it me, or does the index.cfm not work with JRun/CFMX in apache? I use the mac with the JRun multi version of...
John Barrett
barrjohnm
Offline Send Email
May 3, 2006
10:45 am
38282
Hi Dan, yeah do it I would love to read it`-` Yeah learning is fun. Congrates on your sale, John Dan Plesse <dplesse@...> wrote: I am thinking...
John Barrett
barrjohnm
Offline Send Email
May 3, 2006
10:47 am
38283
Hey John, You need to add index.cfm to Apache's list of default pages - edit your httpd.conf file. -Joe ... -- Get Glued! The Model-Glue ColdFusion Framework ...
Joe Rinehart
jrinehartasi
Offline Send Email
May 3, 2006
11:09 am
38284
Hi Joe, Thanks so much`-` I found the place where to add it: <IfModule mod_dir.c> DirectoryIndex index.html index.htm index.cfm index.jsp </IfModule> Now I can...
John Barrett
barrjohnm
Offline Send Email
May 3, 2006
11:49 am
38286
Dear John and lurkers, John and lurkers if you want the book made, please write them at O'Reilly Media because so far I got no word yes or no and I think the ...
Dan Plesse
empiricallys...
Offline Send Email
May 3, 2006
6:27 pm
Messages 38254 - 38286 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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