Re: Open Source ColdFusion CMS

2007-06-08 Thread Tom Chiverton
On Thursday 07 Jun 2007, Matt Robertson wrote: I used ViewletCam by Qarbon. Its a lot cheaper than RoboHelp, and a lot less functional, but it gets the job done for $149. If you just dabble in making these sorts of movies its an alternative to a $1000 product, but I'd sure rather have

Re: Set server var at startup?

2007-06-08 Thread Tom Chiverton
On Thursday 07 Jun 2007, Russ wrote: I think the only way to make this happen is by calling a page. And you could add a call to fetch that page to the end of the (re)start script. -- Tom Chiverton Helping to heterogeneously cultivate mission-critical meta-services on:

Re: long-polling, or comet

2007-06-08 Thread Brian Swartzfager
I once built a chat room tool using CF and AJAX so my wife (a high-school teacher) could use it to hold scheduled chat sessions with her students who had study/assignment questions. I simply had the JavaScript on the client-side make a request to the server for any new messages every few

Re: Open Source ColdFusion CMS

2007-06-08 Thread Scott Stroz
You may want to give FarCry another look. It has improved tremendously over the last few years. From install to adding customizations, the process has been streamlined. On 1/18/07, Tero Pikala [EMAIL PROTECTED] wrote: I'm trying to find open source CMS solution written in ColdFusion that

RE: Question about cfftp

2007-06-08 Thread Dave Francis
You will need input type=file... to upload the file to the CF Server, not cffile. Remember that cf tags run on the server, clients have no access to them. -Original Message- From: Joel Watson [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 8:26 AM To: CF-Talk Subject: Question

Re: Question about cfftp

2007-06-08 Thread Tom Chiverton
On Friday 08 Jun 2007, Joel Watson wrote: My question is this: is it possible to use cfftp to transfer files directly from the client browser to the ftp server Where does CFFTP run :-) If you could control the client, you could have them run an FTP server though, for instance. 1. Use cffile

Question about cfftp

2007-06-08 Thread Joel Watson
I recently found out that I need to allow users to upload files from their browsers to another, non-coldfusionized server. I am assuming that cfftp is the solution for this. My question is this: is it possible to use cfftp to transfer files directly from the client browser to the ftp server,

Re: Question about cfftp

2007-06-08 Thread Joel Watson
Yeah, I am using that to get to the cffile variables. You will need input type=file... to upload the file to the CF Server, not cffile. Remember that cf tags run on the server, clients have no access to them. -Original Message- From: Joel Watson [mailto:[EMAIL PROTECTED] Sent:

RE: Open Source ColdFusion CMS

2007-06-08 Thread Pete
While on the topic of Open Source CF-based CMS's does anyone know of a good small CMS which could be implemented in say a small organization say from 1-10 employees - most who have no computing skills at all. Kind regards Toby -Original Message- From: Scott Stroz [mailto:[EMAIL

RE: Equivalent Code in CF

2007-06-08 Thread Ian Skinner
My assumption is it would be: cfset myProximity = myLookup.findStores(strZip) Of course this does assume you have defined the myLookup variable to the appropriate webservice. Confidentiality Notice: This message including any attachments is for the sole use of the intended recipient(s) and may

RE: Equivalent Code in CF

2007-06-08 Thread Gaulin, Mark
cfinvoke webservice=... method=... The rest of the details depend on the web service itself. Mark -Original Message- From: Deepak Gupta [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 10:26 AM To: CF-Talk Subject: Equivalent Code in CF What is the equivalent for this

RE: Open Source ColdFusion CMS

2007-06-08 Thread Dave Watts
While on the topic of Open Source CF-based CMS's does anyone know of a good small CMS which could be implemented in say a small organization say from 1-10 employees - most who have no computing skills at all. My first choice for this would be Contribute - it's the ideal product for this

Re: Question about cfftp

2007-06-08 Thread Joel Watson
Getting control of the client machine is possible, so I'm open to options on that. However, I was thinking of writing to mine first via cffile because I need to be able to track the upload information in a database, and I like the variables that I can access through cffile. On Friday 08

Equivalent Code in CF

2007-06-08 Thread Deepak Gupta
What is the equivalent for this .Net code in CF: Proximity[] myProximity = myLookup.findStores(strZip); Its really urgent for me...this is a call to webservice with method findstores. -DG ~| Upgrade to Adobe ColdFusion MX7

Anyone with jExcel experience?

2007-06-08 Thread Matt Williams
I'm trying to use the jExcel java utility to read an Excel template, replace an image (logo) and save it with a new name. I am having trouble on the first step - reading the excel template. I am able to create a new, blank workbook, so I believe the jar file is installed correctly (placed in

Re: Open Source ColdFusion CMS

2007-06-08 Thread Joshua Cyr
I will put my vendor hat on very briefly. Feel free to take a look our our CMS. www.besavvy.com. There are some video tutorials up there for basic tasks and I am happy to talk off list to answer questions or provide demos. It isn't open source but it is very inexpensive for developers/clients

OT: Version Cue CS3 on separate machine?

2007-06-08 Thread Damien McKenna
At work we have several users with Creative Suite 3. Is it possible to set up Version Cue on a machine other than one of the workstations to make managing the repository easier, or does it have to be on one of the workstations that has CS3? Thanks. Damien McKenna

RE: Version Cue CS3 on separate machine?

2007-06-08 Thread Damien McKenna
-Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 11:01 AM Subject: RE: Version Cue CS3 on separate machine? I have it running on a separate server without an issue, just pop in the DVD and install only that =) Perfect. Thanks.

RE: Version Cue CS3 on separate machine?

2007-06-08 Thread Peterson, Chris
I have it running on a separate server without an issue, just pop in the DVD and install only that =) Chris -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 10:58 AM To: CF-Talk Subject: OT: Version Cue CS3 on separate machine? At work we

rss.cfc - Getting optional elements to display in feed

2007-06-08 Thread John P
Hi all, I've successfully implemented Ray Camden's rss.cfc to create a feed from my query. I'm wondering if it is possible to get optional elements to display in the feed, or do most feed readers only display the required elements; title, link and description? I'd like to show subject and

Re: long-polling, or comet

2007-06-08 Thread John Robinson
Thanks Brian - I've done this way back in the past using php. It worked, but I wanted to avoid 2 things... 1) constantly hitting the server to look for new data, and 2) the app feeling slow. With the example mentioned in my first post the app feels very very snappy. Aside from that, does

Re: Anyone with jExcel experience?

2007-06-08 Thread Matt Williams
I forgot to add that if anyone has another way to do this, I am open to that too. I have banged my head up against the Jakarta POI api wall for a solution to this too. There I am able to open an excel file and resave it, but the image part doesn't seem to work for me. I get File error: data may

Re: Finding current queries

2007-06-08 Thread Jose Diaz
Seefusion/Fusion Ractor - or you could use query analyzer to sp_lock2 and then dbcc inputbuffer on the spid to see what the sp is that is running. On 6/7/07, Rick Root [EMAIL PROTECTED] wrote: On 6/7/07, Claude Schneegans [EMAIL PROTECTED] wrote: Depending on your database, just run a

Re: Finding current queries

2007-06-08 Thread Robertson-Ravo, Neil (RX)
Obviously only if you are using SQL Server. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be

Re: Reading/Importing Large Text Files into a Database

2007-06-08 Thread Robertson-Ravo, Neil (RX)
Yep, avoid using ColdFusion to do any large text import etc. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and

Robust Permissions System

2007-06-08 Thread James Wolfe
I have to build a robust permissions system for one of my clients. Basically, I need the concept of users and groups and both users and groups are able to be members of other groups. Optimally, it would have Allow/Deny flags so that I could exclude specific users from specific features (like

Re: Reading/Importing Large Text Files into a Database

2007-06-08 Thread Jose Diaz
BCP or Bulk Insert - using a DTS Package On 6/7/07, Pete Ruckelshaus [EMAIL PROTECTED] wrote: I had a similar problem to solve once. What I did was create a macro that imported the data into an Access database. I set up a DSN for that access database with a predefined file name, and gave

Re: Open Source ColdFusion CMS

2007-06-08 Thread Peter Tilbrook
http://coldusergroup.riaforge.org/ ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard RIA’s for your business. Upgrade now http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT Archive:

Re: Anyone with jExcel experience?

2007-06-08 Thread Paul Hastings
Matt Williams wrote: create a new, blank workbook, so I believe the jar file is installed correctly (placed in c:\CFusionMX7\lib). stop/restart the cf server service? workbook = createObject(java,jxl.Workbook); file = createObject(java,java.io.File).init(C:\invoice.xls); workbook =

RE: Anyone with jExcel experience?

2007-06-08 Thread Dan G. Switzer, II
Matt, However, when I call getWorkbook, I get an error saying that method cannot be found. Here is what I have that will throw that error. workbook = createObject(java,jxl.Workbook); file = createObject(java,java.io.File).init(C:\invoice.xls); workbook = workbook.getWorkbook(file); Try using

Issues with DW (8 and CS3)

2007-06-08 Thread Bruce Sorge
When I go to the Applications tag, and click on Components, and then click on Specify the RDS Login information for ColdFusion, I get the error message The Server Name or Address cannot be resolved, blah blah blah. ColdFusion is running on my server and I know the RDS password. Has anyone ever

Re: Anyone with jExcel experience?

2007-06-08 Thread Matt Williams
Thanks for replying guys. After playing with both of your code samples, it turns out my problem was using the word file as my variable name. That is a keyword in java so doing getWorkbook(file) was breaking. On to the next step. Has anyone taken an existing image and put it into a spreadsheet via

RE: Issues with DW (8 and CS3)

2007-06-08 Thread Dave Watts
When I go to the Applications tag, and click on Components, and then click on Specify the RDS Login information for ColdFusion, I get the error message The Server Name or Address cannot be resolved, blah blah blah. ColdFusion is running on my server and I know the RDS password. Has anyone

Re: rss.cfc - Getting optional elements to display in feed

2007-06-08 Thread John P
Hi all, I've successfully implemented Ray Camden's rss.cfc to create a feed from my query. I'm wondering if it is possible to get optional elements to display in the feed, or do most feed readers only display the required elements; title, link and description? I'd like to show

RE: Issues with DW (8 and CS3)

2007-06-08 Thread Damien McKenna
-Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 1:35 PM Subject: Issues with DW (8 and CS3) When I go to the Applications tag, and click on Components, and then click on Specify the RDS Login information for ColdFusion, I get the error

Re: Anyone with jExcel experience?

2007-06-08 Thread Matt Williams
Okay. I got it working. Definitely some java strictness going on. And being pretty much java stupid, I did much trial and error to get this to work. I'll post code here and maybe blog it later so hopefully anyone in the future can find it. Using jExcel, I was able to open an existing spreadsheet,

RE: Issues with DW (8 and CS3)

2007-06-08 Thread Bruce Sorge
I can connect with RDS using HomeSite, but when I click on the Browse tab, says it that the ColdFusion file cannot be resolved to a URL. Weird thing is that I can go to my server (http://bruceserver/sitename) and it works fine. Weird. Bruce -Original Message- From: Dave Watts

Re: Set server var at startup?

2007-06-08 Thread Phill B
Well I guess there isn't a way to hack CF to always load a variable during the start process. Suck. I guess I'll have to use the application.cfc and make sure its used in all the current and future apps. suck Thanks for all the suggestions though. Phil On 6/8/07, Tom Chiverton [EMAIL PROTECTED]

Re: Set server var at startup?

2007-06-08 Thread J.J. Merrick
I think really you need to ask yourself why you are using a server var? Creating server variables are not recommended so there may be another route you can take. -J.J. On 6/8/07, Phill B [EMAIL PROTECTED] wrote: Well I guess there isn't a way to hack CF to always load a variable during the

SOT: quick file publisher for CFEclipse

2007-06-08 Thread Jake Pilgrim
I'm finally taking the plunge to CFEclipse. So far I am liking it quite a bit, but with one catch - I'm not finding a quick way to publish files. I have a mapped network drive to our development server and our production server. In Dreamweaver I was able to set up the development server drive

RE: Set server var at startup?

2007-06-08 Thread Dave Watts
Creating server variables are not recommended so there may be another route you can take. Not recommended by whom, exactly? This kind of blanket statement is almost always unwarranted. There is nothing wrong, generally, with using server variables. Dave Watts, CTO, Fig Leaf Software

RE: Set server var at startup?

2007-06-08 Thread Bobby Hartsfield
Could you elaborate on why 'Creating server variables are not recommended'; specifically, why they aren't and where you heard/read such a thing? ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: J.J. Merrick [mailto:[EMAIL PROTECTED]

Re: Set server var at startup?

2007-06-08 Thread Phill B
I've never heard that its not recommended. I have a development server and a production server. I need code to behave differently between the two servers. This is why I want to use a sever variable. It is available to all the ColdFusion apps on the server. I think this is a great reason for using

RE: Set server var at startup?

2007-06-08 Thread Bobby Hartsfield
Not only a great reason but I was under the impression that that is what they were made for :-) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 4:35 PM To: CF-Talk

Re: Set server var at startup?

2007-06-08 Thread J.J. Merrick
geez hold of the dogs, I will rescind my statement and chalk it up to a friday misrant. On 6/8/07, Dave Watts [EMAIL PROTECTED] wrote: Creating server variables are not recommended so there may be another route you can take. Not recommended by whom, exactly? This kind of blanket

RE: Set server var at startup?

2007-06-08 Thread Bobby Hartsfield
Well don’t act surprised after a statement like that... we just want to know what you know :-) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: J.J. Merrick [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 4:47 PM To: CF-Talk

Re: Set server var at startup?

2007-06-08 Thread Matt Williams
I think I did hear Ben Forta say server variables are not recommended. I can't remember any reasons why though. My question would be how are you setting the server variable? Going back to Phil B's original question of can you set it at server startup? No. So if you are setting server variables

Re: Set server var at startup?

2007-06-08 Thread Ravi Gehlot
Hey Matt, I was reading Ben Forta's blog the other day and I read something about being careful when using server variables. Some people were having problems while using server variables because those variables were being used by other servers without anyones knowledge of its use.

RE: Set server var at startup?

2007-06-08 Thread Andy Matthews
Not if the variables are set in the onServerStart method. -Original Message- From: Matt Williams [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 3:53 PM To: CF-Talk Subject: Re: Set server var at startup? I think I did hear Ben Forta say server variables are not recommended. I

Subversion and Dreamweaver 8

2007-06-08 Thread Elena Aminova
I was asked to select and configure code repository for our development environment and since I have heard and read so much about subversion, so far it is my pick, unless anyone has any compelling reasons for me not to. The questions I have are the following: How does Subversion version

Re: Subversion and Dreamweaver 8

2007-06-08 Thread Ravi Gehlot
Hey Elena, My advise for you would be to use Eclipse instead of Dreamweaver. You can then download CFEclipse which is the plug in for Eclipse and then following that install SVN which is the subversion for Eclipse. From that point on you need to get acquitted with the workbench in

CFUNITED news: CF 8 beta, Fusebox 5.5 alpha, CFU/X Chicago, Application Server Analytics

2007-06-08 Thread Michael Smith
Here is the ColdFusion and Fusebox news: * ColdFusion 8 public beta released * Only 19 days left until CFUNITED-07! New attendee videos http://cfunited.com/go/interview-videos * CFUNITED/Express Chicago announced 9/30/07 * CFUNITED-07 pre-conference classes iPod raffle - 7 days left * CFMeetup

RE: Set server var at startup?

2007-06-08 Thread Dave Watts
Not if the variables are set in the onServerStart method. To the best of my knowledge, there is no such event method in CF 7. While you could write a method and call it onServerStart, it wouldn't run when the server started. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf

Re: Set server var at startup?

2007-06-08 Thread Ravi Gehlot
Hey Dave, I agree with you on this one. I was looking for a method called onSeverStart and couldn't find it so I kept thinking what is this guy referring to. Also the server variable gets called upon application startso you are correct about that too. Ravi. Dave Watts wrote: Not if

Re: Set server var at startup?

2007-06-08 Thread Matt Williams
And even if onServerStart() did exist, putting it in Application.CFC does not make sense to me. We would need a Server.cfc or something that existed outside of webroot, possibly in the JRun/CFusionMX directory. Or maybe you could just set some server variables in the CF Administrator, the way we

Re: Subversion and Dreamweaver 8

2007-06-08 Thread Matt Williams
Elena, if you do go with Dreamweaver, you will need an external Subversion client such as Tortoise to manage updating and committing your local working copy. As far as I know (DW 8), DW does not have anyway to natively support access to a SVN repository. Matt On 6/8/07, Ravi Gehlot [EMAIL

Re: Subversion and Dreamweaver 8

2007-06-08 Thread John Wilker
there is a free plugin for DW that does SVN, it works ok. I used it for a short period, but have moved off DW for Eclipse, which as noted has CFEclipse, and subclipse, which is better than the one for DW. -- John Wilker Vice President of Operations 360Conferences, Inc. www.johnwilker.com /

Re: Set server var at startup?

2007-06-08 Thread Ravi Gehlot
Matt, As far as I know if you server scope your variable it will be available throughout your entire application as well as to all of the other applications on that server. Depending on how your network is set up that server scoped variable might be available throughout a node of servers

Re: Subversion and Dreamweaver 8

2007-06-08 Thread Ravi Gehlot
That's right. I have never heard of any native support access to SVN on version 8. Elena, you might want to check with Dreamweaver CS3. Ravi. Matt Williams wrote: Elena, if you do go with Dreamweaver, you will need an external Subversion client such as Tortoise to manage updating and

Re: Set server var at startup?

2007-06-08 Thread Matt Williams
On 6/8/07, Ravi Gehlot [EMAIL PROTECTED] wrote: Matt, As far as I know if you server scope your variable it will be available throughout your entire application as well as to all of the other applications on that server. Depending on how your network is set up that server scoped variable

RE: Set server var at startup?

2007-06-08 Thread Dave Watts
So if you are setting server variables in Application CFC, then it seems to me that the variable is actually an application variable. unless the variable is intended for use across multiple applications. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software

Re: Set server var at startup?

2007-06-08 Thread Ravi Gehlot
Alright. Got your point. Sorry. Ravi. Matt Williams wrote: On 6/8/07, Ravi Gehlot [EMAIL PROTECTED] wrote: Matt, As far as I know if you server scope your variable it will be available throughout your entire application as well as to all of the other applications on that server.

Re: Set server var at startup?

2007-06-08 Thread Robertson-Ravo, Neil (RX)
I will use this when it's added to CF9 :-) This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be

Re: Set server var at startup?

2007-06-08 Thread Ravi Gehlot
ahahaha...you made me laugh... Ravi. Robertson-Ravo, Neil (RX) wrote: I will use this when it's added to CF9 :-) This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number

Re: Set server var at startup?

2007-06-08 Thread Matt Williams
On 6/8/07, Dave Watts [EMAIL PROTECTED] wrote: So if you are setting server variables in Application CFC, then it seems to me that the variable is actually an application variable. unless the variable is intended for use across multiple applications. True, the intention may be for

Re: Set server var at startup?

2007-06-08 Thread Robertson-Ravo, Neil (RX)
I thought server variables are global across all applications regardless of where they were set ? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains

Re: Set server var at startup?

2007-06-08 Thread Ravi Gehlot
Like SESSION variables...SERVER variables go from server to server obeying the first Application.CFC who sets them. If another SERVER variable is set with the same name than it is overwritten for use for that specific server. But if not...then it uses the Application.CFC from the first server

Re: Set server var at startup?

2007-06-08 Thread Ravi Gehlot
They are global. You are right. Ravi. Robertson-Ravo, Neil (RX) wrote: I thought server variables are global across all applications regardless of where they were set ? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a

Re: Anyone with jExcel experience?

2007-06-08 Thread Will Tomlinson
Have you seen Ben Nadel's POI Utility? It's pretty awesome, makes CF/excel almost effortless. http://www.bennadel.com/index.cfm?dax=blog:474.view Will ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe

cfhhtp for geoocding with google maps

2007-06-08 Thread Wilfried Wacker
Hallo, i need the koordinates from an Adress. Google-Maps API allowd a Call via http like: http://maps.google.com/maps/geo?q=musterstr%201,+12345%20Berlin,+DEoutput=csvkey=x The result is the Koordinates If i use cfhhtp with the same parameters, i always becom an error. The

RE: Set server var at startup?

2007-06-08 Thread Dave Watts
True, the intention may be for server wide use, but how is it managed? Is there a mother-App.cfc that all the other App.cfc's extend? Or does each App.cfc have it's own copy of the server variables? Or is there one app that must be started before others are? Seems kinda dangerous either

Re: Subversion and Dreamweaver 8

2007-06-08 Thread Doug Bezona
The only plug-in SVN solution for Dreamweaver I know of is this: http://www.grafxsoftware.com/product.php/SVN_for_Dreamweaver_10/135/ It's a bit pricey ($60), and I have never actually used it, so have no idea how well it works. Aside from that, as others have mentioned, you can use TortoiseSVN,

RE: cfhhtp for geoocding with google maps

2007-06-08 Thread Russ
I've gotten similar errors with the yahoo api, and I've had to add charset=utf-8 to the cfhttp code: Like this cfhttp url=http://local.yahooapis.com/MapsService/V1/geocode; charset=utf-8 timeout=180 Russ -Original Message- From: Wilfried Wacker [mailto:[EMAIL PROTECTED]

A Date Problem that's got me tearing out my hair!

2007-06-08 Thread Les Mizzell
I've got a site that's hosted in Guernsey (Island in English channel) with a form with date input fields. Pretty darned simple. input id=depDATE name=depDATE type=text value=#dateformat(now(),'mm/dd/')# / This form uses a web service to write to a MySQL database

I am buying ColdFusion Enterprise Version 8

2007-06-08 Thread Ravi Gehlot
Does anyone know how much it will cost? $8,000??? Ravi. -- --- Ravi Gehlot. Sr. Management Sunshine Technology Solutions, LLC http://www.sunshinetechsolutions.com/ [EMAIL PROTECTED] Cell Phone: (407) 860-3775 Business Line: (407) 745-1433

Re: Subversion and Dreamweaver 8

2007-06-08 Thread Andrew Scott
Dreamweaver has native support to any source repository as long as the source repository supports webdav. The only drawback with this is that Dreamweaver will only allow check in / check out operations from the source repository. -- Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au

Re: A Date Problem that's got me tearing out my hair!

2007-06-08 Thread Andrew Scott
Because now() is server time... Very simple problem On 6/9/07, Les Mizzell [EMAIL PROTECTED] wrote: I've got a site that's hosted in Guernsey (Island in English channel) with a form with date input fields. Pretty darned simple. input id=depDATE name=depDATE type=text

Re: A Date Problem that's got me tearing out my hair!

2007-06-08 Thread Les Mizzell
Andrew Scott wrote: Because now() is server time... Not actually. The value DEFAULTS to now(), but anything can be entered and it still ends on storing as 1 day earlier even when a different date is entered. What I *haven't* tested yet is to see if there's a particular hour that this

Re: A Date Problem that's got me tearing out my hair!

2007-06-08 Thread Andrew Scott
Well if you debug this you might just see that as I said is true. input id=depDATE name=depDATE type=text value=#dateformat(now(),'mm/dd/')# / If you always expect the default as mm/dd/yyy, and someone enters dd/mm/ you may end up with an invalid date, and your

Re: I am buying ColdFusion Enterprise Version 8

2007-06-08 Thread Andrew Scott
Well good luck, its not for sale yet. On 6/9/07, Ravi Gehlot [EMAIL PROTECTED] wrote: Does anyone know how much it will cost? $8,000??? Ravi. -- --- Ravi Gehlot. Sr. Management Sunshine Technology Solutions, LLC

Re: A Date Problem that's got me tearing out my hair!

2007-06-08 Thread Les Mizzell
If you always expect the default as mm/dd/yyy, and someone enters dd/mm/ you may end up with an invalid date, and your code might be trapping and returning a default now(). There could be many reasons, for what is happening. I've got trapping that's being sure the date format is entered

RE: Subversion and Dreamweaver 8

2007-06-08 Thread Eric Roberts
There is also a plugin you can buy for dreamweaver. I don't remember the name...but it isn't hard to ind. Eric -Original Message- From: Andrew Scott [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 8:32 PM To: CF-Talk Subject: Re: Subversion and Dreamweaver 8 Dreamweaver has

Re: I am buying ColdFusion Enterprise Version 8

2007-06-08 Thread Charlie Griefer
that's why he asked how much it *will* cost (in the future... as opposed to how much it *does* cost now). On 6/8/07, Andrew Scott [EMAIL PROTECTED] wrote: Well good luck, its not for sale yet. On 6/9/07, Ravi Gehlot [EMAIL PROTECTED] wrote: Does anyone know how much it will cost?

Re: I am buying ColdFusion Enterprise Version 8

2007-06-08 Thread Andrew Scott
*ROTFLMAO* The subject: I am buying Coldfusion Enterprise 8 The Question: Does anyone know how much it will cost? $8,000??? Now, as I said it is not on sale yet. And the best place to get this information is from Adobe's website. If it is not listed there, then there is no way anyone can answer

Re: I am buying ColdFusion Enterprise Version 8

2007-06-08 Thread Charlie Griefer
I am buying ColdFusion Enterprise 8. could that not mean ...when it comes out? you have about as much common sense as you do tact. that'll be all i have to say on the subject :) On 6/8/07, Andrew Scott [EMAIL PROTECTED] wrote: *ROTFLMAO* The subject: I am buying Coldfusion Enterprise 8 The

Re: I am buying ColdFusion Enterprise Version 8

2007-06-08 Thread Andrew Scott
You have to be kidding right? Well I could say... I am buying Coldfusion Enterprise 7, anyone know how much it is going to cost? Does that mean when it comes out, when it is already out. Like I said, if it is not listed on the Adobe website how does one expect to answer such a question. I know

AJAX Question

2007-06-08 Thread Phillip M. Vector
Pretty simple.. But I can't see it.. form Message: input type=text id=Message onkeyup=showmessages() onenter=entermessage() size=40 input type=Hidden id=Room value=1 /form function entermessage() { xmlHttp=GetXmlHttpObject() var url=#self#Chat.EnterMessage;