Training ColdFusion newbies

2003-12-17 Thread Peter Tilbrook
Hey there fellow developers! I've just completed a three day crash course for training total ColdFusion newbies in the art of what we all know and love - CFML. Squeezing in eight years of CF experience in three days, making it interesting, making it fun, is quite tough. The two 'victims' were

Re: [Macromedia][Oracle JDBC Driver]No more data available to read.

2003-12-17 Thread Thomas Chiverton
On Tuesday 16 Dec 2003 18:28 pm, Stacy Young wrote: You're probably still running 6.0 for specific reason but in general 6.0 = evil. Think there were major driver updates in 6.1 This issue affects 6.1 too. MM are aware, and keep promising a fix 'soon'. In the meantime, I believe you need to

Re: MLS cfc or custom tag.

2003-12-17 Thread Dwayne Cole
I discovered that there's and xml standard that MLS supports.I just can't get my hands on the standard.I wounder if there is a custom tag, similar to the cyberCash tag, that to controls the interface.I'm also thinking that there may be a cfhttp solution.I'm sure that that this is popular

Re: MLS cfc or custom tag.

2003-12-17 Thread Randell B Adkins
I too have been searching for something to retrieve MLS listings just to post on a website for a realtor. However most all I have seen charge about $300 to $400 a year for the service. Budget not big enough to warrant it yet. So I have been looking for alternatives, suggestions are greatly

Re: MLS cfc or custom tag.

2003-12-17 Thread Rick Root
Dwayne Cole wrote: I'm looking for a cfc or custom tag that would allow me to interact with MLS (Multiple Listing Service) for real estate listing. If anyone here know of any resources that I can refer, I would appreciate it. Good luck Dwayne!MLS is copyrighted proprietary data.Pretty much

Re:Getting directory name only

2003-12-17 Thread Irvin Gomez
thanks! much appreciated. Hi! I'm trying to get the name of the directory that houses template. The problem is that I just need the directory's name. For example, given the actual path: C:\whatever\whateverElse\myDirectory\myTemplate I need to extract the directory's name

cfCollab Open Source Project...

2003-12-17 Thread Neil Giarratana
I just wanted to put out there that we've started a new open source project on SourceForge, cfCollab. It is (or will be) essentially an alternative to phpCollab for team/project management written entirely in CF leveraging CFMX. We're looking for contributors to be part of the project (both

Re: Adding remote datasource dynamically

2003-12-17 Thread Thomas Chiverton
On Tuesday 16 Dec 2003 21:16 pm, Chunshen (Don) Li wrote: What's your email address?I'm on CFMX 6.0.Thanks. From: Andrew Scott [EMAIL PROTECTED] If anyone is interested I am about to release a suite of tools, its been Um ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749

Re: Training ColdFusion newbies

2003-12-17 Thread Kevin Graeme
Congrats! Sounds like you had a lot of fun. -Kevin - Original Message - From: Peter Tilbrook [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 1:38 AM Subject: Training ColdFusion newbies Hey there fellow developers! I've just completed a three day

Re: MLS cfc or custom tag.

2003-12-17 Thread Dwayne Cole
Good luck Dwayne!MLS is copyrighted proprietary data.Pretty much you can't get it without paying for it =) - Rick The company is already paying access to the data as well as access to the online system.There are various ways that they can download comma delimited version of the information, in

DB Connection Timeout

2003-12-17 Thread dsmith
We use Client Access to connect to a DB/2 400 database.However when the AS/400 is down for maintenance attempts to connect to that machine eventually lock up the CF server and I need to restart it.I've tried a CFTRY, CATCH but the connection doesn't return an error it just hangs.Is there a way to

RE: cfmail in cf5 spool re-sends to infinity

2003-12-17 Thread Tom Jordahl
Jeff, Can't really say what alternatives to CFMail do since I only work on the original. :-) I know there are some that write the spool files and some that connect directly to a mail server. Sorry I can't be more helpful -- Tom Jordahl Macromedia Server Development -Original Message-

Best Practices

2003-12-17 Thread Mickael
Hello All, I have an app that seem to run very slow at time, I am looking for ways that I may not be using CF efficiently. The app is in french and english, and is able user is able to switch back and forth from french to english.I use a session variable for this. My code states is cfif

Re: Best Practices

2003-12-17 Thread cf
can u make the tables in seperate templates the then just do an include depending on the choice? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Best Practices

2003-12-17 Thread Tangorre, Michael
First off, since the conditions are the same for each TD, put one condition around the TR and avoid that redundancy OR... I would create two separate files, and cfinclude the one you need although you would still need the one condition to determine which to include. For sake of clarity I would

RE: Best Practices

2003-12-17 Thread Gabriel Robichaud
if you thought of putting all your texts in variables in seperate .cfm and jsut doing a cfinclude and then calling these variables.That way you could call your variables depending on the languagecfif session.language eq french call the french file cfelse call the english file /cfif and then

RE: IIS remove and reinstall

2003-12-17 Thread Dave Watts
The result is: 'cfusionmx\runtime\jre\bin\java-jar' is not recognized as an internal or external command, operable program or batch file. That should be java -jar, not java-jar. But frankly, I wouldn't worry about what version of the wsconfig.jar file you have. You didn't say whether you're

Re: Best Practices

2003-12-17 Thread Mickael
Hi Mike, I agree with your point on the clarity and I have no problem making includes.I was really wonder if there is a performance issue when I ask CF to evaluate each CFIF or is that not really an issue? - Original Message - From: Tangorre, Michael To: CF-Talk Sent: Wednesday,

RE: Best Practices

2003-12-17 Thread Tangorre, Michael
Its just not necessary... In your case, you can put the if around the TR since the condition for each TD within the TR is the same... thus redundant. Mike -Original Message- From: Mickael [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 9:53 AM To: CF-Talk Subject: Re:

RE: Best Practices

2003-12-17 Thread Mike Brunt
My opinion would be to reduce the number of cfif’s by creating one table or file in English and the other in French.Although you seem like you want to avoid two tables or two files, that is the most efficient way to do this from a run-time standpoint. Kind Regards - Mike Brunt Webapper Services

Re: Best Practices

2003-12-17 Thread Mickael
Thanks - Original Message - From: Tangorre, Michael To: CF-Talk Sent: Wednesday, December 17, 2003 9:51 AM Subject: RE: Best Practices Its just not necessary... In your case, you can put the if around the TR since the condition for each TD within the TR is the same... thus redundant.

RE: Best Practices

2003-12-17 Thread Gabriel Robichaud
From a code maintenance stand point, creating two files or two tables is too much work IMHO.I think the best is just to put variables in seperate files where each file contains vars which are assigned french or english text.Then, all you do at the top of a cfm, is do 1 cfif and call the

Re: Best Practices

2003-12-17 Thread Jochem van Dieten
Mickael said: I have an app that seem to run very slow at time, I am looking for ways that I may not be using CF efficiently. The app is in french and english, and is able user is able to switch back and forth from french to english.I use a session variable for this. table border=1

Re: Best Practices

2003-12-17 Thread Nick de Voil
Jochem unfortunately CFML doesn't allow the clean syntax PHP and C allow cfscript? Nick [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Best Practices

2003-12-17 Thread Mickael
Thanks, Mike the runtime answer was what I was looking for, I agree Gabriel I like your solution this makes sense.I have to sites that are bilingual this will help me out. Thanks again everyone - Original Message - From: Gabriel Robichaud To: CF-Talk Sent: Wednesday, December 17,

Re: Best Practices

2003-12-17 Thread Jochem van Dieten
Nick de Voil said: unfortunately CFML doesn't allow the clean syntax PHP and C allow cfscript? Underscore _ is not an allowed function name in CFML. And that is too bad, because it would have allowed i18n of code using a lot of tools for PHP. Suppose i18n of the following line of code is

RE: multi-part emails?

2003-12-17 Thread John Burns
Cool, thanks. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 16, 2003 4:28 PM To: CF-Talk Subject: RE: multi-part emails? Does anyone have a good _simple_ resource for how to create multi-part email messages using CFMAIL? Or is that even

RE: Best Practices

2003-12-17 Thread Raymond Camden
I must not be getting the big deal here. I can see how _() is nice, but is lang() or translate() or locale() that much more difficult? I used resource bundles for my blog and had no issues with using even longer function names. Sure I had to type a bit, but hey, that's what ctrl-c/ctrl-v is for.

RE: Best Practices

2003-12-17 Thread Jochem van Dieten
Raymond Camden said: I must not be getting the big deal here. I can see how _() is nice, but is lang() or translate() or locale() that much more difficult? Not for writing the code, but you need to change the parser that extracts the strings as well. Jochem [Todays Threads] [This Message]

RE: BIG Forms: CFSWITCH or CFIF?

2003-12-17 Thread Matt Robertson
Thanks to Isaac, Matt and Barney for giving me stuff to think about. I'd clean forgot about qforms and terraforms, and using a custom tag never occurred to me. Since I have to do this now and my 6.1 upgrade won't happen for at least a month I can't use udf's on this project, unfortunately.While

RE: Best Practices

2003-12-17 Thread Raymond Camden
So the issue here is that there is a tool that will look for these and then help you generate resource bundles, or lists of things to generate? Is this native to PHP itself? Certainly one could easily build a tool in CF as well. [Todays Threads] [This Message] [Subscription] [Fast

Flash on the Desktop?

2003-12-17 Thread Jeffry Houser
Is there a way to create Flash Applications for the desktop?I Googled, and came across Flash Studio from www.multidmedia.com; but that won't work for non Windows PCs. Client specifically requested a Standalone Flash and Flash Remoting app.I'm assuming no access to a browser (or Browser Based

Re: OT: non-SSL for post to SSL - secure?

2003-12-17 Thread Thomas Chiverton
On Friday 12 Dec 2003 14:29 pm, Stacy Young wrote: If you have a form on a html page (not SSL) and it posts to a page that *is* SSL...the data transmission is secured isn't it ? Yes. If this is true I'd still advise to use SSL on the login page...but this is for a unique situation. :nods

Re: Flash on the Desktop?

2003-12-17 Thread cf
when u save the file in flash u can save it as an exe file straight from flash. pretty easy [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Flash on the Desktop?

2003-12-17 Thread Thomas Chiverton
On Wednesday 17 Dec 2003 16:10 pm, Jeffry Houser wrote: Is there a way to create Flash Applications for the desktop?I Googled, and came across Flash Studio from www.multidmedia.com; but that won't work for non Windows PCs. You mean like Central (http://www.macromedia.com/devnet/central/) ? --

Re: Flash on the Desktop?

2003-12-17 Thread Bryan Stevenson
yes...called a projector ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

Re: Best Practices

2003-12-17 Thread Jochem van Dieten
Raymond Camden wrote: So the issue here is that there is a tool that will look for these and then help you generate resource bundles, or lists of things to generate? Is this native to PHP itself? There are tools for various tasks, including generation of portable objects. Certainly one

RE: Flash on the Desktop?

2003-12-17 Thread Robertson-Ravo, Neil (RX)
www.screenweaver.com http://www.screenweaver.com _ From: Jeffry Houser [mailto:[EMAIL PROTECTED] Sent: 17 December 2003 16:11 To: CF-Talk Subject: Flash on the Desktop? Is there a way to create Flash Applications for the desktop?I Googled, and came across Flash Studio from

OT: Using Access front end for MS SQL

2003-12-17 Thread Bruce, Rodney S HQISEC/Veridian IT Services
Hi all Was wondering if anyone has tried this or has information. They want to use the already built Access front end (menus/forms/reports) application. But they want to use MS SQL. I know that tables can be linked from MS SQL to Access, which gets the information to the front end

RE: CFC Not showing in CFC Explorer

2003-12-17 Thread Alexander Sherwood
At 04:31 PM 12/16/2003 -0400, you wrote: I have 2 servers, both set up with identical mappings and install dirs. One server shows all components stored in C:\CFusionMX\wwwroot\WEB-INF\cfcomponents and the other doesn't! As far as the custom tag mappings go, the server that displays the cfcs

Re: Flash on the Desktop?

2003-12-17 Thread Thomas Chiverton
On Wednesday 17 Dec 2003 16:16 pm, Thomas Chiverton wrote: You mean like Central (http://www.macromedia.com/devnet/central/) ? Or Flex rather. End of the day :-) Thomas Chiverton [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Best Practices

2003-12-17 Thread Samuel R. Neff
Yuck, _ has got to be the worst function name I've ever seen. :-) Sam --- Blog: http://www.rewindlife.com Charts: http://www.blinex.com/products/charting --- -Original Message- From: Jochem van

RE: Best Practices

2003-12-17 Thread Raymond Camden
Raymond Camden wrote: So the issue here is that there is a tool that will look for these and then help you generate resource bundles, or lists of things to generate? Is this native to PHP itself? There are tools for various tasks, including generation of portable objects. This

RE: Flash on the Desktop?

2003-12-17 Thread Samuel R. Neff
Best option is Screenweaver.http://www.screenweaver.com/index.cfm?nav=0 If building an app that needs to work both as desktop and online, you can write your own intermediary communication classes that determine the runtime environment and either send out to screenweaver for local database access

Help Desk Software...

2003-12-17 Thread Schuster, Steven
I know it's been done 100 times but I am going to do one open-source for the CF folks with Oracle, SQL and maybe Access back-ends. What I am looking for are suggestions as to what it should have in it. I have a basic framework developed with a UI but it is all up in the air right now. Here is

JavaScript Issue on CFMX 6.1

2003-12-17 Thread Bailey, Neal
Hey guys, I need a little _javascript_ help. I use the following script to validate two form fields. It's an either or script and it works on an ASP page but when running on CF MX 6.1 it only partially works. When you get prompted to fill in the requested field and select OK to continue it

Re: Flash on the Desktop?

2003-12-17 Thread Mike Chambers
Jeffrey, What about Central do you think doesn't apply to your client's situation? Based on your comments, it sounds to me like it does apply. mike chambers [EMAIL PROTECTED] On Dec 17, 2003, at 8:10 AM, Jeffry Houser wrote:   I finally found time to sit through the Central presentation.  

Re:Flash on the Desktop?

2003-12-17 Thread Jeff Houser
when u save the file in flash u can save it as an exe file straight from flash. pretty easy I feel like I should have been able to find this. However, even with you telling me it is there, I can't.Am I missing something?Is it an optional feature install? Save As only gives me the options

RE: Help Desk Software...

2003-12-17 Thread Kelly Keith
For a small company (gov't entity) in my case. It would be nice to have an inventory tracking available to the IT group. The ability to track property numbers, when they were purchased, etc. The ability to send a text message to users who received a ticket. Ability to have stats, graphs etc on

Re: Flash on the Desktop?

2003-12-17 Thread Mike Chambers
I believe that Jeffrey needed a cross-platform solution (ScreenWeaver is windows only). mike chambers [EMAIL PROTECTED] On Dec 17, 2003, at 8:25 AM, Samuel R. Neff wrote: Best option is Screenweaver.  http://www.screenweaver.com/index.cfm?nav=0 If building an app that needs to work both

RE: Flash on the Desktop?

2003-12-17 Thread Ben Forta
File, Publish Settings, Windows Projector (exe) -Original Message- From: Jeff Houser [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 10:36 AM To: CF-Talk Subject: Re:Flash on the Desktop? when u save the file in flash u can save it as an exe file straight from flash. pretty

OT: mySQL grabs 400mb RAM?

2003-12-17 Thread Matt Robertson
I've got three or four systems running mySQL.One is running 4.0.16 (current stable release) and the rest are running various alpha and betas of 4.01. The 4.01.16 unit, when I fire up the mysql service, eats 400 mb of RAM on my system at startup.Despite the fact that Win2k's performance monitor

Re:Flash on the Desktop?

2003-12-17 Thread Jeff Houser
Based on what I understand about Central, it is a way to build a pod pieces that runs within the central framework. My understanding that you must have the central framework / program / whatever installed and then run the pod within central. If my understanding is correct (which it may not be)

Test

2003-12-17 Thread Ben Densmore
Test [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Best Practices

2003-12-17 Thread Jochem van Dieten
Raymond Camden wrote: Raymond Camden wrote: So the issue here is that there is a tool that will look for these and then help you generate resource bundles, or lists of things to generate? Is this native to PHP itself? There are tools for various tasks, including generation of portable

Re:Flash on the Desktop?

2003-12-17 Thread Jeff Houser
Took the words right out of my mouth. Jeffry ( Actually no second e in my name ) I believe that Jeffrey needed a cross-platform solution (ScreenWeaver is windows only). mike chambers [EMAIL PROTECTED] On Dec 17, 2003, at 8:25 AM, Samuel R. Neff wrote: Best option is Screenweaver.  

Re:Flash on the Desktop?

2003-12-17 Thread Jeff Houser
Right in front of my face.Thanks!I must be blind. J e f f File, Publish Settings, Windows Projector (exe) -Original Message- From: Jeff Houser [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 10:36 AM To: CF-Talk Subject: Re:Flash on the Desktop? when u save the file

Re: Best Practices

2003-12-17 Thread Jochem van Dieten
Jochem van Dieten wrote: Raymond Camden said: I must not be getting the big deal here. I can see how _() is nice, but is lang() or translate() or locale() that much more difficult? Not for writing the code, but you need to change the parser that extracts the strings as well. I have been

Re: Best Practices

2003-12-17 Thread Paul Hastings
My code states is cfif session.language eq 1english textcfelsefrench text/cfif no, that's definitely not the best way to handle this. you should use resourceBundles. you 100% want to split off text from code from text presentation. you might load these into an app structure var to ease use but

Re: Best Practices

2003-12-17 Thread Paul Hastings
From a code maintenance stand point, creating two files or two tables is too much work IMHO.I think the best is just to put variables in seperate files where each file contains vars which are assigned french or english text.Then, all you do at the top of a cfm, is do 1 cfif and call the

RE: JavaScript Issue on CFMX 6.1

2003-12-17 Thread MILAN MUSHRAN
Change the name of the form to theform. Also, try to get into the habit of using the proper hierarchy - window.document.formname.fieldname.value for netscape compatibility. From: Bailey, Neal [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: _javascript_ Issue

Re: Best Practices

2003-12-17 Thread Paul Hastings
(I am working on a GNU gettext implementation so you can use human readable text in your application and use the GNU toolset for working with portable objects, but it won't be finished before new year and unfortunately CFML doesn't allow the clean syntax PHP and C allow.) jochem, uh, how

RE: JavaScript Issue on CFMX 6.1

2003-12-17 Thread Bailey, Neal
Don't all jump in at once here... At any rate I figured it out... I forgot _javascript_ is CaSsE SeNsItIvE. I had a Sensitive Case... he did not want to be little any more... Thanks, Neal Bailey Internet Marketing Manager UGA-Association Field Services Phone: 817.255.3720 Fax:

Re: JavaScript Issue on CFMX 6.1

2003-12-17 Thread Charlie Griefer
I think you're misreading.he is using the proper hierarchy.the function was passed 'theForm' as an object, so a reference within the function to theForm.EMailAddress.value is the same as window.document.form1.EMailAddress.value. As far as why the form submits...it shouldn't matter whether or not

Disabling automatic form field validation (like required)

2003-12-17 Thread Gaulin, Mark
Hi Folks Is there any way to turn off the [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ^! automatic form field validation that CF does? I'm refering to the special handling of form fields that end with required, etc.. when CF doesn't like one of these it justs abort the page with a cryptic error

RE: Using Access front end for MS SQL

2003-12-17 Thread Samuel R. Neff
Moving the back end to MSSQL and leaving the app as is will work in most cases but causes lots of issues down the road.When you use linked tables Access runs all queries using the local Jet engine.So Jet will go to MSSQL, bring in all the source data, and then run the query.It's actually a little

RE: Flash on the Desktop?

2003-12-17 Thread Samuel R. Neff
You're right, I overlooked that requirement.sorry. Director can embed Flash files and provide extra services and is cross-platform, right?Perhaps that's an option... Sam --- Blog: http://www.rewindlife.com Charts:

Re:Adding remote datasource dynamically

2003-12-17 Thread Don
I'm on this list and I'm not this list.I disalbed email for the list, hence, did not get Andrew Scott's last email in my mail box.There are times I'm blind, at the moment I seem not. Thanks though. Cheers, Don On Tuesday 16 Dec 2003 21:16 pm, Chunshen (Don) Li wrote: What's your email

Re: Best Practices

2003-12-17 Thread Jochem van Dieten
Paul Hastings wrote: (I am working on a GNU gettext implementation so you can use human readable text in your application and use the GNU toolset for working with portable objects, but it won't be finished before new year and unfortunately CFML doesn't allow the clean syntax PHP and C allow.)

RE: Disabling automatic form field validation (like required)

2003-12-17 Thread Dave Watts
Is there any way to turn off the [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] ^! automatic form field validation that CF does? I'm refering to the special handling of form fields that end with required, etc.. when CF doesn't like one of these it justs abort the page with a cryptic error

RE: Weird Images issues...

2003-12-17 Thread Roth, John
Steven, 1-When I go to the index.htm file http://www.lcgis.com/STAGE/index.htm I _do not_ see the images.Methinks you need to clear your cache... 2-The source for that file lists all the image references as img src="" width= height= alt= border=.I don't think I've ever seen a path with ./ in

MS-SQL 2000 NULL Problem

2003-12-17 Thread Mark Leder
How come a simple query like this still returns NULL for emails even though my WHERE clause says to exclude them?What am I doing wrong?I've tried both IS NOT NULL and . SELECT L.email, L.firstname, L.lastname, L.directEmailTo FROM #REQUEST.prefix#_Members_List L WHERE L.email IS NOT NULL ORDER

RE: MS-SQL 2000 NULL Problem

2003-12-17 Thread Robertson-Ravo, Neil (RX)
have you also applied SELECT L.email, L.firstname, L.lastname, L.directEmailTo FROM #REQUEST.prefix#_Members_List L WHERE L.email IS NOT NULL AND L.email '' ORDER BY L.email _ From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: 17 December 2003 17:59 To: CF-Talk Subject: MS-SQL 2000 NULL

RE: MS-SQL 2000 NULL Problem

2003-12-17 Thread Schuster, Steven
Is the field storing NULL or blanks space, there is a difference. Steve -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 12:59 PM To: CF-Talk Subject: MS-SQL 2000 NULL Problem How come a simple query like this still returns NULL for

RE: MS-SQL 2000 NULL Problem

2003-12-17 Thread Adrian Lynch
If the other suggestions don't work, try seeing what REQUEST.prefix is turning into, you may be looking at the wrong table. Ade -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: 17 December 2003 17:59 To: CF-Talk Subject: MS-SQL 2000 NULL Problem How come a simple

text editor for content manag. systems

2003-12-17 Thread Dan Farmer
I'm looking for a good text editor for content management systems. Something I can basically plug into an app. Are there any good free or cheap ones around? __ Daniel Farmer Producer / Coldfusion Developer http://www.bernardclark.com/danfarmer.ca P: 613.284.1684

RE: text editor for content manag. systems

2003-12-17 Thread Schuster, Steven
FCKEditor I think or is it FKEditor It's free and awesome... Steve -Original Message- From: Dan Farmer [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 1:03 PM To: CF-Talk Subject: text editor for content manag. systems I'm looking for a good text editor for content

RE: Weird Images issues...

2003-12-17 Thread Schuster, Steven
./ is just another way of saying / My UNIX shows through every now and then, but that's not it. The problem is I can see the images in thumbnail view and when viewing them on the server. When I look at them through either the web site or directly in the globalimages directory on a web browser I

Re: text editor for content manag. systems

2003-12-17 Thread Darron J. Schall
soEditor lite is good, and free. http://www.siteobjects.com/pages/soeditor.cfm -d - Original Message - From: Dan Farmer To: CF-Talk Sent: Wednesday, December 17, 2003 1:02 PM Subject: text editor for content manag. systems I'm looking for a good text editor for content management

RE: text editor for content manag. systems

2003-12-17 Thread Matt Robertson
http://www.fredck.com/fckeditor/ is the best free one out there.I put it into my freebie CMLite cms, and have some file and image uploader improvements in there.Easy to chop out and use for whatever you want. Matt Robertson [EMAIL PROTECTED] MSB

Re: text editor for content manag. systems

2003-12-17 Thread Massimo Foti
FCKEditor I think or is it FKEditor It's free and awesome... Yes, this one is pretty impressive. If you would like to see one of these editors integrated in DW, grab the extension from here: http://www.massimocorner.com/beta/cf.htm Massimo Foti Certified

Re: JavaScript Issue on CFMX 6.1

2003-12-17 Thread MILAN MUSHRAN
IE is very forgiving. This will not work in all the versions of Netscape. From: Charlie Griefer [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: _javascript_ Issue on CFMX 6.1 Date: Wed, 17 Dec 2003 10:01:44 -0700 I think you're misreading.he is using the

RE: Weird Images issues...

2003-12-17 Thread Plunkett, Matt
./means the current directory. (I've never seen this in a web document before either) / means the root directory of the webserver. -Original Message- From: Schuster, Steven Sent: Wednesday, December 17, 2003 1:24 PM To: CF-Talk Subject: RE: Weird Images issues... ./ is just another way

RE: MS-SQL 2000 NULL Problem

2003-12-17 Thread Mark Leder
Thanks for all your responses, unfortunately nothing has worked.I did verify that it was selecting from the correct table. All the empty fields in the email db contain null.Good suggestion to try ''. I'm going to do a look up on a different criteria. Thanks, Mark -Original Message-

RE: Weird Images issues...

2003-12-17 Thread Schuster, Steven
Let me rephrase ./ and / in the context of this site are the root directories of the web server which is why I said what I said. Regardless ./ works just fine so that is not the problem. S -Original Message- From: Plunkett, Matt [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17,

Re: Logging out on session expiration under MX

2003-12-17 Thread stas
No, it doesn't seem to be that. I am really baffled at what's going on. This app is based on modded version of FB 2. My index.cfm includes app_globals.cfm app_globals.cfm has this block: cfif not (isdefined(session.loggedin)) cfinclude template=_login.cfm cfelse _login.cfm has the security

RE: MS-SQL 2000 NULL Problem

2003-12-17 Thread Tangorre, Michael
Is it a true NULL or the string NULL. Sounds silly, but check it -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 1:32 PM To: CF-Talk Subject: RE: MS-SQL 2000 NULL Problem Thanks for all your responses, unfortunately nothing has

Re: MS-SQL 2000 NULL Problem

2003-12-17 Thread Nick de Voil
Mark All the empty fields in the email db contain null How exactly do you know the email field is null? It seems to me that if WHERE L.email IS NOT NULL returns the rows, then that's the surest proof that the field is not null. Nick [Todays Threads] [This Message] [Subscription] [Fast

RE: MS-SQL 2000 NULL Problem

2003-12-17 Thread Schuster, Steven
When you design a table you have a property called Allow Nulls, make sure that it is checked. Then the default will be NULL and not or something else. Then as inserts occur you can be assured that NULL fields are actually NULL and not equivelant nulls like or Null typed into a varchar field.

RE: mySQL grabs 400mb RAM?

2003-12-17 Thread Barney Boisvert
How are you determinig it's eating 400m if the performance monitor only says 18m?That's a lot of memory for MySQL, even with a pretty substantial database with some decent load, unless you've specifically tuned it to use more. What table handlers are you using?What's your my.cnf look like?

5.0 Development Practices

2003-12-17 Thread rob.stokes
Hi all, I'm fairly new to CF and I've just started an Application that will run on a Coldfusion 5.0 server. So far from all the resources I've been reading (net and books) I'm beginning to get pretty annoyed at its lack of 'features' compared to CFMX 6.0/6.1. So far as I can tell CF Components,

RE: text editor for content manag. systems

2003-12-17 Thread Dan Farmer
Agreed! open source too... sweet! __ Daniel Farmer Producer / Coldfusion Developer http://www.bernardclark.com/danfarmer.ca P: 613.284.1684 From: Schuster, Steven [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: text

UTC and daylight savings time...

2003-12-17 Thread cf-talk
While we're discussing best practices today I have a quick question regarding time zones, UTC, etc, etc. I believe that the preferred method of storing dates and times in your database is in UTC.I have no problem running all of the servers in the UTC time zone even. From there it's a question of

Re: 5.0 Development Practices

2003-12-17 Thread Rick Root
[EMAIL PROTECTED] wrote: So far from all the resources I've been reading (net and books) I'm beginning to get pretty annoyed at its lack of 'features' compared to CFMX 6.0/6.1. So far as I can tell CF Components, CFFUNCTION etc are only available in 6+, and I keep coming across occasions

RE: MS-SQL 2000 NULL Problem

2003-12-17 Thread Mark Leder
I think you are all correct.How would I solve a situation on a new insert where the user posts an email address, but then sometime later comes back and does a data update removing the address, I would want a NULL value then be SET.Is the statement below correct. cfquery name=updateObj

RE: 5.0 Development Practices

2003-12-17 Thread Adrian Lynch
You still have custom tags and udfs to play with. cfscript function noSpaghetti() { .. } /cfscript Not as good as cffunction, but still useful. Ade -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 17 December 2003 18:35 To: CF-Talk

RE: MS-SQL 2000 NULL Problem

2003-12-17 Thread Adrian Lynch
Yup. But throw a Trim() around FORM.email to stop spaces getting in. If that's a problem... -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: 17 December 2003 18:57 To: CF-Talk Subject: RE: MS-SQL 2000 NULL Problem I think you are all correct.How would I solve a

Re: text editor for content manag. systems

2003-12-17 Thread Rick Root
Most of the ones out there support only Internet Explorer on Windows... but I like this one: http://www.interactivetools.com/products/htmlarea/ They've got a new version in beta that also supports Mozilla 1.3+ on *ALL* platforms... so your Mac users using Safari can still get the HTML

RE: 5.0 Development Practices

2003-12-17 Thread rob.stokes
Yeah, I thought about doing that, but you can't perform queries... d'oh. -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 17 December 2003 7:00 pm To: CF-Talk Subject: RE: 5.0 Development Practices You still have custom tags and udfs to play with. cfscript

Re: MS-SQL 2000 NULL Problem

2003-12-17 Thread Nick de Voil
Mark Update MyTable SET email = cfif Len(FORM.email)'#FORM.email#'cfelseNULL/cfif Where memberID = #FORM.memberID# Looks good to me. Unless you want to use cfqueryparam - http://www.macromedia.com/devnet/mx/coldfusion/articles/cfqueryparam.html Nick [Todays Threads] [This Message]

  1   2   >