Re: How to get directory from full URL?

2002-10-02 Thread Stephen Moretti
I should probably have a UDF like ListRestReverse() to do that, 'cause I've done it in a number of places... but I don't. :P There might be one on cflib.org tho... I haven't checked. Why??? I'm so confused!!! Why on earth, how on earth, do so many people come up with a double negative for

SQL Question - Full-text indexing MS-WORD docs

2002-10-02 Thread Vishal Narayan
My coldfusion web application uses a SQL 2000 DB on Win 2K server. Presently, we are storing resumes of registered candidates in our database, the table being used has the following design : USER_ID int 4 ENTRY_DATE datetime8

RE: CFM Files are Locked?

2002-10-02 Thread Hugo Ahlenius
There is a very useful (free) tool at sysinternals.com that is called nthandle. I use it frequently. Using that tool you can see list handles/files and see exactly what application is locking your file. I use nthandle | less and then it is easy to use less to search the output. (it requires a

Re: CFC debug bug...

2002-10-02 Thread Jochem van Dieten
jon hall wrote: cfset objectOfOurDesire = createObject(component, beaver) A dirty mind is a joy forever :) Unpatched CF MX, default JRE: Debug output: 0 ms 0 ms 1 CFC[ C:\CFusionMX\wwwroot\www\beaver.cfc | feedTheBeaver( grapes, 1) ] from C:\CFusionMX\wwwroot\www\beaver.cfm 0 ms 0 ms

Re: SQL Question - Full-text indexing MS-WORD docs

2002-10-02 Thread Paul Hastings
Previously, resumes could only be uploaded in text form, by submitting from a form. Now, I want users to be able to upload resumes as word documents, http://support.microsoft.com/support/sql/content/2000papers/FTS_White%20Pape r.asp?GSSNB=1 add a char column to hold doc type: .doc (that's DOT

Re: SQL Question - Full-text indexing MS-WORD docs

2002-10-02 Thread Stephen Moretti
Although database management systems now allow you to insert binary objects into your database, this is not their intended use and are, therefore, not very good at this! VERY simple solution. Store your resumes in a safe place off of the root of your web server and index them using Verity

RE: CFDJ Readers Choice Awards

2002-10-02 Thread Ken Wilson
And, amazingly, the leading book seems to be one that isn't even published yet. Ken ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: SQL Question - Full-text indexing MS-WORD docs

2002-10-02 Thread Paul Hastings
Although database management systems now allow you to insert binary objects into your database, this is not their intended use and are, therefore, not very good at this! no. sql server is quite good at this. i imagine other big iron dbs are also adept as well. rumors are that the next major

RE: CFDJ Readers Choice Awards

2002-10-02 Thread Robertson-Ravo, Neil (REC)
isnt that a surprise?.h -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: 02 October 2002 11:22 To: CF-Talk Subject: RE: CFDJ Readers Choice Awards And, amazingly, the leading book seems to be one that isn't even published yet. Ken

-OT- Javascript - Dynamic Variable Names

2002-10-02 Thread Thane Sherrington
If someone knows of a good Javascript list where I can ask this, let me know and I'll go there. I'm trying to loop in Javascript and create a dynamic variable name in each loop (the way I can do a variablename#loopvalue# in CF.) Any idea how I could do this? I'm trying to access form

Re: SQL Question - Full-text indexing MS-WORD docs

2002-10-02 Thread Jochem van Dieten
Stephen Moretti wrote: Although database management systems now allow you to insert binary objects into your database, this is not their intended use and are, therefore, not very good at this! Maybe, maybe not. A lot depends on what you are doing exactly, and how complete the database

Re: -OT- Javascript - Dynamic Variable Names

2002-10-02 Thread Marlon Moyer
www.irt.org is a great resource and here's a link to an answer to your question: http://developer.irt.org/script/809.htm Marlon Thane Sherrington wrote: If someone knows of a good Javascript list where I can ask this, let me know and I'll go there. I'm trying to loop in Javascript and

Has anyone seen this before? - documented bug?

2002-10-02 Thread Dave Wilson
Hi all, I've just been checking through our applications after upgrading from CF4.5 to CFMX and came across the following strange error. Basically I have a template which carries out various calculations to determine insurance premiums for a vehicle. So my final output variable is simply called

Re: CFM Files are Locked?

2002-10-02 Thread Zac Spitzer
[EMAIL PROTECTED] wrote: IIS likes to lock files for a little while if they have been recently accessed from the web. If you wait about 30 mins, they'll be freed. Annoying. rename then delete then write a new file always seems to work for me in w2k z

RE: CFM Files are Locked?

2002-10-02 Thread Hugo Ahlenius
or restart IIS, seems less of a hassle compared to waiting 30 mins! :) (for a non-production machine...) ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Searching with ListFind

2002-10-02 Thread Everett, Al
You can reference a query as a 2-D array. -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 8:29 PM To: CF-Talk Subject: RE: Searching with ListFind Yeah, I know... stupid question. ;-( I was thinking that there was some

RE: Math In MX?

2002-10-02 Thread Everett, Al
Not that this answers your question, but you're unnecessarily using pound signs. cfset Answer = CountMale.RecordCount / Responses is more correct. Scoping your variable wouldn't be a bad idea either. -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Re: -OT- Javascript - Dynamic Variable Names

2002-10-02 Thread Thane Sherrington
At 06:40 AM 02/10/02 -0500, Marlon Moyer wrote: www.irt.org is a great resource and here's a link to an answer to your question: Thanks. That appears to have solved it. T ~| Archives:

RE: what do you use for email newsletters ?

2002-10-02 Thread Larry Juncker
We use Infusion MSMail or iMSMail for short. It works super. Larry Juncker Senior Cold fusion Developer Heartland Communications Group, Inc. [EMAIL PROTECTED] (515) 574-2122 CONFIDENTIALITY NOTICE The information contained in this e-mail is intended only for the use of the individual or entity

CFFORM - BUG

2002-10-02 Thread Adam Reynolds
Ok, This is really stupid. If I use CFForm on a server where /CFIDE has been moved to somewhere 'secure' the following code is inserted at the top of a page containing cfform. I have a field called item. SCRIPT LANGUAGE=JavaScript TYPE=text/javascript SRC=/CFIDE/scripts/cfform.js/SCRIPT SCRIPT

XML parsing error...

2002-10-02 Thread John Beynon
i'm trying to read in an XML file to do some manipulation with it - Using CFFile it works fine: cffile action=read file=#request.pathtoXML#\#request.XMLfilename# variable=application.blogXML but if i want to avoid a CFFILE call I could use CFSAVECONTENT eg; cfsavecontent

RE: CFFORM - BUG

2002-10-02 Thread Mike Townend
Its perfectly valid... Your only supposed to run 1 website per coldfusion server ;) -Original Message- From: Adam Reynolds [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 2, 2002 14:37 To: CF-Talk Subject: CFFORM - BUG Ok, This is really stupid. If I use CFForm on a server where

OT:: Redhat FTP mirrors.

2002-10-02 Thread Che Vilnonis
Sorry for the OT post. Does anyone have a good link for Redhat FTP mirrors? TIA - Ché ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Query of Queries Error

2002-10-02 Thread Ryan Kime
I am getting the same Unsupported Numeric type error on a QofQ from a site I'm migrating from CF5 to CFMX. It worked fine in CF5. Mine sounds only slightly different in the fact that my QofQ is only used to order the query results. Notice I don't have all the tie fields in the QofQ, could that

ot: sql server error, help!

2002-10-02 Thread Tony Weeg
The job failed. Unable to determine if the owner (NAVTRAK525\Administrator) of job SystemStatusCheck1 has server access (reason: The server could not load DCOM. [SQLSTATE 42000] (Error 7404)). this is what I am getting, when we try to run a job that has ran fine for 6 months. all of a sudden

RE: CFFORM - BUG

2002-10-02 Thread Ben Forta
That is the default behavior, but you may specify an alternate path in the CFFORM SCRIPTSRC attribute. So, nope, not really stupid at all. --- Ben -Original Message- From: Adam Reynolds [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 9:37 AM To: CF-Talk Subject: CFFORM -

RE: Save form data before submit

2002-10-02 Thread Ryan Kime
Something like this? I am using this in a contact form page. script language=javascript function getperson() { if (document.Form1.Products.value==GI) { document.Form1.sendto.value=[EMAIL PROTECTED] } if (document.Form1.Products.value==HE) { document.Form1.sendto.value=[EMAIL PROTECTED] } if

RE: : Redhat FTP mirrors.

2002-10-02 Thread Dave Livingston
I searched Google for redhat 8 mirror and eventually found one that wasn't crawling. I'd tell you which one I found but then you would slow me down and I almost have the 3rd iso pulled down. Dave PS I'll email you off list when I get the last cd pulled down. David Livingston Network Admin

RE: CFFORM - BUG

2002-10-02 Thread Alex Hubner
If space is not a problem, upload the scripts and classes folders to a /cfide/ folder under your website root. It's only 7megs. Any legal/licensing implications on that? Not sure, maybe not. []'s Alex | alex hübner | [EMAIL PROTECTED] | www.amazonia.org.br -Original

topdoc.gif (WAS RE: CFFORM - BUG)

2002-10-02 Thread Ian Tait
On a similar note, Why is there a link in the debugging (classic look) info to a gif within /CFIDE?: /CFIDE/debug/images/topdoc.gif In one scenario, if /CFIDE exists, but is password protected NTLM popup stylee, you get prompted for the user/password - a tad annoying, if /CFIDE hasn't been

RE: : Redhat FTP mirrors.

2002-10-02 Thread Justin Ribeiro
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 If you're looking for the 8.0 release, Psyche, the most up-to-date list is at: http://freshrpms.net/mirrors/psyche.html If you're looking for Red Hat mirrors, check Red Hat's list: http://redhat.com/download/mirror.html Cheers, Justin -

Deleting Compiled Java

2002-10-02 Thread Adam Reynolds
How do I do this and why can't I purge all the compiled java through the MX admin interface? Adam ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Deleting Compiled Java

2002-10-02 Thread Robertson-Ravo, Neil (REC)
not sure? have you restarted the services? -Original Message- From: Adam Reynolds [mailto:[EMAIL PROTECTED]] Sent: 02 October 2002 15:22 To: CF-Talk Subject: Deleting Compiled Java How do I do this and why can't I purge all the compiled java through the MX admin interface? Adam

RE: : Redhat FTP mirrors.

2002-10-02 Thread Che Vilnonis
Thanks guys!!! -Original Message- From: Justin Ribeiro [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 10:12 AM To: CF-Talk Subject: RE: : Redhat FTP mirrors. -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 If you're looking for the 8.0 release, Psyche, the most up-to-date

RE: Deleting Compiled Java

2002-10-02 Thread Bryan F. Hogan
You can manually delete the files in this folder #MX_WebRoot#\WEB-INF\cfclasses Don't know why that is not in the admin. Did not really think about it. -Original Message- From: Adam Reynolds [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 10:22 AM To: CF-Talk Subject:

RE: Deleting Compiled Java

2002-10-02 Thread Benjamin S. Rogers
The class and java files are located in the following directory: \CFusionMX\wwwroot\WEB-INF\cfclasses\ After deleting them, you'll have to restart the ColdFusion service. As for why you can't flush the classes from within the administration interface, I don't know. It would seem like a good

RE: Deleting Compiled Java

2002-10-02 Thread Mike Townend
I usually delete everything that's in the C:\CFusionMX\wwwroot\WEB-INF\cfclasses Directory Altho sometimes I need to stop the service then delete the files and then start the service... HTH -Original Message- From: Adam Reynolds [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

Re: Cross posting: CF5 eval???

2002-10-02 Thread Sean A Corfield
On Tuesday, Oct 1, 2002, at 06:49 US/Pacific, Christine Lawson wrote: Great, for future reference here is the direct link to the Developer/Trial version of CF 5 for Windows: http://download.macromedia.com/pub/coldfusion/esd/coldfusion-50-win- us_devrel.exe With permission from the

RE: CFFORM - BUG

2002-10-02 Thread Adam Reynolds
Actually it is stupid because Dreamweaver MX on hitting Ctrl+F5 does not provide you with the full parameter set for cfform so there is no clue as to why this is happening. It will also cause issues with people that are remotely web hosting their sites where they assume CFFORM will work as

Verity Search Holding Page

2002-10-02 Thread Ian Vaughan
Hi I am using the verity search engine with Coldfusion server 4.5, however I am encountering some big problems with this. Has anybody found the search to be very slow, I am finding that when I fill in the form field with a term to be searched it can cause some problems if you are using

Purging Client Session Vars

2002-10-02 Thread Matthew Friedman
I have a quick question about the way CF 5 Purge data for clients that remain unvisited. I have set CF to remove anything that is over 10 days but when I checked the database, I saw lastvisit dates of 3/20/02 as the last visit. Do I need to write my own service to do this or did I not set up

OT: Hosting question

2002-10-02 Thread Kris Pilles
I am looking to expand my hosting customer base and I am curious if anyone knows of where I can either buy accounts from an existing hosting company or buy a hosting company etc..any sort of input would be greatly appreciated. I am having no luck in the search engines looking for anything

Random Stuff

2002-10-02 Thread Adrian Lynch
I have a udf that creates a random string that works great. The problem is, looping over this for multiple inserts into a db causes problems because it loops to quickly. Someone mentioned that all the random functions in CF use the current time/date as a seed. The way around this is to either

CFC incorrect argument type - possible bug?

2002-10-02 Thread Deanna Schneider
Hi Folks, So, I've installed cfmx on the laptop and I'm playing around with writing cfc's, and I didn't RTFM. So, when I was setting up an argument in the CFC, I claimed it would have a type of integer. (Seems like it should be a valid type, since it's a valid Java type, thinks me.) Anyway, CFC

RE: Purging Client Session Vars

2002-10-02 Thread Debbie Dickerson
Have you applied the hot fix that fixes an issue with purging from databases? Sounds like what you might be running in to. It's available here: http://www.macromedia.com/v1/Handlers/index.cfm?ID=22730Method=Full Deb -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED]]

RE: CFC incorrect argument type - possible bug?

2002-10-02 Thread Raymond Camden
If you specify a type that CFCs don't recognize, it assumes you mean another CFC. This allows you to define arguments that are instances of CFCs. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED]

RE: Random Stuff

2002-10-02 Thread Mosh Teitelbaum
How about CreateUUID()? -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 10:42 AM To: CF-Talk Subject: Random

Re: Hosting question

2002-10-02 Thread Rex Wickham
Hi Take a look at www.coldfusionhosts.net It's got lots of hosting companies listed. Could be a useful starting point.. Rex Coldfusionhosts admin - Original Message - From: Kris Pilles [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 02, 2002 3:56 PM Subject:

RE: Random Stuff

2002-10-02 Thread kpeterson
Can you use the random function on the database instead? Kore Peterson Database Development Specialist SEH - Minneapolis 612.758.6739 Mosh

Re: Cross posting: CF5 eval???

2002-10-02 Thread Charlie Griefer
Sean: Very cool...and not to push it...how about Studio 5? We get quite a few people coming into our #cf channel asking how they can get a (legitimate) copy of Studio 5. Thx, Charlie - Original Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

OTG ApplicationXtender and ColdFusion

2002-10-02 Thread Mark W. Breneman
Anyone out there have any experience good or bad with using OTG ApplicationXtender with coldfusion? Thanks Mark W. Breneman -Macromedia Certified ColdFusion Developer -Network / Web Server Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com 608.270.9770

Converting PDF's to text

2002-10-02 Thread Jillian Carroll
I'm faced with a bit of a problem here... I've got a client who is hosted on my CF 5 (soon to be CFMX once I can get CFMX to run stable in my testing environment) box on Linux. This client has a need to search through PDF's... well it has become very apparent that CF on Linux will not index

Recordset as cfargument?

2002-10-02 Thread Paul Wilson
How can I pass a recordset from Flash to ColdFusion through Flash remoting and loop through the recordset in the cfc? In actionscript I have.. myservice.UpdateContactRS(newvalues_rs) // This sends the recordset to the cfc I know i need a function (cffunction) called UpdateContactRS, but

RE: Recordset as cfargument?

2002-10-02 Thread Raymond Camden
It should be converted to a query. So your argument would be: cfargument name=whatever type=query required=true or false, up to you === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo

Re: Cross posting: CF5 eval???

2002-10-02 Thread Sean A Corfield
On Wednesday, Oct 2, 2002, at 08:29 US/Pacific, Charlie Griefer wrote: Very cool...and not to push it...how about Studio 5? We get quite a few people coming into our #cf channel asking how they can get a (legitimate) copy of Studio 5. Hmm, I don't know. I'll defer to Christine L and Vern

failed to send

2002-10-02 Thread Robert Orlini
Hello, Upon checking the mail log in the CF directory I noticed that it contains many lines as follows: Error,TID=208,08/13/02,11:42:37,Failed to send the spooled mail file, C:\CFUSION\MAIL\spool\902.cfmail. SMTP server replied Internal error: Pending mail operations must be completed. Moved

RE: Recordset as cfargument?

2002-10-02 Thread Mike Townend
When I was trying it.. It wouldn't work... Couldn't seem to send anything but simple variable types from flash to CF... However recordsets from CF to flash worked a charm.. -Original Message- From: Paul Wilson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 2, 2002 16:56 To:

RE: Cross posting: CF5 eval???

2002-10-02 Thread Vernon Viehe
CF Studio has been renamed as HomeSite+, and is available with the purchase of DWMX (Win) - at a price less than CFStudio was. No prior versions of CF Studio are available. It's true that HomeSite+ (essentially CFStudio 5.1) had some UI changes as a result of the Adobe lawsuit, specifically,

Re: Has anyone seen this before? - documented bug?

2002-10-02 Thread Sean A Corfield
Perhaps you have a variable called premium elsewhere in your code that has a non-simple value? On Wednesday, Oct 2, 2002, at 04:53 US/Pacific, Dave Wilson wrote: Hi all, I've just been checking through our applications after upgrading from CF4.5 to CFMX and came across the following

RE: XML parsing error...

2002-10-02 Thread Rob Rohan
I haven't used CFCs much nor cfsavecontent however my guess is: an XML document should start with ?xml and some parsers will explode if there is ANYTHING before that - even a single space. When you are using cfsavecontent it may be putting information before the initial ?xml declaration. Also

Re[2]: Save form data before submit

2002-10-02 Thread Critter
oi Robert!! why couldn't you just convert the form scope to a wddx packet, and chuck that into a db on the action page of the form? -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Blog=http://blog.ctzc.com;

RE: Has anyone seen this before? - documented bug?

2002-10-02 Thread Adam Reynolds
Make sure you identify the scope of the variable. I had a variables.url I was calling successfully as url in CF5 but in CFMX it looks like they changed the look up sequence and URL causes issues so I had to explicitly use variables.url. Adam -Original Message- From: Sean A Corfield

RE: failed to send

2002-10-02 Thread Tony Weeg
are you trying to send attachments with these mail messages? ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: Random Stuff

2002-10-02 Thread Adrian Lynch
It wouldn't fit in with the way the site is built, it's just a shame the udf works but not at speed. Ade -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 02 October 2002 16:20 To: CF-Talk Subject: RE: Random Stuff Can you use the random function on the

RE: Has anyone seen this before? - documented bug?

2002-10-02 Thread Raymond Camden
Right, URL is reserved, along with server, file, form, and a few others I can't remember off the top of my head. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is

RE: Has anyone seen this before? - documented bug?

2002-10-02 Thread Shahzad.Butt
I have seen same error message by migrating from CF5 to CXFMX. But in my case CFMX was playing up with GUIDs (in SQL Server). So rather than using JDBC ODBC bridge, I chose Microsoft SQL Server when adding DSN. And it works perfect. -Original Message- From: Dave Wilson [mailto:[EMAIL

CF Application Logs

2002-10-02 Thread Randell B Adkins
Has anyone seen this error in the server.log file from the CF Administrator? Caught a fatal signal (4) - Aborting OR Caught a fatal signal (11) - Aborting After receiving this error, CF Executive (I imagine) initates a call for restarting the CF Application Server Services. If so, any

Date Comparison

2002-10-02 Thread Chris
I'm trying to grab all records in a table that were created within the last year. I started by creating a variable called yearback. CFSET yearback=#DateAdd('', -1, NOW())# this is my SQL where clause WHERE customer_orders.shipdate #yearback# Problem is, some of the ship

RE: failed to send

2002-10-02 Thread Robert Orlini
No no attachments are sent. Just a bounce back reply email after they fill out a form. RO -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 11:49 AM To: CF-Talk Subject: RE: failed to send are you trying to send attachments with these mail

OT: IIS 5 randomly stops serving pages

2002-10-02 Thread Bryan Stevenson
Hi All, I'm running Win 2K Pro with IIS 5 and have run into a weird problem. Periodically the server will stop server pages (users see Page cannot be displayed). IIS and the WWW service are both running. If I try and restart the WWW service, it will not successfully restart. If I try and stop

RE: Save form data before submit

2002-10-02 Thread Robert Segal
To save the information to a database you would need to submit a cfm page. On way to do this is with a hidden frame. The onChange event from a form field in a visible frame could populate a field in a hidden frame and then submit that page in the hidden frame (which would write the information

Re: IIS 5 randomly stops serving pages

2002-10-02 Thread Bryan Stevenson
OK I killed the server again and when trying to restart IIS it says Address already in use? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] -

MIME type question

2002-10-02 Thread Brian Ferrigno
Does anyone know what MIME type a .csv file would have? I am trying to upload a csv file using the CFFILE tag and can't seem to find the right type. The list of MIME types i've tried so far text/x-csv,text/csv,application/csv,application/msexcel,application/excel,ap

RE: Random Product, with a twist?

2002-10-02 Thread Ken Brocx
You could just put a featured bit-field in the table then call a page via scheduled task to set a random one to featured. Ken -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 11:39 AM To: CF-Talk Subject: Random Product, with a

RE: Has anyone seen this before? - documented bug?

2002-10-02 Thread Rob Rohan
We received this error as well while moving from CF5 to MX. We have not found a fix yet (or even found the problem) we do not use JDBC, we go straight to SQL server as Shahzad is doing; however this error still happens. -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED]]

RE: MIME type question

2002-10-02 Thread Rob Rohan
text/plain ? -Original Message- From: Brian Ferrigno [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 9:29 AM To: CF-Talk Subject: MIME type question Does anyone know what MIME type a .csv file would have? I am trying to upload a csv file using the CFFILE tag and can't seem

RE: embedding cfmail in a cfoutput -- thx -- again thx

2002-10-02 Thread Gilbert Midonnet
Dave Wilson, S.Issac Dealey, Thx again. I think I have it now. I played around with things a little bit and have a far stronger understanding. // glm -Original Message- From: Dave Wilson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 11:33 AM To: CF-Talk Subject: RE:

Registry 129 meg ... CF 5.0

2002-10-02 Thread Bartee Lamar
Is there any thing in CF that would cause a VERY large registry It does not look like CF is set to use Registry for client variables. Any Knowledge based articles, I cannot find any Where in Registry does CF store stuff... Bartee Lamar www.enterpriseenergy.com

RE: MIME type question

2002-10-02 Thread Brian Ferrigno
That doesn't work either. I'm using this list for starters: ftp://ftp.isi.edu/in-notes/iana/assignments/media-types/media-types. I was hoping there was one they missed. -Original Message- From: Rob Rohan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 12:50 PM To: CF-Talk

RE: Recordset as cfargument?

2002-10-02 Thread Paul Wilson
I can't get it working. Can you take a look at my code. If my actionscript recordset has the followingstructure... newvalues_rs=new RecordSet([DSN,SourceTable,SourceField,NewValue,ContactID]) and my method call is ... service.UpdateContactRS(newvalues_rs) In my cfc i have.. cffunction

RE: Recordset as cfargument?

2002-10-02 Thread Collin Tobin
Paul- So you have columns in your local recordset, but is there data? Collin Tobin QA Engineer 617 219 2000 [EMAIL PROTECTED] Macromedia® What the web can be.(tm) -Original Message- From: Paul Wilson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 1:16 PM To: CF-Talk

Localization questions

2002-10-02 Thread Kevin Gilchrist
Hi, We may need to provide an extranet CF 5.0 app to a Japanese client so I was wondering if any of you out there have had experience of using CF in a multi-byte character environment. Specifically: - we're using Oracle and while we need to create a new Oracle database with the right character

Re: Registry 129 meg ... CF 5.0

2002-10-02 Thread Paris Lundis
Client variables are a sure fire culprit of exploding registries... I have one that has a 500+ meg registry... Thus we are moving to cookies ... yeah yeah.. lesser evil or greater... Is it possible that you had client storage in registry before and somehow that changed and orphaned the data?

RE: Registry 129 meg ... CF 5.0

2002-10-02 Thread Mark A. Kruger - CFG
What's the OS? -Original Message- From: Bartee Lamar [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 11:53 AM To: CF-Talk Subject: Registry 129 meg ... CF 5.0 Is there any thing in CF that would cause a VERY large registry It does not look like CF is set to use Registry

RE: Recordset as cfargument?

2002-10-02 Thread Paul Wilson
Yes there is itemToAdd ={DSN:Test,SourceTable:recordsetname.SourceTable,SourceField:recordsetname.SourceField,NewValue:newvalue,ContactID:_global.ContactID}; newvalues_rs.addItem(itemToAdd) -Original Message- From: Collin Tobin [mailto:[EMAIL PROTECTED]] Sent: 02 October 2002

RE: MIME type question

2002-10-02 Thread Dan Haley
Search the archives for posts about mime from Dave Watts (http://www.houseoffusion.com/cf_lists). He has a page out on figleaf.com that I'm pretty sure has .csv as one of the examples. Dan -Original Message- From: Brian Ferrigno [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02,

RE: CF Application Logs

2002-10-02 Thread Mike Brunt
Randell, are there any other messages directly before this in the Application log? Kind Regards - Mike Brunt, CTO Webapper http://www.webapper.com Downey CA Office 562.243.6255 AIM - webappermb Webapper - Making the NET work -Original Message- From: Randell B Adkins [mailto:[EMAIL

RE: CF Application Logs

2002-10-02 Thread Randell B Adkins
Nope... The only other messages are the ones indicating that CF is restarting.. [EMAIL PROTECTED] 10/02/02 01:22PM Randell, are there any other messages directly before this in the Application log? Kind Regards - Mike Brunt, CTO Webapper http://www.webapper.com Downey CA Office 562.243.6255

Re: Localization questions

2002-10-02 Thread Jochem van Dieten
Kevin Gilchrist wrote: We may need to provide an extranet CF 5.0 app to a Japanese client Do yourself a favour and get MX. Jochem ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Odd extension

2002-10-02 Thread Mark A. Kruger - CFG
Folks, Does anyone know what the .rs extension is? I'm on a site that is using doc names like index.rs?id=34939. Any ideas? -mk ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: CF Application Logs

2002-10-02 Thread Mike Brunt
Randell, have you checked the Server log to see if there are any clues there? From my experience these sorts of errors usually relate to memory corruption issues. If we are to try and help it would be good to know the following. Operating System, Web Server, Version of CF (SPacks etc). Kind

OT--- Close Main window

2002-10-02 Thread Kris Pilles
Does anyone know if it is possible to stop IE form sayingthe webpage your are viewing is trying to close this window when I try to close the window Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL PROTECTED]

Re: Odd extension

2002-10-02 Thread Critter
oi Mark!! extensions can really be whatever you want them to be... might be a custom one... -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Blog=http://blog.ctzc.com; Wednesday,

RE: Odd extension

2002-10-02 Thread Mark A. Kruger - CFG
Never mind - I managed to get the site to throw an error. They are using CF with the .rs exention mapped. Go figure. -mk -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 12:54 PM To: CF-Talk Subject: Odd extension Folks,

Re: Date Comparison

2002-10-02 Thread Byron M
I trust that the shipdate field in your db is a datetime data type. If so this should work. WHERE customer_orders.shipdate #CreateODBCDateTime(yearback)# Byron Mann - Original Message - From: Chris [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 02, 2002

COM Object Instantiation Problem

2002-10-02 Thread Dale Coyner
Hi folks, It's been a while since I've changed CF versions - I am migrating an app from CF4 to CFMX for JRun. Things have gone pretty well so far with the exception of one place in my code where I call a COM object. Here's my object tag: CFOBJECT TYPE=COM ACTION=Create NAME=PPServer

RE: Odd extension

2002-10-02 Thread Mark A. Kruger - CFG
Yeah - I know, I just thought that maybe it was for a platform I hadn't heard of. -Original Message- From: Critter [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 12:55 PM To: CF-Talk Subject: Re: Odd extension oi Mark!! extensions can really be whatever you want them to

RE: OT--- Close Main window

2002-10-02 Thread Mark A. Kruger - CFG
Kris, If the window has been opened using Javascript from within another page (a la window.open) then it will not generate that error. -mk -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 12:54 PM To: CF-Talk Subject: OT--- Close Main

RE: IIS 5 randomly stops serving pages

2002-10-02 Thread Lee Fuller
We've run into this as well. However, we run a script to kill both IIS and CFMX (yes MX.. Not 5.. But I think it's the same problem), and it has minimized the occurances. Although it still happens. Here's the BAT file that we've tested over time, and it seems to help. (Note that you'll need

RE: COM Object Instantiation Problem

2002-10-02 Thread Bryan F. Hogan
There are problems with COM with MX. Download and install the updater for MX, they have corrected some of the problems with COM. See if that works for you. Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer

  1   2   3   >