FileSystemObject CFC v1.0 released

2005-11-21 Thread Artur Kordowski
I'm pleased to inform you about the release of the FileSystemObject CFC v1.0. With this CFC you can use the functionality of the Windows FileSystemObject COM API. The CFC including a detailed documentation is immediately available for download. Enjoy!

Re: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Ken Ferguson
You should build a DTS package that runs on a schedule every night. It will be easy to run those checks and make your inserts... with a DTS package. --Ferg Michael Grove wrote: I need to insert multiple rows into a SQL database from an Access Database. Basically I have an ecommerce site with

RE: PDF Question

2005-11-21 Thread Robertson-Ravo, Neil (RX)
Go on, post the trackback - I would love to know how (not that I am on CF7 yet) -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: 18 November 2005 17:22 To: CF-Talk Subject: Re: PDF Question To note, if you are on CF7 you cannot upgrade or use the iText jar

hourly digests down?

2005-11-21 Thread RADEMAKERS Tanguy
Hello, I haven't received an hourly digest since 4.01 am my time (almost twelve hours ago). Are they down or is the problem on my side? /t ~| Logware (www.logware.us): a new and convenient web-based time tracking application.

RE: Sending Faxes through Cold Fusion

2005-11-21 Thread Snake
Use blue dragon and write CFML.Net then :-) -Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: 17 November 2005 15:06 To: CF-Talk Subject: RE: Sending Faxes through Cold Fusion Google HTMLDOC. If I remember correctly it's free and does everything you are

Re: Database changes causes Component Errors

2005-11-21 Thread Phillip Duba
Russ/Kam, Thanks for the info. I'll take a look at our db connections and see if we cache them. Thanks again for the insight, Phil You could also ask CF not to cache connections in the datasource. There might also be a way to programmatically drop the db connections. We had a script back

Re: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Aaron Rouse
This is the process we use here at work. We use DTS to query some views on the oracle server then do some checks within our DTS package and insert the data into the MSSQL server. I think it might run a SP on the MSSQL side as well, but am not 100% certain since been many months since I had to get

Re: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Joe Rinehart
Hi Michael, I'd probably avoid using ColdFusion altogether to import the data. Instead, look into creating a DTS package through the MS SQL enterprise manager; DTS exists exactly for this type of situation. -Joe On 11/18/05, Michael Grove [EMAIL PROTECTED] wrote: I need to insert multiple

RE: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Robertson-Ravo, Neil (RX)
Simple SQL Script will do it, or a DTS if you want overkill. ;-p -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: 21 November 2005 13:42 To: CF-Talk Subject: Re: Multiple Row Insert Into SQL from another database You should build a DTS package that runs on a

Re: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Ken Ferguson
It's hardly overkill to use something for it designed purpose. It's simply the right tool for the job. --Ferg Robertson-Ravo, Neil (RX) wrote: Simple SQL Script will do it, or a DTS if you want overkill. ;-p -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: 21

RE: CF Hosting

2005-11-21 Thread Munson, Jacob
Never, we don't do linux as we are a windows house. The majority of people use windows anyway, especially for CF. I'll grant that most CF users use Windows, and even that most people use Windows. But in web servers it is a slim margin. Netcraft reports that ~71% of web servers run apache:

RE: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Robertson-Ravo, Neil (RX)
Well, yeah, in essence all it is doing is a SQL Statement, I mean overkill in as far as setting up a job etc I am all for DTS...love it in fact, especially when used with Global Variables. -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: 21 November 2005 15:30

RE: CF Hosting

2005-11-21 Thread Robertson-Ravo, Neil (RX)
How on earth could they come back with that? There is not founding to this. Did they sample EVERY webserver on the planet? No, not likely, so it is more a case of 71% of the sample webservers run Apache - which isn't the same as stating 715 of webservers run Apache. How big was the sample?

RE: CF Hosting

2005-11-21 Thread Munson, Jacob
The survey sample for November was 74,291,241. And yes, Netcraft tries to sample EVERY web server on the planet. They run a global web spider once a month, similar to google/yahoo. If you follow the survey, you will notice that the sample increases every month, because they continually find

RE: CF Hosting

2005-11-21 Thread Robertson-Ravo, Neil (RX)
So it can only sample external facing web servers? What about servers whom do not broadcast their underlying architechture? I see what you are saying, but it is a sample which I cannot believe..its marketing bollox for sure..and they love it ;-) -Original Message- From: Munson,

Re: CF Hosting

2005-11-21 Thread Ken Ferguson
Still, sometimes it's more economically efficient to turn customers away than it is to offer something you won't be able to support as well. Sometimes it's very well worth it to concentrate on your areas of efficiency. If 10 potential customers approach me to build them an ecommerce app

Image Saving

2005-11-21 Thread Mark Leder
I'm working on an image saving application for a client and was wondering about methods of saving an original image to the server. Up to this point, I've just let someone save an original image to a directory location, then I run CFX_ImageCR routines on the file to manipulate it. My concern is

How can i remove all non-ascii characters from a string?

2005-11-21 Thread Jon Block
Would this work? cfset newstring = reReplaceNoCase(crazyString, [^-a-zA-Z0-9 @`!##$%'()*+,-./:;\[{\|=\]}^~?_], , All) / There has to be some better way of doing this... Thank you, Jon This electronic message transmission contains information from Collegiate Funding Services, LLC

RE: CF Hosting

2005-11-21 Thread Munson, Jacob
Of course the surveys only capture external facing web servers (they aren't hacking into anybody's network). I have read that the large majority of Intranet web servers are on Windows, but we are currently talking about public hosting. All statistics have their problems (that is why they state a

Re: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Aaron Rouse
I am curious what would the SQL script look like to connect to the MS Access and then insert into the current MSSQL db? I do not work with MSSQL enough to know so just curious how simple it is. On 11/21/05, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Simple SQL Script will do it, or a

Re: How can i remove all non-ascii characters from a string?

2005-11-21 Thread Ray Champagne
You be intereted in looking into CF_StripASCII on the developers exchange. I think it'll do what you want, although it's been months since I've looked at it. Jon Block wrote: Would this work? cfset newstring = reReplaceNoCase(crazyString, [^-a-zA-Z0-9

RE: CF Hosting

2005-11-21 Thread Robertson-Ravo, Neil (RX)
94.35535% of stats are made up on the spot ;-) -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: 21 November 2005 16:04 To: CF-Talk Subject: RE: CF Hosting Of course the surveys only capture external facing web servers (they aren't hacking into

RE: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Robertson-Ravo, Neil (RX)
Well, you would obviously need an ODBC connection - you could of course, script the DTS as well that will show you. -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: 21 November 2005 16:04 To: CF-Talk Subject: Re: Multiple Row Insert Into SQL from another database I

RE: How can i remove all non-ascii characters from a string?

2005-11-21 Thread Artur Kordowski
Try this: REReplace(crazyString, [^[:ascii:]], , ALL) Cheers, Artur -Original Message- From: Jon Block [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 4:59 PM To: CF-Talk Subject: How can i remove all non-ascii characters from a string? Would this work? cfset newstring =

RE: CF Hosting

2005-11-21 Thread Munson, Jacob
Very good points, Ken. However, for a hosting business, it is not hard to find a few Linux experts and open your doors to Linux hosters. In a one man shop, it is very smart to focus on your area of expertise. But businesses can take their revenues and expand into new areas if they chose to. As

Re: Multiple Row Insert Into SQL from another database

2005-11-21 Thread Aaron Rouse
Yeah, but then I would actually have to install a MSSQL client on this machine. It would be so much easier to just let someone else do all the work and show me how easy it is while I am being lazy on this fine Monday. On 11/21/05, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Well, you

RE: Image Saving

2005-11-21 Thread Bobby Hartsfield
I've never stored the images in a database like that... Honestly, I never save the original. They upload the image, I process it with ImageCR3, overwrite the original with the newly processed version and create any thumbnails from there. You might consider some zip/unzip routines for each

RE: Image Saving

2005-11-21 Thread Dawson, Michael
I like storing binaries in a DB record. You get all the information in one place. You don't have to worry about keeping the DB and a file system synchronized. For example, if the DB thinks a file exists, but the file was manually deleted, you can have problems. If you migrate to a different

SMS CF

2005-11-21 Thread John Lucania
I am utilizing a Microsoft Exchange Server for the cfmail connection, which has SMTP as the default protocol. Is there a way to change/specify the default protocol (SMTP) to something else, like SMS? jl ~| Find out how CFTicket

RE: SMS CF

2005-11-21 Thread Dawson, Michael
I don't really think there is a default protocol with Exchange, or any mail server. You choose to connect to Exchange using SMTP/POP/IMAP/MAPI/OWA/CDO/etc. I think you just need to choose one of those. If you are using CFMAIL, then you inherently use SMTP. M!ke -Original Message-

Re: SMS CF

2005-11-21 Thread John Lucania
So, SMTP is the only option in cfmail or can we change the protocol? jl On 11/21/05, Dawson, Michael [EMAIL PROTECTED] wrote: I don't really think there is a default protocol with Exchange, or any mail server. You choose to connect to Exchange using SMTP/POP/IMAP/MAPI/OWA/CDO/etc. I think

RE: SMS CF

2005-11-21 Thread Robertson-Ravo, Neil (RX)
Well default protocol is obviously SMTP (Port 25) or POP3 (Port 110) -Original Message- From: John Lucania [mailto:[EMAIL PROTECTED] Sent: 21 November 2005 16:43 To: CF-Talk Subject: Re: SMS CF So, SMTP is the only option in cfmail or can we change the protocol? jl On 11/21/05,

Re: CF Hosting

2005-11-21 Thread Ken Ferguson
There is, obviously, a point in the life of a business where it has the ability to branch out and explore other options. However, the problem comes when they try to do this before they're ready. Sometimes people try to move beyond their efficiencies before they've got a strong enough financial

Re: SMS CF

2005-11-21 Thread Sean Corfield
On 11/21/05, John Lucania [EMAIL PROTECTED] wrote: I am utilizing a Microsoft Exchange Server for the cfmail connection, which has SMTP as the default protocol. Is there a way to change/specify the default protocol (SMTP) to something else, like SMS? SMTP *is* the outbound mail protocol by

RE: CF Hosting

2005-11-21 Thread Kevin Aebig
Feel free to turn them towards me. =] Cheers, Kevin -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: November 21, 2005 10:01 AM To: CF-Talk Subject: Re: CF Hosting Still, sometimes it's more economically efficient to turn customers away than it is to offer

RE: CF Hosting

2005-11-21 Thread Munson, Jacob
I agree with you, Ken. But there are a lot of companies that say, We are a windows shop, and say that they will never expand into other markets. Where would Microsoft be today if they said, We are an operating system shop, and never expanded into other markets? Their original proficiency was

Re: SMS CF

2005-11-21 Thread John Lucania
I am sending messages (e-mail) to pagers and getting many garbled messages on the pager. I have talked the wireless vendor, but it seems they don't know how to fix other than telling me to change the protocol. jl On 11/21/05, Sean Corfield [EMAIL PROTECTED] wrote: On 11/21/05, John Lucania

RE: Image Saving

2005-11-21 Thread Ian Skinner
Just another idea, if it has not been mentioned yet. Could you save the large files to a file server somewhere? It is not too expensive to get large hard drives these days. And CF can read from another system with a few appropriate settings. Pretty much the same as reading from the server,

Oracle errors in ColdFusion 5

2005-11-21 Thread Scott Stewart
Hi All, Were getting an error in ColdFusion 5 that I'm stumped on. 10.14.16.11, Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1), ODBC Error Code = S1010 (Function sequence error) [Microsoft][ODBC Driver Manager] The driver is incapable of supporting the current environment

RE: Image Saving

2005-11-21 Thread Mark Leder
Great points. You might consider some zip/unzip routines... I completely overlooked using zip. :o/ Could you save the large files to a file server somewhere? Yes, I would consider another server just as an original image repository. What would be the methodology of putting files up, CFFTP?

Re: Image Saving

2005-11-21 Thread Marlon Moyer
On 11/21/05, Mark Leder [EMAIL PROTECTED] wrote: Great points. You might consider some zip/unzip routines... I completely overlooked using zip. :o/ zipping images, particularily jpgs, won't net you any kind of space savings.

RE: Database changes causes Component Errors

2005-11-21 Thread Ben Nadel
You don't have to restart CF. Just go into the Admin, uncheck the box for maintain connections, then reload the pages that were crashing. Once you do that, CF uses the new DB structure. Then re-check the checkbox and its all good. Problem solved, no restarts. ... Ben Nadel

Re: SMS CF

2005-11-21 Thread Sean Corfield
On 11/21/05, John Lucania [EMAIL PROTECTED] wrote: I am sending messages (e-mail) to pagers and getting many garbled messages on the pager. I have talked the wireless vendor, but it seems they don't know how to fix other than telling me to change the protocol. If the pagers support emails,

Re: Image Saving

2005-11-21 Thread Claude Schneegans
My concern is space, that if I allow all my clients to upload originals, then the server will become full in a hurry. Mind you, these folks are using 6 megapixel + cameras Another thing image from cameras are stuffed with is useless information contained in EXIF format. These are usually

Re: Image Saving

2005-11-21 Thread Claude Schneegans
I've read about saving images as BLOBs inside MS-SQL. Are there any advantages or pitfalls to doing it this way? It is generally not considerd as a good idea to use a database to store images. The file management system in the operation is also a kind of database, especially made to store and

RE: Image Saving

2005-11-21 Thread Munson, Jacob
But there is nothing to search and sort in an image, so the file management system is much better suited for this kind of task. I agree with your overall argument, but you /could/ have one record for each image, with as much data as you want (even more than the file system lets you store).

Re: Image Saving

2005-11-21 Thread Bryan Stevenson
I agree with your overall argument, but you /could/ have one record for each image, with as much data as you want (even more than the file system lets you store). Huh? So if you put data in the database it doesn't use any memory?? So are you saying that storing images in the DB you are

Moving datasources to another machine

2005-11-21 Thread Brian Yager
Is there an easy way to transfer datasources to another machine? Our entire domain is being replaced. We are moving our code from 4.5 to MX7, going to different machines on a different domain. Anyone do this and have suggestions? Thanks, Brian

CFUnit Error

2005-11-21 Thread Jeff Chastain
This is a cross post from the CFUnit list because there did not appear to be much traffice there. I am working on my first CFUnit test. I went through the primer document step by step and I believe I did everything write. However, when I attempt to execute the test cfm page, I get the

Re: Moving datasources to another machine

2005-11-21 Thread Barney Boisvert
With CFMX, you can just copy the XML file's contents over, but that won't work from 4.5. to 7. I doubt there's any tools to help either, since that's not on the offical upgrade path. cheers, barneyb On 11/21/05, Brian Yager [EMAIL PROTECTED] wrote: Is there an easy way to transfer datasources

Re: CFUnit ... Getting started

2005-11-21 Thread Jeff Chastain
Yeah, I recognize that there should not be much use to a test for a basic bean object, but I figured it would be as good of a place as any to start working with CFUnit since it should be so basic. Thanks Sean for the advice, I will use that approach. -- Jeff

Using FoxPro in ColdFusion

2005-11-21 Thread Russel Madere
This is my first post here in a long while. I need to configure ColdFusion to access a Visual FoxPro 9.0 data directory. I have an ODBC datasource configured on my server, but when I try to access a table there it cannot be found. I also tried to use CFDIRECTORY to read the files in the

RE: Moving datasources to another machine

2005-11-21 Thread Russ
I actually had the same exact problem last night. I googled for a bit, and noticed that Macromedia has an upgrade path from cf 5 to cf 6 (which should also work for cf7). They also (in a different document) tell you to read the same documentation when upgrading from cf 4.5... If I really

RE: Image Saving

2005-11-21 Thread Munson, Jacob
I agree with your overall argument, but you /could/ have one record for each image, with as much data as you want (even more than the file system lets you store). Huh? So if you put data in the database it doesn't use any memory?? So are you saying that storing images in the DB

Re: Using FoxPro in ColdFusion

2005-11-21 Thread Howie Hamlin
In order for CF to gain access to remote shares you will need to configure the CF service to log in as a user with rights to the network share. Also, be sure to use UNC paths instead of drive letters. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. -

Re: Image Saving

2005-11-21 Thread Marlon Moyer
On 11/21/05, Claude Schneegans [EMAIL PROTECTED] wrote: I've read about saving images as BLOBs inside MS-SQL. Are there any advantages or pitfalls to doing it this way? It is generally not considerd as a good idea to use a database to store images. The file management system in the

Re: Image Saving

2005-11-21 Thread Kiley Simpson
Hi, I have a simple cfform - cfgrid - cfinput question: My user can select a record (employee) from the grid which populates the cfinputs. I then have a delete button which posts the form to itself, I look for the delete button and run the delete cfc. No problems, yet. How do I have a

CFChart changing jpg quality

2005-11-21 Thread Robert Everland III
Is there anyway to change the quality of jpg created when I use cfchart? Has anyone accessed the jar directly without going through cfchart? Anyone know of any documentation in regards to that? Bob Everland ~| Logware

Re: Image Saving

2005-11-21 Thread Robert Everland III
To further the point that in the right scenario databases can and should hold images, http://terraserver.microsoft.com holds millions of images directly in SQL Server 2000 databases. Bob Everland ~| Logware (www.logware.us):

RE: Moving datasources to another machine

2005-11-21 Thread Snake
What about the coldfusion archive ? -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: 21 November 2005 18:27 To: CF-Talk Subject: RE: Moving datasources to another machine I actually had the same exact problem last night. I googled for a bit, and noticed that Macromedia

RE: Image Saving

2005-11-21 Thread Munson, Jacob
To further the point that in the right scenario databases can and should hold images, http://terraserver.microsoft.com holds millions of images directly in SQL Server 2000 databases. Well, of course Microsoft will do it that way. They want everybody to use their DB. :) But that doesn't

RE: Image Saving

2005-11-21 Thread Ian Skinner
Could you save the large files to a file server somewhere? Yes, I would consider another server just as an original image repository. What would be the methodology of putting files up, CFFTP? Then pulling them back down so I can manipulate, CFHTTP? Correct, or are there better ways? Depends

Re: SMS CF

2005-11-21 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have seen this result if the Message being sent to the pager is larger than the provider's max message length. On a side note, I have a SMS WebService Gateway running under CFMX 6.1 that I have created to send Messages to Alphanumeric Pagers and

Re: CFUnit Error

2005-11-21 Thread Sean Corfield
On 11/21/05, Jeff Chastain [EMAIL PROTECTED] wrote: This is a cross post from the CFUnit list because there did not appear to be much traffice there. There's a CFUnit mailing list??? I am working on my first CFUnit test. I went through the primer document step by step and I believe I did

OT: JavaScript Autofill

2005-11-21 Thread Orlini, Robert
I have a JavaScript that I hoped would autofill some fields when a user clicks a checkbox, but it doesn't. I will admit I not a JavaScript programmer and copied and tweaked some code. The bold areas I edited to try to make it work but autofilling with the word spare, but it doesn't do anything.

Re: Image Saving

2005-11-21 Thread Robert Everland III
I have read quite a few articles in regards to this issue and pre SP3 of SQL 2000 even Microsoft would suggest not saving images in the database. But after SP3 that recomendation changed. Bob Everland ~| Discover CFTicket -

cfproperty

2005-11-21 Thread Snake
Does anyone know what the undocumented functionality of cfproperty is, someone mentioned it to me the other day, but it has escaped me. Russ ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket

RE: cfproperty

2005-11-21 Thread Katz, Dov B \(IT\)
Wasn't this from the old ini file days? -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 2:59 PM To: CF-Talk Subject: cfproperty Does anyone know what the undocumented functionality of cfproperty is, someone mentioned it to me the other day, but

Re: CFUnit Error

2005-11-21 Thread Jeff Chastain
That did is Sean. Is this what the primer document says am I miss-read it, or does something need fixing there? As far as the mailing list goes, yes, there appears to be a [EMAIL PROTECTED], but there are only a handful of posts there. Thanks -- Jeff

RE: cfproperty

2005-11-21 Thread Snake
Nope, it's something your not supposed to be able to use it for, like extending cFFUNTION or something. In the docs it says you can't use it inside a cffunction though, but I was hoping I might be able to use it to have optional arguments for web services, seeing as using cfargument makes all of

RE: JavaScript Autofill

2005-11-21 Thread Matthew Walker
You have two fields with the id lname. Generally, you should only use an id once per page. That JavaScript hurts my eyes so I haven't bothered trying to understand it. Are you trying to copy a set of values from a set of hidden fields to a set of visible fields? Something like this is low tech

Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Troy Simpson
I am using ColdFusion MX 7.0.1. Why would I need to define a custom tag path in the ColdFusion administrator when the Mappings will do the same thing? For example, the following is from the ColdFusionMX7 Administrator: --- ColdFusion mappings let the cfinclude and cfmodule tags access pages that

virtual directory vs coldfusion mapping

2005-11-21 Thread Troy Simpson
Would any problems be encountered if I have a web server virtual directory and coldfusion mappings defined as follows: virtual directory: /myApp toDirectory: C:\apps\myApp\www coldfusion mapping: /myApp toDirectory: C:\apps\myApp\cfmappings What is the search order for includes and components

RE: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Snake
U have to specify a mapping in your paths. E.g cfmodule template=\mapping\filename.cfm Custom tag paths are search automatically. -- Snake -Original Message- From: Troy Simpson [mailto:[EMAIL PROTECTED] Sent: 21 November 2005 20:35 To: CF-Talk Subject: Why do I need a Custom Tag Path

Re: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Bryan Stevenson
I don't think you have to define a mapping for them to workif none defined then the default of install drive\CFMX install dir\wwwroot is the default (which was in 6 for suremay have changed in 7). That said...what you posted has nothing to do with custom tag path settings in CF Admin

Re: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Barney Boisvert
You don't. It's just another way to reference them. I'm not sure what the benefit would be over a mapping, but you can safely ignore that feature if you can use mappings. In reality, I can't think of a good reason to ever use custom tag paths. I don't think a server I control has anything

Re: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Bryan Stevenson
I should mention my first para. in my 1st reply was about CFCs ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com - Original

RE: virtual directory vs coldfusion mapping

2005-11-21 Thread Burns, John D
CF will use the mappings, not the virtual directories, if I'm not mistaken. CF basically doesn't know anything about your webserver, so virtual directories mean nothing to CF. John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original

Re: virtual directory vs coldfusion mapping

2005-11-21 Thread jonese
ColdFusion will not see virtual directories, hence the need for mappings. We have a few overlaps without sites. We found we needed the virtual mapping when the code needed to be executed (such as shared javascripte files) but also needed the mapping so we could access shared CFC's or CFML pages

RE: JavaScript Autofill

2005-11-21 Thread Orlini, Robert
Perfect Matthew. Thanks. Got to brush up more on JavaScript. -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 3:35 PM To: CF-Talk Subject: RE: JavaScript Autofill You have two fields with the id lname. Generally, you should only use an id

RE: cfproperty

2005-11-21 Thread Katz, Dov B \(IT\)
I was confusing this with getprofilestring, and don't ask why, b/c I don't know :) -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 3:33 PM To: CF-Talk Subject: RE: cfproperty Nope, it's something your not supposed to be able to use it for, like

RE: Image Saving

2005-11-21 Thread Bobby Hartsfield
DOH! You wouldn’t think that I was just explaining to someone else that zipping already compressed files like mp3's and such was pointless huh... no more than an hour before I suggested someone zip jpgs... pshhh lol In most cases, zipping compressed files will most likely take up more space.

RE: JavaScript Autofill

2005-11-21 Thread Orlini, Robert
One more thing Matthew. What do I add to this code so that when I uncheck the box the values disappear as well?? -Original Message- From: Orlini, Robert Sent: Monday, November 21, 2005 3:49 PM To: 'cf-talk@houseoffusion.com' Subject: RE: JavaScript Autofill Perfect Matthew. Thanks.

RE: Using FoxPro in ColdFusion

2005-11-21 Thread Russel Madere
Thanks Howie, but as my brain is fully fried, how do I do that? I went into the Macromedia Jrun CFusion Server service and set the user to DOMAIN\Administrator (I know, bad practice, but this was a test) and still could not access the folder. Is there another service I need to change? Also on

FW: Body too long: RE: JavaScript Autofill

2005-11-21 Thread Orlini, Robert
One more thing Matthew. What do I add to this code so that when I uncheck the box the values disappear as well?? -Original Message- From: Orlini, Robert Sent: Monday, November 21, 2005 3:49 PM To: 'cf-talk@houseoffusion.com' Subject: RE: JavaScript Autofill Perfect Matthew. Thanks.

Re: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Troy Simpson
Assuming that my coldfusion components and include files are outside the web root and the mapping root (/), how would mappings and custom tag paths be searched for? I know that cfinclude used the mappings to find an included file. What order are the mapping referenced? Are mappings referenced

Re: virtual directory vs coldfusion mapping

2005-11-21 Thread Troy Simpson
Do you not use the Custom Tag Path to locate components? Thanks, Troy On 11/21/05, jonese [EMAIL PROTECTED] wrote: ColdFusion will not see virtual directories, hence the need for mappings. We have a few overlaps without sites. We found we needed the virtual mapping when the code needed to be

Wills shirt's are the real deal

2005-11-21 Thread Bobby Hartsfield
I just got my got coldfusion? shirt in the mail today. I was somewhat skeptical of buying a shirt online since I couldn’t actually see the quality of it. Now that I have one, I can assure everyone else who feels the same way that these shirts are of great quality... (material and print)! I know

Re: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Troy Simpson
Are mappings searched automatically when using CreateObject with a ColdFusion component? Thanks, Troy On 11/21/05, Snake [EMAIL PROTECTED] wrote: U have to specify a mapping in your paths. E.g cfmodule template=\mapping\filename.cfm Custom tag paths are search automatically. -- Snake

RE: Wills shirt's are the real deal

2005-11-21 Thread Andy Matthews
Got a link? !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 3:06 PM To: CF-Talk Subject: Wills shirt's are

Re: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Bryan Stevenson
Assuming that my coldfusion components and include files are outside the web root and the mapping root (/), how would mappings and custom tag paths be searched for? mappings are not searched forthey mappings ;-) AFAIR tags are searched for in the calling templates dir first and then works

RE: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Andrew Tyrone
-Original Message- From: Troy Simpson [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 3:58 PM To: CF-Talk Subject: Re: Why do I need a Custom Tag Path for Components? Assuming that my coldfusion components and include files are outside the web root and the mapping root

Re: Wills shirt's are the real deal

2005-11-21 Thread Bryan Stevenson
No...but he's Got ColdFusionhehe...ahh whatya expect for a Monday ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

RE: Wills shirt's are the real deal

2005-11-21 Thread Andy Matthews
never mind. Found it. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 3:08 PM To: CF-Talk Subject: RE: Wills

RE: Why do I need a Custom Tag Path for Components?

2005-11-21 Thread Andrew Tyrone
-Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 4:13 PM To: CF-Talk Subject: Re: Why do I need a Custom Tag Path for Components? Assuming that my coldfusion components and include files are outside the web root and the mapping

RE: JavaScript Autofill

2005-11-21 Thread Bobby Hartsfield
input type=checkbox onclick=if ( this.checked ) {copyData()}else{document.forms[0].reset();} If you have any other forms on the page BEFORE this form, increment forms[0] accordingly. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Orlini,

Re: Image Saving

2005-11-21 Thread Claude Schneegans
In most cases, zipping compressed files will most likely take up more space. There one situation however when zipping image files can be a good solution: when one needs to send many images in the same time, say 50 or more for instance. If he zips them, he has only one file to send, and the

RE: Using FoxPro in ColdFusion

2005-11-21 Thread Andrew Tyrone
-Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 3:56 PM To: CF-Talk Subject: RE: Using FoxPro in ColdFusion Thanks Howie, but as my brain is fully fried, how do I do that? I went into the Macromedia Jrun CFusion Server service

RE: Image Saving

2005-11-21 Thread Munson, Jacob
There one situation however when zipping image files can be a good solution: when one needs to send many images in the same time, say 50 or more for instance. If he zips them, he has only one file to send, and the files are unzipped on the server. The whole process is much easier. Or

Re: cfproperty

2005-11-21 Thread Sean Corfield
On 11/21/05, Snake [EMAIL PROTECTED] wrote: Does anyone know what the undocumented functionality of cfproperty is, someone mentioned it to me the other day, but it has escaped me. What undocumented functionality? cfproperty serves just two purposes: 1. If you write a web service that returns

  1   2   >