RE: Ajax cfgrid bind problem

2007-09-13 Thread Rakshith N
Yes, 69915 is the bug that is causing this to happen. We are aware of this issue and are working on it. Rakshith Adobe ColdFusion Team -Original Message- From: Mike Chabot [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 12:03 AM To: CF-Talk Subject: Re: Ajax cfgrid bind

RE: Another cfwindow question...

2007-09-13 Thread Rakshith N
Will, The CFWINDOW tag does have a dependency on each of the js file that is being included out there. If it did not, then that js file would not be included out there. Thanks, Rakshith Adobe ColdFusion Team -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent:

displaying times on the screen

2007-09-13 Thread Peter Tanswell
have a page in my application where I want to refresh the screen every 60 seconds without the user having to click enter - so I have used the meta http-equiv=refresh content=60 / and it seems to work well. Basically I want to display a clock of sessions with Gym instructors/Personal Trainers.

Very basic question about cfmail

2007-09-13 Thread NUGROHO NOTO
I am sorry if this is the wrong place to post very basic question like this. my script is like this CFMAIL QUERY=mailinglist TO=#email# FROM=#webmaster# SUBJECT=#subject# CFMAILPARAM NAME=MIME-Version VALUE=1.0 CFMAILPARAM NAME=Content-Type VALUE=text/plain; charset=utf-8 #content#

RE: MSSQL Timeout (Connection: reset)

2007-09-13 Thread Dave Watts
What's weird is this happens on three different VMWare machines running on the same server as the db (this is in a dev environment). I do know that the host machine, which also runs the db, was upgraded to SP2 for Windows 2003 server. Other CF boxes (eg developer machines) and MSSQL

Re: Help needed in finding a string within a cgi variable.

2007-09-13 Thread gary gilbert
If you are only searching for the existence of _cache you could just use findNoCase('_cache',cgi.query_string) instead of listFindNoCase. I know they improved the speed of all the list functions for cf8 but using it in this case seems a little superfluous. -- Gary Gilbert

Re: Very basic question about cfmail

2007-09-13 Thread James Holmes
If you wnt a plain text email message, you will need to run the content from the DB through a function that strips the HTML. However you could just send an HTML email message - is that a problem? On 9/13/07, NUGROHO NOTO [EMAIL PROTECTED] wrote: I am sorry if this is the wrong place to post

RE: trigger to send xml via http to web service?

2007-09-13 Thread Dave Watts
We have sql 2000 here and unfortunately I've read that you can do more w/ xml in 05'. I'm trying to send xml via http from the newly inserted record to an outside web service. Any ideas on how I should go about doing this? You should use ColdFusion to send the XML, instead of bringing

RE: Very basic question about cfmail

2007-09-13 Thread William Seiter
http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_m-o_01.html#2355015 Add this parameter/value type=HTML in the cfmail tag Hope this helps William -Original Message- From: NUGROHO NOTO [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 2:01 AM To: CF-Talk Subject: Very

Re: Another cfwindow question...

2007-09-13 Thread gary gilbert
Additionally those files are relatively small (all combined 256kb). Better to include only the files that are needed than the ext_all.js file which while only a single file contains everything that is needed by most of the new ajax tags (cftree excluded) and is quite a bit larger (447kb) and then

Re: Very basic question about lt;cfmail

2007-09-13 Thread NUGROHO NOTO
Thanks for all the suggestion. sorry forget to mention... I could not use HTML version... because most of my customer (in Japan) read their email using their cell phone (cdma)... and some of these service do not accept html version... so... that's why we have to send a plain version from the

RE: Very basic question about cfmail

2007-09-13 Thread John Mason
I'm assuming you don't really want out strip the html but simply have it evaluate on the emails. cfmail has an attribute called type, so you should only need to do cfmail.. Type=HTML.. John Mason [EMAIL PROTECTED] 770.337.8363 www.FusionLink.com - ColdFusion and Flex hosting Now offering

Re: Very basic question about lt;cfmail

2007-09-13 Thread NUGROHO NOTO
Hi Mason. Thanks... at first... I thought type=HTML means to send email as an HTML. obviously I was wrong... Now... it works.. Thanks again. regards. ~| Get the answers you are looking for on the ColdFusion Labs Forum direct

Re: Very basic question about lt;cfmail

2007-09-13 Thread James Holmes
It does. However, html email is also sent with a plain text version, which is what non-html enabled client will read. On 9/13/07, NUGROHO NOTO [EMAIL PROTECTED] wrote: Hi Mason. Thanks... at first... I thought type=HTML means to send email as an HTML. -- mxAjax / CFAjax docs and other useful

Re: [CF-Dev] Adobe Max 2007

2007-09-13 Thread Tom Chiverton
On Wednesday 12 Sep 2007, [EMAIL PROTECTED] wrote: On 9/12/07, Tom Chiverton [EMAIL PROTECTED] wrote: http://adobemax2007.com/europe/ No, even though it's on the same continent as me now, it's still too expensive to fund on my own (or reasonably expect my boss to agree to, given Scotch

Re: cf8 book by Ben Forta - release date?

2007-09-13 Thread Scott Slone
Looks like the ship date has slipped on Amazon: (pre-ordered the first volume on Aug. 19th) Shipping estimate: September 17, 2007 Delivery estimate: September 19, 2007 On Sep 12, 2007, at 9:39 AM, Ben Forta wrote: Volume 1 is indeed shipping. Volumes 2 and 3 to follow shortly. --- Ben

Re: Very basic question about lt;cfmail

2007-09-13 Thread Scott Weikert
NUGROHO NOTO wrote: I am looking for those script which can strip the HTML part.. but still can retain the carriage return (otherwise my text will just continue without break) anybody knows where we can get / buy this custom tags ? Sounds like a three-step thing to me. First, find all

Re: MSSQL Timeout (Connection: reset)

2007-09-13 Thread John Paul Ashenfelter
On 9/13/07, Dave Watts [EMAIL PROTECTED] wrote: What's weird is this happens on three different VMWare machines running on the same server as the db (this is in a dev environment). I do know that the host machine, which also runs the db, was upgraded to SP2 for Windows 2003 server. Other

Spry: Two Forms on one page, validation tiggers on both

2007-09-13 Thread coldfusion . developer
I have a content management tool that has a pull down of existing items and below the existing pull down list, it the add a new form. I've applied Spry/Ajax to thr form field to the add a new form, but I when I submit the form above it to edit an existing item, the spry validation is triggered

Re: Odd database behavior: duplicate key error

2007-09-13 Thread Brian Kotek
Just to follow up on this thread, is the final verdict that you must use cflock to prevent these kinds of concurrency issues in the database, UNLESS you use CFTRANSACTION with the serializable isolation level? On 9/12/07, Dave Watts [EMAIL PROTECTED] wrote: They recently changed it to the

Re: Very basic question about lt;cfmail

2007-09-13 Thread Tom Chiverton
On Thursday 13 Sep 2007, [EMAIL PROTECTED] wrote: Regex to use: ReReplaceNoCase(yourVar, (.|\n)+?, , ALL) should strip out all content that starts with a to the next occuring . strip out all content that starts with a . :-) -- Tom Chiverton Helping to elementarily utilize back-end segments

Need help with CFMX 8 purchase

2007-09-13 Thread Phill B
Has anyone had to wait for their online purchase to go through? I just used the company Amex card to buy two upgrades to MX8 Ent. The problem is they sent me an email telling me to wait until tomorrow for approval! Whats going on?? Why would they make me wait until tomorrow to download and install

Re: Very basic question about amp;lt;cfmail

2007-09-13 Thread NUGROHO NOTO
Thanks all, can you tell me the correct carriage return character should I use... without making this email content just displaying the code ? for example.. if I replace BR with \R... it will just show \R instead making a new line. Sorry ... for my stupidity question.

RE: CFQuery wrapper tag to help with poor connections to sql..

2007-09-13 Thread Daniel Baughman
Interesting. I might trying using the timeout before resorting to the nested try/catches. -Original Message- From: Wil Genovese [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 12, 2007 12:46 PM To: CF-Talk Subject: Re: CFQuery wrapper tag to help with poor connections to sql..

Re: sql sever 2000 XP cf8 question

2007-09-13 Thread Paul Ihrig
well i am trying to make a regular connection in cf admin to sql server 2000. i can do it with. Driver: ODBC Socket but not with Driver: Microsoft SQL Server Connection verification failed for data source: master An exception occurred when executing method verifydatasource. The cause

RE: displaying times on the screen

2007-09-13 Thread Robert Harrison
Use the CreateTimeSpan function, then format your result for output using TimeFormat. Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't

RE: sql sever 2000 XP cf8 question

2007-09-13 Thread Peterson, Chris
Be sure that is the right port and that TCP/IP port connections are properly enabled on the SQL server? Chris Peterson Gainey IT Adobe Certified Advanced Coldfusion Developer -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 11:08 AM To:

Re: Odd database behavior: duplicate key error

2007-09-13 Thread Vince Collins
I don't want to cloud this conversation but I have to say that in all my years of development, I've never had a database collision using ColdFusion. I put my multiple database calls into cftransaction and I use cflock when I'm trying to access a client's session or cookie. I've never put a

two actions in one form

2007-09-13 Thread Seamus Campbell
Hi I've got an external shopping cart (over which I have very little control). I want to send a shopping order to the cart (very easy form) but also have (when the form is submitted) the data from the form fields entered into a database. Each task by itself is easy and I can get to work but

Re: sql sever 2000 XP cf8 question

2007-09-13 Thread Paul Ihrig
i have tried the example here http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=datasources_ADV_MJS_11.html with no luck ~| Enterprise web applications, build robust, secure scalable apps today - Try it now

java classloader

2007-09-13 Thread Daniel Baughman
Oh man I'm missing something here.. I'm using the javaclass loader to load a meta-data reader for some jpegs. It seems no matter where I put the .jar for the class loader I get the following exception: message: com.compoundtheory.classloader.NetworkClassLoader type:

Re: Very basic question about amp;amp;lt;cfmail

2007-09-13 Thread Seamus Campbell
cfset br = chr(13) chr(10) / then use #br# in cfmail (If I understood your question correctly) Seamus Thanks all, can you tell me the correct carriage return character should I use... without making this email content just displaying the code ? for example.. if I replace BR with \R...

RE: two actions in one form

2007-09-13 Thread Adkins, Randy
look at Javascript form.submit() From: Seamus Campbell [mailto:[EMAIL PROTECTED] Sent: Thu 9/13/2007 12:05 PM To: CF-Talk Subject: two actions in one form Hi I've got an external shopping cart (over which I have very little control). I want to send a shopping

Re: two actions in one form

2007-09-13 Thread Scott Weikert
It sounds like you're wanting to do your own action with your form data, using your own code, but then also pass the data onto a shopping cart app that you can't/don't want to hack. Point your main form at your own code - do your own jiggling with it - then simply output a new form with hidden

Re: Very basic question about lt;cfmail

2007-09-13 Thread Scott Weikert
Tom Chiverton wrote: strip out all content that starts with a . :-) Heh, you saying the less-than character got stripped for you? Or that the regex is goofed? :/ ~| Get the answers you are looking for on the ColdFusion

Re: cf8 book by Ben Forta - release date?

2007-09-13 Thread Scott Weikert
Since it looks like it's going to take a good while for us to get this book in our hands... A question to Ben - any chance folks can acquire the book directly from you quicker? :D ~| ColdFusion 8 - Build next generation apps

Re: two actions in one form

2007-09-13 Thread James Holmes
You can do a post with cfhttp and render the results to the user in the browser. On 9/14/07, Seamus Campbell [EMAIL PROTECTED] wrote: But I can't see how to submit the form details programatically without someone manually pressing a submit button?? -- mxAjax / CFAjax docs and other useful

Re: Very basic question about amp;lt;cfmail

2007-09-13 Thread Wil Genovese
I've been busy all morning and I haven't had time to respond to this. Most of the time to prevent your email from be caught as SPAM you want send either plain text or multi-part Test and HTML. If you send just as HTML that will start to trigger in SPAM filters. I user this function to create

Re: two actions in one form

2007-09-13 Thread John Cox
On 9/13/07, Seamus Campbell [EMAIL PROTECTED] wrote: I have thought that the form should go to another cf page where I insert the data into the database then submit the form details to the shopping cart. You could do it like this, and just use a cfhttp to post it again in your external

Re: Very basic question about cfmail

2007-09-13 Thread Wil Genovese
*** MADE CORRECTIONS TO MY CODE SAMPLE *** I've been busy all morning and I haven't had time to respond to this. Most of the time to prevent your email from be caught as SPAM you want send either plain text or multi-part Text and HTML. If you send just as HTML that will start to trigger in

Re: Spry: Two Forms on one page, validation tiggers on both

2007-09-13 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Sorry, I didn't review my enough, I was missing a top form tag, don't know how that happened. ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki.

Re: java classloader

2007-09-13 Thread Kris Jones
Did the java classpath on the machine change? I'm using the javaclass loader to load a meta-data reader for some jpegs. It seems no matter where I put the .jar for the class loader I get the following exception: message: com.compoundtheory.classloader.NetworkClassLoader type:

RE: XHTML Style CF?

2007-09-13 Thread Dave Watts
As far as I know it's only an XHTML requirement to close all tags (e.g., br /) and not a CF issue. Since CF never outputs CFtags to the browser is this actually necessary? No. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

RE: Odd database behavior: duplicate key error

2007-09-13 Thread Dave Watts
Just to follow up on this thread, is the final verdict that you must use cflock to prevent these kinds of concurrency issues in the database, UNLESS you use CFTRANSACTION with the serializable isolation level? That's not my final verdict, for what that's worth; depending on the specific

Re: Odd database behavior: duplicate key error

2007-09-13 Thread Jochem van Dieten
Brian Kotek wrote: Just to follow up on this thread, is the final verdict that you must use cflock to prevent these kinds of concurrency issues in the database, UNLESS you use CFTRANSACTION with the serializable isolation level? There may be specific cases where the above holds true, but there

RE: sql sever 2000 XP cf8 question

2007-09-13 Thread Dave Watts
well i am trying to make a regular connection in cf admin to sql server 2000. i can do it with. Driver: ODBC Socket but not with Driver: Microsoft SQL Server Connection verification failed for data source: master An exception occurred when executing method

cfform format=flash not appearing outside of firewall

2007-09-13 Thread Rebecca Wells
We have a page with a cfform using the flash format. It works perfectly to all users inside the firewall, but does not work to any users outside the firewall. Do I have to open a special port to use flash forms? We found the following KB article, but I'm not sure it applies to cfforms:

RE: cfform format=flash not appearing outside of firewall

2007-09-13 Thread Dave Watts
We have a page with a cfform using the flash format. It works perfectly to all users inside the firewall, but does not work to any users outside the firewall. Do I have to open a special port to use flash forms? We found the following KB article, but I'm not sure it applies to cfforms ...

CFSELECT with Binding and SelectedValue isn't selecting

2007-09-13 Thread Chris Martin
Any ideas why this cfselect isn't automatically selecting the value? Any help is greatly appreciated! cfquery name=theParent datasource=nlr dbtype=ODBC SELECT * FROM gi_ApparelTypes WHERE apparelTypeID = '#theChild.parentID#' /cfquery cfselect name=theParent

Re: two actions in one form

2007-09-13 Thread Chris Martin
If you don't have to grab any information from the shopping cart before dumping it into the DB, using the cfhttp tag would probably be your best bet. Just dump your info in the DB, then call the cfhttp and cfhttpparam tags within the same page. Chris Martin Seamus Campbell wrote: Hi I've

Re: SPAM - java classloader

2007-09-13 Thread Simon Horwith
you tried putting the jar in your lib directory and cycling that instance? ~Simon Simon Horwith Adobe Community Expert Adobe Certified Master Instructor http://www.horwith.com Daniel Baughman wrote: Oh man I'm missing something here.. I'm using the javaclass loader to load a meta-data

Re: sql sever 2000 XP cf8 question

2007-09-13 Thread Paul Ihrig
finnaly i just needed sp4 for mssql 2000 ~| Create robust enterprise, web RIAs. Upgrade to ColdFusion 8 and integrate with Adobe Flex http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP Archive:

OT: PURE apache configuration question

2007-09-13 Thread Ian Skinner
But I know many of you out there use apache with your ColdFusion. Where are attempting to restructure our site, we moved some directories around. To be considerate to our users out there that may have links or bookmarks to our content we put 301 redirects into an .htaccess file. This of

RE: PURE apache configuration question

2007-09-13 Thread DURETTE, STEVEN J (ATTASIAIT)
Different versions of apache in development and production? -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 1:18 PM To: CF-Talk Subject: OT: PURE apache configuration question But I know many of you out there use apache with your

RESOLVED: MSSQL Timeout (Connection: reset)

2007-09-13 Thread John Paul Ashenfelter
On 9/12/07, John Paul Ashenfelter [EMAIL PROTECTED] wrote: Folks, Puzzled about this error message. ColdFusion 7.02/Std on Windows 2003/Web connecting to a different machine running MSSQL2000/Std on Windows 20003/Std. Rebooted everything after months of being fine and getting a timeout error

Getting error message on one page only

2007-09-13 Thread Bruce Sorge
I have CFC's that I am using throughout our districts web site and they are all working fine except one. I keep getting the error message that a method cannot be found in the CFC, but the method is there. All works fine on my dev machine. It is when I put it all on my test machine that it does not

Re: Getting error message on one page only

2007-09-13 Thread Dan Vega
Bruce, Are you sure that you are not caching the components in the application scope? I find that sometime I forget to re instantiate my components when I add new methods to them. Dan On 9/13/07, Bruce Sorge [EMAIL PROTECTED] wrote: I have CFC's that I am using throughout our districts web

RE: Getting error message on one page only

2007-09-13 Thread Bruce Sorge
No I am not. And the methods that cannot be found were written last Thursday. I just moved everything to the test server yesterday and remembered that I did not check out the specific school sites that I am looking at today. I just find it strange that some of the methods are accessible but others

Re: Getting error message on one page only

2007-09-13 Thread Dan Vega
If you dump the component do you the method? Is it just private and inaccessible? Dan On 9/13/07, Bruce Sorge [EMAIL PROTECTED] wrote: No I am not. And the methods that cannot be found were written last Thursday. I just moved everything to the test server yesterday and remembered that I did

Re: Getting error message on one page only

2007-09-13 Thread Josh Nathanson
No I am not. And the methods that cannot be found were written last Thursday. I just moved everything to the test server yesterday and remembered that I did not check out the specific school sites that I am looking at today. Bruce - make sure any mappings are pointing where you think they

Re: Getting error message on one page only

2007-09-13 Thread Ian Skinner
Can you refresh the components in the administrator? ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

RE: Getting error message on one page only

2007-09-13 Thread Peterson, Chris
You will get a 'method cannot be found' if you are passing invalid arguments too it, because CF searches for a method with matching arguments. You could have 2 functions: New(int) And New(int, int) Based on if you invoked them as new(2) or new(2,2), Coldfusion would pick different ones to

Re: cfform format=flash not appearing outside of firewall

2007-09-13 Thread Rebecca Wells
No, that KB article doesn't apply. Flash forms don't rely upon Flash Media Server, but they do require access to the /CFIDE/scripts directory, by default. Visiting this URL returns a permissions error: http://rentonnet.org/cfide/scripts/ Yes, we have the CFIDE folder blocked by IP address. I

RE: Getting error message on one page only

2007-09-13 Thread Peterson, Chris
Josh, He mentioned though that he can call other methods from his CFC fine, just not a certain method. ;P Chris Peterson Gainey IT Adobe Certified Advanced Coldfusion Developer -Original Message- From: Josh Nathanson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 2:19

Re: Getting error message on one page only

2007-09-13 Thread Ian Skinner
I did not think that one could overload ColdFusion component (CFC) methods that way? ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers.

Re: MySQL - corrupt table?

2007-09-13 Thread Will Tomlinson
Will, one question: is InnoDB tables in your MySQL database? Corrupt table is a very old problem related to MyISAM tables. Hey, I just ran across my old thread here because this problem has crept up again. The table in question is a InnoDB table. It has FK's. It's really irritating because

RE: Getting error message on one page only

2007-09-13 Thread Bruce Sorge
Well the part that gets me is that it works fine on my dev box. No errors at all. -Original Message- From: Peterson, Chris Sent: Thursday, September 13, 2007 11:12 AM To: CF-Talk Subject: RE: Getting error message on one page only You will get a 'method cannot be found' if you are

Best data type for comments using MySQL?

2007-09-13 Thread Will Tomlinson
If I have user comments that could be 500-1000 characters, what datatype should I be using with mySQL 5.0? Thanks, Will ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today

RE: Getting error message on one page only

2007-09-13 Thread Bruce Sorge
It is a public component. It works on the dev box just fine. And there are about three other methods on this component that work fine. -Original Message- From: Dan Vega [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 11:14 AM To: CF-Talk Subject: Re: Getting error message on

RE: Getting error message on one page only

2007-09-13 Thread Bruce Sorge
OK, I just put everything on the live server and it works fine. So it is the test environment that is having issues apparently. Now the test environment is actually the live server, it is just in a folder called Test (they have not given me an actual staging server as of yet. Hopefully soon

RE: Best data type for comments using MySQL?

2007-09-13 Thread Andy Matthews
Medtext I think. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 3:05 PM To: CF-Talk Subject: Best data type for comments using MySQL? If I have user comments that could be 500-1000 characters, what datatype should I be using with

RE: cfform format=flash not appearing outside of firewall

2007-09-13 Thread Dave Watts
Yes, we have the CFIDE folder blocked by IP address. I found a work-around that mentions making a CFIDE folder containing a copy of the scripts folder in the virtual directory which is the default website in IIS. However, there is also the real CFIDE folder there as well. Obviously there

Re: Best data type for comments using MySQL?

2007-09-13 Thread Will Tomlinson
Medtext I think. Thanks andy! I was using longtext. Just making sure... Will ~| Check out the new features and enhancements in the latest product release - download the What's New PDF now

Hey, if you had to create this interface, how would you do it?

2007-09-13 Thread LHWH Interactive
http://www.flickr.com/photos/[EMAIL PROTECTED]/1374078518/ It's a form that has to stay in this little area (380px X 38px) and it has to be consistently displayed. It's just a small search form, but I'm having trouble getting it to lay out exactly like that using cfform format=flash. Is there an

[SOT] Downloading a zip file using web service

2007-09-13 Thread Web Specialist
Hi all. we have a client with a zip file which we need to be downloaded to our network. That client provides only web service access to your network. Is it possible to download that zip file using web service? Or web service allows only binary content inserted(may be in a node) in a returned xml

RE: Best data type for comments using MySQL?

2007-09-13 Thread Andy Matthews
Med text allows for up to 65,535 characters so that should be plenty. Longtext allows for like millions. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 3:32 PM To: CF-Talk Subject: Re: Best data type for comments using MySQL?

Re: [SOT] Downloading a zip file using web service

2007-09-13 Thread Ben Doom
I can think of two ways, offhand. The first is, as you said, to insert the zip file as an encoded CDATA region in the XML. However, this seems cumbersome and increases the size of the data stream. What we are doing for providing PDFs via webservices is actually only providing a URL to the

An edit and delete button

2007-09-13 Thread coldfusion . developer
I've got an edit and a delete button and want to have a confirmation dialog box if the delete button is submittted. If the edit button is clicked, don't show the confirmation alert popup. Here's what I have. table width=719 border=0 cfoutputform name=form1 method=post

Re: PHP or .Net?

2007-09-13 Thread Dinner
On 9/6/07, John Paul Ashenfelter [EMAIL PROTECTED] wrote: On 9/6/07, Dinner [EMAIL PROTECTED] wrote: On 9/6/07, John Paul Ashenfelter wrote:... I don't know -- that summer class in LOGO really has paid off for me :) forward 100! That comment had me laughing inside, John. Great

Re: cfform format=flash not appearing outside of firewall

2007-09-13 Thread Rebecca Wells
No, not really. Whether it's a physical or a virtual directory, you need to allow public access to /CFIDE/scripts, or use the SCRIPTSRC attribute of CFFORM to get the scripts from another URL. Honestly, I think I'm doing everything right, but somehow it doesn't seem to be working still. On the

Re: Best data type for comments using MySQL?

2007-09-13 Thread Will Tomlinson
Med text allows for up to 65,535 characters so that should be plenty. Longtext allows for like millions. Fixed it! Thanks dude! ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and

Re: PHP or .Net?

2007-09-13 Thread Raymond Camden
Hey - someone should write a cf interperter for logo. Ie cf_logo name=foo commands here /cf_logo cfimage action=writeToBrowser source=#foo# On 9/13/07, Dinner [EMAIL PROTECTED] wrote: On 9/6/07, John Paul Ashenfelter [EMAIL PROTECTED] wrote: On 9/6/07, Dinner [EMAIL PROTECTED] wrote: On

RE: cfform format=flash not appearing outside of firewall

2007-09-13 Thread Bruce Sorge
I just went to the site and I see the flash form. I assume it is the login form? Bruce -Original Message- From: Rebecca Wells Sent: Thursday, September 13, 2007 3:16 PM To: CF-Talk Subject: Re: cfform format=flash not appearing outside of firewall Honestly, I think I'm doing

Re: cfform format=flash not appearing outside of firewall

2007-09-13 Thread Ben Doom
It shows up. It's just really slow. Which is a different problem altogether. --Ben Doom Rebecca Wells wrote: No, not really. Whether it's a physical or a virtual directory, you need to allow public access to /CFIDE/scripts, or use the SCRIPTSRC attribute of CFFORM to get the scripts from

Re: An edit and delete button

2007-09-13 Thread [EMAIL PROTECTED]
I assume the reason you posted this is because it isn't working. A better approach for this page of yours would be to change the delete 'submit' to a delete 'button'. A submit will automatically send the form, regardless of javascript errors, while a button does only what you tell it to do.

RE: Best data type for comments using MySQL?

2007-09-13 Thread Andy Matthews
My pleasure -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 5:19 PM To: CF-Talk Subject: Re: Best data type for comments using MySQL? Med text allows for up to 65,535 characters so that should be plenty. Longtext allows for like

Resolved: cfform format=flash not appearing outside of firewall

2007-09-13 Thread Rebecca Wells
The other things weren't working, enabled public access to the default scripts folder. ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates.

Re: Best data type for comments using MySQL?

2007-09-13 Thread Jim McAtee
Why not just use VARCHAR()? They can be up to 65,535 characters in length in MySQL 5.0.3 and later. http://dev.mysql.com/doc/refman/5.0/en/string-types.html - Original Message - From: Will Tomlinson [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, September 13,

Re: PURE apache configuration question

2007-09-13 Thread Ian Skinner
Well yes, but is there a real difference between 1.3.12 (dev/prerelease) and 1.3.26 (production). I still have not found a definitive answer to this. Is there a possibility that AllowOverrided All is not really 'All'? ~|

Re: java classloader

2007-09-13 Thread Mark Mandel
Dan - You shouldn't move the JavaLoader .jar files around, they should stay in the way they were originally downloaded in. Mark On 9/14/07, Kris Jones [EMAIL PROTECTED] wrote: Did the java classpath on the machine change? I'm using the javaclass loader to load a meta-data reader for some

FCKEditor Revisited

2007-09-13 Thread Andy Chen
I am able to enable the file manager / image uploading fuctions of FCKEditor within CF8. Adobe encrypted the config files for both the file manager and image uploading to be DISABLED. So by going to the main FCKEditor's site and downloading the current version, you can get those missing files

RE: An edit and delete button

2007-09-13 Thread Bobby Hartsfield
Onclick=var conf=confirm('You are about to delete this record. Are you sure you want to continue?');return conf; ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, September

Re: An edit and delete button

2007-09-13 Thread Casey Dougall
http://www.foxytunes.com/artist/bassdrive+-+music+beyond/track/24+7+drum+and+bass+jungle+radio+featuring+live+shows On 9/13/07, Bobby Hartsfield [EMAIL PROTECTED] wrote: Onclick=var conf=confirm('You are about to delete this record. Are you sure you want to continue?');return conf; Then on

Re: FCKEditor Revisited

2007-09-13 Thread Scott Weikert
Andy Chen wrote: Now the reason that I heard is that it was disabled in the first place is that the FCKEditor file manager isn't too good (which I can agree) and there is a potential security problem which can happen if you do this... what is the security problem? Besides seeing a bit of

Re: cfcontent - excel - numbers beginning with 0

2007-09-13 Thread Scott Weikert
Dunno how to do this from CF, but Excel allows you to set a format for a cell. So if you set the cell format as 'text', it won't strip the leading zeros. I just fired up Excel, set one column as a 'text' format, the next untouched, and typed in '01234' in both. The first one (text column)

Re: cfcontent - excel - numbers beginning with 0

2007-09-13 Thread Barney Boisvert
Within Excel itself, prefixing a numberish value with an apostrophe will make it render as a string (and be absolved from zero-trimming). Did you try that? cheers, barneyb On 9/13/07, andy mann [EMAIL PROTECTED] wrote: I am creating an excel file in cf7 and all works well except when a part

cfcontent - excel - numbers beginning with 0

2007-09-13 Thread andy mann
I am creating an excel file in cf7 and all works well except when a part number begins with a 0 - i need the number to always have 5 digits as in 01234 or 12345. i have tried doing a Numberformat(partnum, '0') to no avail. can i force using TabChar or something? noticed the the field in

Re: Very basic question about lt;cfmail

2007-09-13 Thread NUGROHO NOTO
Thanks. I have tried using your function. replacing br with CRLF (which is chr(13) chr(10);) but still the plain text email I got... all text are continue without break. Hmm... I must have missed something here... ~|

Google Maps Tag - CF5

2007-09-13 Thread Dennis Powers
I apologize for being a Luddite on this list but does anyone know of a CF 5.x tag for interfacing Google maps for insertion and display on a local website? Everything I find is CFMX or later. Best Regards, Dennis Powers UXB Internet - A website design and Hosting Company 690 Wolcott Road

RE: Replacing the CFDJ awards.... ?

2007-09-13 Thread Dennis Powers
The null set is an adequate and equally useful replacement. Dave Watts, CTO, Fig Leaf Software Elequent and to the point as always LOL Thank you for the belly laugh! Best Regards, Dennis Powers UXB Internet - A website design and Hosting Company 690 Wolcott Road P.O. Box 6029 Wolcott, CT

  1   2   >