RE: Variable locking

2002-10-07 Thread Dave Watts
For session scope, you need a name that is unique to your session which may be harder to invent (you could perhaps use a user ID if it exists or a per- session UUID). If I recall correctly, the MM recommended naming scheme for CF 4.01 would work fine here - use the concatenation of CFID

RE: auto tag completion

2002-10-07 Thread Bruce Sorge
It is there in the production version. Go to Edit|Preferences, select Code Hints, then check on Enable Auto Tag Completion, then select OK. -Original Message- From: Joe Zanter [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 12:02 PM To: CF-Talk Subject: auto tag completion Hi

RE: Comma-Space as delimiter

2002-10-07 Thread Bruce Holm
Thanks for the help! Bruce Holm -Original Message- From: Joseph Thompson [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 10:58 AM To: CF-Talk Subject: Re: Comma-Space as delimiter sub-optimal but Replace(String,', ',chr(07),'all') would leave you a bell delimited list...

Re: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Sean A Corfield
On Monday, Oct 7, 2002, at 10:56 US/Pacific, Rob Rohan wrote: We are porting cf5 to MX and had several sloppy coding errors, as well as some full fledged product errors. All in all, when the code is optimized for MX - which almost no currently existing cf code is - it runs like a champ.

RE: Custom Tags and CFX

2002-10-07 Thread Pete Freitag
Hi Adrian, To my knowledge the C++ CFX API hasn't changed at all since the 4.x versions. In Java the CFX API was introduced around the time of 4.x with the tag CFX_J that would allow you to call Java CFX tags. In CF 4.5 Java CFX tags were added as a standard feature. I'm not

RE: Variable locking

2002-10-07 Thread Raymond Camden
For session scope, you need a name that is unique to your session which may be harder to invent (you could perhaps use a user ID if it exists or a per- session UUID). If I recall correctly, the MM recommended naming scheme for CF 4.01 would work fine here - use the concatenation

Re: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Jochem van Dieten
Rob Rohan wrote: We are having issues with the JDBC Drivers as well. We have several messages into smack-romedia, and we will post when we hear. Why not ask Microsoft? Macromedia has made sure that CF MX can use JDBC, so now it is up to the database vendors to provide working JDBC drivers.

Re: auto tag completion

2002-10-07 Thread Sean A Corfield
On Monday, Oct 7, 2002, at 11:02 US/Pacific, Joe Zanter wrote: Perhaps this has been covered (but I couldn't find it in the archive).. I used to use the auto completion feature in CF pre-DWMX. Does that feature exist in DWMX. Yes. DWMX will offer a drop-down context menu of tags as you type

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Ben Densmore
Sean, I have posted this a couple of times on MM's forums and in here but no real solution. I get this error that says Error Executing Database Query.[Macromedia][SQLServer JDBC Driver]Connection reset by peer: JVM_recv in socket input stream read Any ideas? Thanks, Ben -Original

Saving an Image Datatype in CF5

2002-10-07 Thread Ben Koshy
I've got JPEG images being saved right in the SQL 2000 Database as an Image Datatype... and I'm wondering how I get Cold Fusion to read this data and save it to a file? I tried a simple CFFILE action=write to write out that field but that didn't seem to work. I'm using CF5 btw.

application query cached HOW TO??

2002-10-07 Thread Bartee Lamar
I need to cache a query for the entire application. I have a set of application settings in a database table. I want to read that table once and have it in the application scope to be accessed each time a new session is started. ( just like setting request variables in application.cfm )

RE: FORTA: CFMX - I've never seen anything so unstable in my life (backup please)

2002-10-07 Thread Rob Rohan
Hi Sean! We actually are talking with you right now - and I mean specifically YOU. :) - refer to Mark J's e-mail. I'll reiterate what our issue is with the JDBC Driver. Using SQL Server 7 there is a way to trick the database into doing several sql statements - this was suggested by Ben Forta in

Re: Primary Keys Duplicate Values

2002-10-07 Thread Srimanta
Thanks Field 1 represents model number of products which should be unique. However due to some error in data entry some of the records are duplicate. I can safely delete those records. Srimanta - Original Message - From: Robertson-Ravo, Neil (REC) [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: application query cached HOW TO??

2002-10-07 Thread Raymond Camden
Once you have the query, just copy it: cfset application.data = duplicate(theOriginalQuery) Be sure to lock if using CF MX. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW :

undelivered folder

2002-10-07 Thread Robert Orlini
Hello, Any reason CF is sending emails to the undeliverable folder? The mail log shows this message: Error,TID=369,10/07/02,14:13:43,Failed to send the spooled mail file, C:\CFUSION\MAIL\spool\212C.cfmail. SMTP server replied Internal error: Pending mail operations must be completed. Moved

RE: undelivered folder

2002-10-07 Thread Dan Phillips
Anything stuck in the spool? Also if you use SMTP in IIS, try restarting that. -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 2:54 PM To: CF-Talk Subject: undelivered folder Hello, Any reason CF is sending emails to the undeliverable

RE: FORTA: CFMX - I've never seen anything so unstable in my life (backup please)

2002-10-07 Thread Rick Faircloth
Is this made possible by simply placing SET NOCOUNT ON inside the CFQUERY then placing SET NOCOUNT OFF just before the /CFQUERY? Rick -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 2:38 PM To: CF-Talk Subject: RE: FORTA: CFMX - I've never

RE: FORTA: CFMX - I've never seen anything so unstable in my life (backup please)

2002-10-07 Thread Rob Rohan
Yes - you have to be using SQL Server. The only catch is you can have only ONE select statement, often at the end of the query. In other words you can only return one record set. But you might want to hold of using it apparently. -Original Message- From: Rick Faircloth [mailto:[EMAIL

Re: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Sean A Corfield
On Monday, Oct 7, 2002, at 11:21 US/Pacific, Ben Densmore wrote: I have posted this a couple of times on MM's forums and in here but no real solution. I get this error that says Error Executing Database Query.[Macromedia][SQLServer JDBC Driver]Connection reset by peer: JVM_recv in socket

automate CF studio browse refresh

2002-10-07 Thread Tim Laureska
This is a question for anybody still using CF Studio.. I just reinstalled CF Studio 4.0 on a W2k pro machine. everything works fine except that when I make code changes, I have to click the refresh button before the change can be seen in the browser.. How can I change that ?. I've looked around

RE: undelivered folder

2002-10-07 Thread Robert Orlini
Dan, I'm kind of new to this. How do I check the spool and on what box? Robert O. -Original Message- From: Dan Phillips [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 3:01 PM To: CF-Talk Subject: RE: undelivered folder Anything stuck in the spool? Also if you use SMTP in

Debugging java errors in CFMX

2002-10-07 Thread Yexley Robert D Contr Det 1 AFRL/WSI
I'm working on a template that uses cfstoredproc to pass form values from a struct to a stored procedure in the database. I have debugging enabled in the CF Administrator. Whenever I call this template by submitting the form, I simply get a blank page, it displays nothing (which it should),

automate CF studio browse refresh

2002-10-07 Thread Tim Laureska
This is a question for anybody still using CF Studio.. I just reinstalled CF Studio 4.0 on a W2k pro machine. everything works fine except that when I make code changes, I have to click the refresh button before the change can be seen in the browser.. How can I change that ?. I've looked around

RE: automate CF studio browse refresh

2002-10-07 Thread Dave Watts
This is a question for anybody still using CF Studio.. I just reinstalled CF Studio 4.0 on a W2k pro machine. everything works fine except that when I make code changes, I have to click the refresh button before the change can be seen in the browser.. How can I change that ?. I've

Re: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread cf-talk
Has the Updater helped? Several database issues were addressed in that, I believe. Please let either Vern or myself know if there are specific issues we can follow up on for you! Sorry for the interruption. I don't wish to take away from this thread but how do you tell if the CFUpdater has

Re: FORTA: CFMX - I've never seen anything so unstable in my life (backup please)

2002-10-07 Thread Sean A Corfield
On Monday, Oct 7, 2002, at 11:37 US/Pacific, Rob Rohan wrote: We actually are talking with you right now - and I mean specifically YOU. :) - refer to Mark J's e-mail. I'll reiterate what our issue is with the JDBC Driver. Ah, I didn't connect Rob Rohan with [EMAIL PROTECTED] in Mark's Cc:

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Ben Densmore
Sean, Here are the answers to your questions. - OS / patch level - Win2k SP3 - Database / patch level - SQL Server 7 SP4 - Is the DB on a separate machine? - Yes - Which driver are you using specifically? -macromedia.jdbc.MacromediaDriver - How often do you see this? - Happens daily about

RE: Debugging java errors in CFMX

2002-10-07 Thread Rob Rohan
Just a guess, but try quoteing all the value attributes I.e. cfprocparam type=IN cfSQLType=CF_SQL_VARCHAR value=#SESSION.username# -Original Message- From: Yexley Robert D Contr Det 1 AFRL/WSI [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 11:35 AM To: CF-Talk Subject:

RE: automate CF studio browse refresh

2002-10-07 Thread Tim Laureska
Thanks Dave... that did the trick -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 3:24 PM To: CF-Talk Subject: RE: automate CF studio browse refresh This is a question for anybody still using CF Studio.. I just reinstalled CF Studio 4.0

RE: FORTA: CFMX - I've never seen anything so unstable in my life (backup please)

2002-10-07 Thread Rob Rohan
:) Tell Ben I said hi. Thanks for your help Sean, Rob -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 12:12 PM To: CF-Talk Subject: Re: FORTA: CFMX - I've never seen anything so unstable in my life (backup please) On Monday, Oct 7,

Encapsulating CFFTP within an A HREF is not respected

2002-10-07 Thread David Adams
For some reason, I cannot encapsulate a CFFTP tag within an A HREF. The result is an empty string, when I go to view source of the rendered HTML page. Any ideas? The following code does not work. a href=cfftp connection=myConnection action=getfile

RE: Debugging java errors in CFMX

2002-10-07 Thread Yexley Robert D Contr Det 1 AFRL/WSI
DOH!! I'll try that. Thanks much. ::YEX:: ))) -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 3:26 PM To: CF-Talk Subject: RE: Debugging java errors in CFMX Just a guess, but try quoteing all the value attributes I.e. cfprocparam

RE: Encapsulating CFFTP within an A HREF is not respected

2002-10-07 Thread Dave Watts
For some reason, I cannot encapsulate a CFFTP tag within an A HREF. The CFFTP tag doesn't output or return a string. What exactly are you trying to do, in plain English? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

RE: Primary Keys Duplicate Values

2002-10-07 Thread Andy Ousterhout
I highly recommend that you don't make Model number your primary key. Add a new field, numeric, and make your primary key a meaningless number that will never change. I've used several products that lock model number and for newer companies where their numbering system evolves, this has been an

Locking problem

2002-10-07 Thread Marlon Moyer
I've got a bit of code that exports a crystal report to a pdf file. I've surrounded this code with a lock like so: cfllock name=myLock type=Exclusive timeout=180 ... export to pdf code. /cflock The problem is that sometimes the reports run so long that they timeout the lock. From then on,

Is Updater installed? (was: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Sean A Corfield
On Monday, Oct 7, 2002, at 12:13 US/Pacific, [EMAIL PROTECTED] wrote: Sorry for the interruption. I don't wish to take away from this thread but how do you tell if the CFUpdater has already been installed or not? I have a client who doesn't remember if he installed the updater or not.

RE: I lost my brain - checkboxes

2002-10-07 Thread Tony Carcieri
Thanks everyone for your help! I appreciate it! -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 2:00 PM To: CF-Talk Subject: RE: I lost my brain - checkboxes I've done stuff where I also pass the universe of values as a hidden tag. So if

SOT:SQL Server Backup

2002-10-07 Thread Ben Densmore
Does anyone know off hand if there is a tool or if SQL Server has this built in where you can replicate what's on one DB Server to a second DB Server? We need to build a failover server as a backup to our SQL Server System but want all the data on the backup server to be in synch with the main

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Stacy Young
The best way to get something resolved is to open an incident with 'em. It's rare you'll get an answer on the forum. :\ Stace -Original Message- From: Ben Densmore [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 2:21 PM To: CF-Talk Subject: RE: CFMX - I've never seen

Re: Locking problem

2002-10-07 Thread Tyler Clendenin
Why not try putting a throwontimeout=yes with a catch around it, that may help. - Original Message - From: Marlon Moyer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, October 07, 2002 3:35 PM Subject: Locking problem I've got a bit of code that exports a crystal report

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Dave Watts
I get this error that says Error Executing Database Query.[Macromedia][SQLServer JDBC Driver]Connection reset by peer: JVM_recv in socket input stream read Here are the answers to your questions. - OS / patch level - Win2k SP3 - Database / patch level - SQL Server 7 SP4 - Is

Re: SOT:SQL Server Backup

2002-10-07 Thread Ian Lurie
Well, you can use a DTS - just schedule the backup server to import data from the primary server and you should be set. Ian Does anyone know off hand if there is a tool or if SQL Server has this built in where you can replicate what's on one DB Server to a second DB Server? We need to build

Re: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Sean A Corfield
On Monday, Oct 7, 2002, at 12:21 US/Pacific, Ben Densmore wrote: Here are the answers to your questions. - OS / patch level - Win2k SP3 - Database / patch level - SQL Server 7 SP4 - Is the DB on a separate machine? - Yes - Which driver are you using specifically?

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Stacy Young
Good idea. We're on Sun's 1.4.1 and so far so good. *crosses fingers* -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 3:58 PM To: CF-Talk Subject: RE: CFMX - I've never seen anything so unstable in my life I get this error that says

Roommate needed for DEVCON

2002-10-07 Thread Brendan O'Hara
Hello all, Just wanted to see if anyone was looking for a roommate for SAT-TUES at Devcon. I am interested in staying at the Dolphin so I can be near all the action but am looking to split the costs with someone if possible. If anyone has an interest please respond to me off-list at [EMAIL

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Ben Densmore
Here are the settings for one Datasource, I put in some dummy data for datasource name etc.. All my datasources have these same settings. Data Source Name - Datasource Name Database - Database Name Server - 0.0.0.0 Port - 1433 Username

RE: Debugging java errors in CFMX

2002-10-07 Thread Yexley Robert D Contr Det 1 AFRL/WSI
Well, when I first saw your reply, I was sure that would be the fix, but evidently that's not the problem. I added quotes around all of my parameters that I pass, and am still getting the same java null pointer error. Any other thoughts? Is there any way to debug this kind of thing in order

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Stacy Young
Check the build number under Version Information in the admin. Anything less than 6,0,0,52311 then it's not installed. Stace -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 3:13 PM To: CF-Talk Subject: Re: CFMX - I've never seen

CFMX: cfcontent/deletefile/IE - bug?

2002-10-07 Thread Marcello Frutig
Hello, I've seen today the following problem using CFMX (internal web server; updater installed; Win2k)... When accessing a page containing cfcontent type=application/pdf deletefile=yes file=c:\test.pdf the pdf file does not appear on the browser (IE6) and this message is written to

RE: SQL Server Backup

2002-10-07 Thread Smith, Matthew P -CONT(DYN)
Check BOL for transactional replication My dba's have it set up. As I understand it, every transaction is replicated from a publisher to subscribers. Basically what you are looking for, I think. They set it up so I'm not very knowledgeable about it. Matthew P. Smith Web Developer, Object

CFQUERY replacing ' with apos

2002-10-07 Thread Brian Thornton
I'm seeing this at my error of my cfquery... I cold fusion changing th query or is it the wasy CF outputs the error. I'm tryiing to update a timestamp and and a Hash. My output UPDATE Users SET DateHired = apos;{ts apos;2002-10-02 00:00:00apos;}, Username = apos;bobapos;, Password =

Re: SOT:SQL Server Backup

2002-10-07 Thread cf-talk
You might be interested in looking into Log Shipping or Failover Clustering. -Novak - Original Message - From: Ben Densmore [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, October 07, 2002 12:46 PM Subject: SOT:SQL Server Backup Does anyone know off hand if there is a

I prefer CF Studo to Dream Weaver as a dev tool

2002-10-07 Thread CS
Hi all, My reporting tools works perfectly fine under CF5.0 supporting client (browser) IE 5.x, IE6.x, Netcape 4.x and above until I installed it to CFMX eval and load some script for editing in Dream Weaver. Now, a simple js statement like this script language=javascript function report(rid)

RE: CFQUERY replacing ' with apos

2002-10-07 Thread Ben Densmore
That is just how MX displays the SQL in error messages, when you actually insert Data it goes in as it should. Not completely sure why it displays it like that though. Ben -Original Message- From: Brian Thornton [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 4:22 PM To:

Re: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Sean A Corfield
One of my team said they saw this behavior when they were working with a PC (app server) that was not part of the same domain as the database server. Are both your web/app server and db server registered into the same Windows networking domain? On Monday, Oct 7, 2002, at 13:06 US/Pacific,

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Benjamin S. Rogers
Nothing changed on the SQL Server, correct? No one checked the Boost SQL Server priority on Windows NT checkbox or changed any SMP settings? Is ColdFusion the only thing that talks to SQL? Don't rule out coincidence. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

Re: CFQUERY replacing ' with apos

2002-10-07 Thread Brian Thornton
How should Hashes be inserted? with single quotes or no? - Original Message - From: Ben Densmore [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, October 07, 2002 1:45 PM Subject: RE: CFQUERY replacing ' with apos That is just how MX displays the SQL in error messages,

Re: I prefer CF Studo to Dream Weaver as a dev tool

2002-10-07 Thread Marlon Moyer
I'm guessing that you need to add the plus signs before and after n {window.open('reportMain.cfm?rtype='+n+'report_ID='+rid,'givemereport','resizable=yes,menubar=yes,toolbar=yes,scrollbars=yes,width=710,height=500');} CS wrote: Hi all, My reporting tools works perfectly fine under CF5.0

RE: CFMX - I've never seen anything so unstable in my life

2002-10-07 Thread Ben Densmore
Yes, they are on the same domain. I guess one thing that could possibly because it as I am thinking about it now is that the Database server is behind a firewall, I am just using a test server now, not a live server, which is not on a firewall. But our server that we use for production is not on

Re: I prefer CF Studo to Dream Weaver as a dev tool

2002-10-07 Thread CS
Marlon, n is a string value for the parameter of 'rtype' but rid is a var, handled differently already. Thanks though. Don --- Marlon Moyer [EMAIL PROTECTED] wrote: I'm guessing that you need to add the plus signs before and after n

RE: CFMX: cfcontent/deletefile/IE - bug?

2002-10-07 Thread Stacy Young
I ran into a similar problem...I was sending an email with CFMAIL with a file as an attachment...then deleting the file afterwards...worked fine in CF5 but in CFMX it deletes the file before sending the email with attachment so I get the same error you mentioned... Stace -Original

Re: Primary Keys Duplicate Values

2002-10-07 Thread Srimanta
Thanks. Yes I understand. What I could do is to combine both modelno and the name of the manufacturer and use them in updates. That should prevent updating the wrong records should the model number not be unique. The problem with using an additional field (perhaps with auto number) is that the

SPECTRA - 1.5.2 Beta Question

2002-10-07 Thread Michael Conger
Ok, this is a little OT, but I'm getting no love from Spectra-talk and my posts on the beta site keep timing out. Question: Will the final release of Spectra 1.5.2 require CFMX Enterprise, or will it run on CFMX Pro? anyone... anyone... Bueller... Michael Conger [EMAIL PROTECTED]

Re: I prefer CF Studo to Dream Weaver as a dev tool

2002-10-07 Thread Marlon Moyer
then wouldn't you have to escape the single quotes like this: rtype=\'n\' CS wrote: Marlon, n is a string value for the parameter of 'rtype' but rid is a var, handled differently already. Thanks though. Don --- Marlon Moyer [EMAIL PROTECTED] wrote: I'm guessing that you need to add the

Re: MX and Javamail - Upgrading MX to Javamail 1.3

2002-10-07 Thread jon hall
I went to the Java and JVM settings in the CF admin and added the complete path to the javamail mail.jar file as the first entry in the Class Path field and restarted CF. It didn't work. Is there another classpath for coldfusion somewhere? -- jon mailto:[EMAIL PROTECTED] Monday, October 7,

RE: FORTA: CFMX - I've never seen anything so unstable in my life (backup please)

2002-10-07 Thread Scott Weikert
FYI this is also a handy way to do an INSERT into a table and then get the identity field value of that insert... cfquery name=queryname set nocount on (your INSERT call here) select varname = @@identity set nocount off /cfquery My new ID is #queryname.varname# Works great. --Scott At 03:13

RE: MX and Javamail - Upgrading MX to Javamail 1.3

2002-10-07 Thread Dave Watts
Is there another classpath for coldfusion somewhere? Yes. Edit \CFusionMX\runtime\bin\jvm.config. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~| Archives:

CFMX issues

2002-10-07 Thread Brook
We've been running CFMX now in production for about a month without any major issues. There are a couple of things however that our user base has begun to report on multiple occasions and things we have noticed ourselfs. I am wondering if any one else has these issues with CFMX / win2K: 1.

RE: Saving an Image Datatype in CF5

2002-10-07 Thread Sicular, Alexander
Some of my code... cfset path = d:\temp\ cfset thisfilename = path id_ getBinaryData.objectID - getBinaryData.uuid . getBinaryData.dataExtension cfset tobin = tobinary(getBinaryData.base64String) cfif fileexists(thisfilename) cffile action=DELETE file=#thisfilename# /cfif cffile

Re: I prefer CF Studo to Dream Weaver as a dev tool

2002-10-07 Thread CS
Marlon, My oversight (forgot n here is a single space string value), so now I've made change as follows: 'reportMain.cfm?rtype=nreport_ID='+rid OR 'reportMain.cfm?rtype='a st value'report_ID='+rid Thanks. Don --- Marlon Moyer [EMAIL PROTECTED] wrote: then wouldn't you have to escape the

RE: CFMX: cfcontent/deletefile/IE - bug?

2002-10-07 Thread Benjamin S. Rogers
I believe the behavior of the CFMail tag was changed so that it no longer immediately embeds the attachment, but rather, waits until it sends the message. This probably doesn't directly relate to Marcello's problem. Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

RE: CFMX issues

2002-10-07 Thread Benjamin S. Rogers
Are you sure #1 isn't the Internet Explorer 6 cookie/privacy bug? http://www.c4.net/Index.cfm?Method=Support.FAQ.IE6Privacy Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057 -Original Message- From: Brook [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 6:03

RE: CFMX issues

2002-10-07 Thread Rob Rohan
Hi Brook, We had a similar issue and it turned out that if the cfapplicaion tag somehow runs twice it can cause odd client variable saving (it was running twice for us because in was in our app_globals.cfm using fusebox). It's something to check at least Cheers, Rob -Original

RE: CFMX issues

2002-10-07 Thread Brook
Benjamin, I don't think so because it happens on my local system intermittently without having made any changes to the cookie settings. Brook At 06:16 PM 07/10/02 -0400, you wrote: Are you sure #1 isn't the Internet Explorer 6 cookie/privacy bug?

Slightly OT: Database backup strategies?

2002-10-07 Thread Gregory Harris
Hey there, right now I was trying to figure out a way to set up a scheduled backup service once a week from a SQL Server database on a remote host to MS Access database locally via the Internet. An entire database needs to be backed up as such. The database size is approximately 20MB. What

Compiler arguments

2002-10-07 Thread Brook
Did anyone every figure out the arguments for the cfmx compiler? Specifically, any way to compile non - *.cfm files? Brook ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Saving an Image Datatype in CF5

2002-10-07 Thread Ciliotta, Mario
Alexander, I was wondering if you could post the code that also does the image upload to SQL. I have tried but I still cannot get it work correctly. Also could the same upload be used for other types - such as word or excel documents? I would like to be able to store these documents in a

RE: Encapsulating CFFTP within an A HREF is not respected

2002-10-07 Thread Mosh Teitelbaum
I think you're mistaking the purpose of the CFFTP tag. CFFTP allows Cold Fusion to act as an FTP client; uploading, downloading, etc. files from a remote FTP server. It does NOT act like CFFORM, CFINPUT, etc. which spit out associated HTML equivalents. I'm assuming you want to create a link to

overhead for large UDF libraries?

2002-10-07 Thread Gyrus
I'm curious (again!). Just starting to use UDFs to any extent... what are the overheads (if any) involved in CFINCLUDEing one or more large libraries of UDFs? I've found various references, but I can't find something that hits the nail on the head. Here's a few things I think or am unclear

Re: overhead for large UDF libraries?

2002-10-07 Thread S . Isaac Dealey
I can't speak to the internal mechanics of the cf-server, however, there may be ways to perform rudimentary load testing on the library in question, for instance, set a variable to gettickcount() prior to including the library, then set a second variable to gettickcount() immediatly following the

Re: Any Christian ColdFusion developers out there?

2002-10-07 Thread Ewok
cf-community... cf-community... cf-community... cf-community... cf-community... cf-community... cf-community... - Original Message - From: Lewis Sellers [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 03, 2002 6:55 PM Subject: Re: Any Christian ColdFusion

RE: overhead for large UDF libraries?

2002-10-07 Thread Matthew Walker
I use the same udf libraries on every page of all sites. Knowing that some function is always there greatly increases working efficiency, I find. I also note that the CF debugging info always seems to state 0ms, which puts it well down the list of possible efficiency issues for me.

RE: Saving an Image Datatype in CF5

2002-10-07 Thread Ben Koshy
Alexander, Is the getBinaryData a CFQUERY RecordSet? Perhaps you could show your query? I'm not sure where you are getting: getBinaryData.objectID, getBinaryData.UUID, getBinaryData.Extension and base64String? I am familiar with Base64ing binary files and storing them, however in this case

Time Required for Updating DB

2002-10-07 Thread Srimanta
Hi I am having trouble updating a fairly small size database with approx 2 records. Size in MB is approx 18 MB. Type Access 2000. I am updating one particular column, in all the rows with CF Query and Loop tags. First the program generates : Bad Allocation Error complaining of Virtual memory

CFMX changes studio

2002-10-07 Thread Michael Dinowitz
I remember there was something about the install of CFMX altering something in CF Studio. Anyone remember what and can point me to a resource? Thanks (yes, I checked the archives but can't find it) Michael Dinowitz Master of the House of Fusion http://www.houseoffusion.com

Re: MX and Javamail - Upgrading MX to Javamail 1.3

2002-10-07 Thread Paul Hastings
Is there another classpath for coldfusion somewhere? Yes. Edit \CFusionMX\runtime\bin\jvm.config. dumb question but do java classpaths work like paths, that is, i can point at a dir cf/whatever will find use all the classes in that dir? --- Outgoing mail is certified Virus Free. Checked

Re: Big Trouble in T-SQL land

2002-10-07 Thread Paul Hastings
Thanks for you help Paul. Actually, this doesn't fail in cf5. The SET NOCOUNT allows for multi sql statements (in MS SQL). Thanks for your i guess thats ODBC vs JDBC quirks. i use SET NOCOUNT w/mx but this is the only time i've seen it fail. Moving to a stored proc does fix the problem;

Re: Time Required for Updating DB

2002-10-07 Thread S . Isaac Dealey
.. I'd be really suspect that there's something wrong, but I'd have to see the code to make any really intelligent comments about it... On cf5 you might want to build yourself a rudimentary progress bar that outputs a little bit of the data from the current record being updated, so you can see

RE: Primary Keys Duplicate Values

2002-10-07 Thread Andy Ousterhout
I have the same issue in that I have a web system that I am integrating with my Order Management/Mfg system. The Order Mgmt uses Product Number as primary key, my web system does not. The advantage that I have is that my Order Mgmt System enforces the unique Product Number Key. In your

Reminder: CFMX Server Update Available

2002-10-07 Thread Tilbrook, Peter
http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenotes_mx _updater.html ** The information contained in this e-mail, and any attachments to it, is intended for the use of addressee and is confidential. If

RE: Saving an Image Datatype in CF5

2002-10-07 Thread Sicular, Alexander
ya , this works with any binary data type. the trick is to make sure you are using text data type for string data and image data type for binary data. search http://www.houseoffusion.com/cf_lists/ , michaels awesome list archive, for ... subject : images to the database anyone...? , which

RE: Saving an Image Datatype in CF5

2002-10-07 Thread Sicular, Alexander
sorry for the ambiguity, getBinaryData is a CFQUERY RecordSet. i left out the query , it was on a different page of my code. a simple call to the database to get some id stuff and whatever... gl, alex -Original Message- From: Ben Koshy [mailto:[EMAIL PROTECTED]] Sent: Monday, October

MX Debug option screws up javascript ??

2002-10-07 Thread DDE
Hi all, I have an application page in which a button opens a form with simple Javascript functions in a new browser window . Everything works fine in CF5 and even CFMX if I disable the debug output. Whenever I allow the debug output in MX (classic or dockable) I get a Javascript error stating

<    1   2