When will Dave Watts finally blog?

2005-10-11 Thread Emmet McGovern
I was reading Ray Camdens last post on his blog today and it really does emphasize the lack of CF administration information out there. I know there are other great blogs on the subject like Talking Tree and Brandon Purcell but when will Dave finally shed some regular light on the subject? How

Re: google-search 2

2005-10-11 Thread Adrocknaphobia
I agree with Dave, as I popped in on this thread thinking you were using OracleText and my laziness has prevented me from writing a Google-to-OracleText query in PL/SQL. I was hoping you might have already. I was able to generate an error when I searched on a NOT term without specifiying the

Re: Benefits of Upgrading to MX6.1 or MX7

2005-10-11 Thread dcooper
Performance and scalability is significantly enhanced in CFMX 6.1 and CFMX7 than CF5 or previous. This can translate into direct HW savings for large sites. Details here for CF5 vs CFMX 6.1 (CFMX7 adds a few more points on top of CFMX 6.1):

Re: CF Administrator and debugging IP settings

2005-10-11 Thread Robyn
If you're doing this but not seeing any debugging at all, you need to go into the debugging settings and enable debugging. Then go to the Debugging IP Addresses and enter your IP address (or use add current if you're accessing the administrator from your machine...) -R Justin D. Scott wrote:

RE: Admin Management

2005-10-11 Thread Burns, John D
Justin, Depending on your needs and hosting situation you can do this a number of different ways. For instance, we host all of our clients in-house and can build a single CMS that we can integrate multiple sites into. If you don't have that luxury the key concept is to ensure that your code is

RE: Admin Management

2005-10-11 Thread Andy Matthews
Over the past 3 years I've developed a CMS that is the core for every admin section that I build. It uses a module system that lets me add new sections easily. My naming conventions are consistent which allows me to find and replace whole portions of code from module to module. I'd be happy to

RE: CF Administrator and debugging IP settings

2005-10-11 Thread Burns, John D
I know this is a pretty simple thing, but it's worth mentioning that there is also an Add Current button in the CF Administrator for adding the IP of the current machine you're on. That saves typoes and having to look up your current IP. Also, this ensures that if you're behind a firewall and

DAOs, objects, structs, or strings

2005-10-11 Thread Paul
I'm curious about the best way to pass data to and from DAO CFCs. If I am updating a Widget, I have seen three ways to pass its data to WidgetDAO.update(): 1. create a Widget object, then pass object - WidgetDAO.update(WidgetBean). The update() function then uses

RE: DAOs, objects, structs, or strings

2005-10-11 Thread Matthew Small
I use 3 because then the DAO shouldn't have knowledge of the Widget object. Matthew Small Web Developer American City Business Journals 704-973-1045 [EMAIL PROTECTED] -Original Message- From: Paul [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 2:46 PM To: CF-Talk Subject:

Re: CF Administrator and debugging IP settings

2005-10-11 Thread Ray Champagne
Wow. That's weird. I tried this yesterday and everyone on the network could see the debug info, including me. Now, I just did it again, and it is working fine. Strange. I _must_ have been doing something wrong, just not sure what. No matter, all is working properly now. Thanks! Ray Ken

Re: DAOs, objects, structs, or strings

2005-10-11 Thread Tanguy Rademakers
I use 3 because then the DAO shouldn't have knowledge of the Widget object. It's a WidgetDAO - it exists to load and persist Widgets. By your logic, your WidgetDAO shouldn't return Widgets either, just a struct (or maybe even a query) of a given widget's information...

RE: Admin Management

2005-10-11 Thread Andy Matthews
Right... I've coded my admin section such that every object, anywhere on the page, has a style associated with it. I change some settings in the database and suddenly every color, font, path in the system is different. !//-- andy matthews web developer ICGLink, Inc. [EMAIL

RE: DAOs, objects, structs, or strings

2005-10-11 Thread Matthew Small
Sorry, maybe our terms are different? My Data Access Object (DAO) that works with the DB returns only a query object. My DataGateway (DG) creates the object from the query and returns it, or passes it to the DAO in primitives. Then I have the Data Object itself. Three parts to this equation for

mailparam error

2005-10-11 Thread Phillip Duba
We keep running into the following error: The tag handler mailparam does not have a setter for the attribute contentID specified in the tld. The template worked fine until very recently. We applied some hotfixes for CFMX6.1 so we're not sure if something broke here because of them. I don't

Re: DAOs, objects, structs, or strings

2005-10-11 Thread Tanguy Rademakers
Sorry, maybe our terms are different? My Data Access Object (DAO) that works with the DB returns only a query object. My DataGateway (DG) creates the object from the query and returns it, or passes it to the DAO in primitives. Then I have the Data Object itself. Three parts to this equation for

RE: DAOs, objects, structs, or strings

2005-10-11 Thread Matthew Small
Yes, I thought so. The terms are have very similar meanings and it's kind of ambiguous when talking about this. Matthew Small Web Developer American City Business Journals 704-973-1045 [EMAIL PROTECTED] -Original Message- From: Tanguy Rademakers [mailto:[EMAIL PROTECTED] Sent:

Re: Logging users actions - DB or Log4J?

2005-10-11 Thread John Paul Ashenfelter
On 9/20/05, Michel Deloux [EMAIL PROTECTED] wrote: Hi all what's the best choice to store users actions in a CF application(inserts, updates and deletes)? DB or Log4J could be resolve this? Anyone use log4j? Any approaches? Cheers I'm really late to this conversation, but for what it's

Re: DAOs, objects, structs, or strings

2005-10-11 Thread Douglas Knudsen
neat list of things from cfcdev list http://www.mail-archive.com/cfcdev@cfczone.org/msg11316.html DK On 10/11/05, Paul [EMAIL PROTECTED] wrote: I'm curious about the best way to pass data to and from DAO CFCs. If I am updating a Widget, I have seen three ways to pass its data to

Re: Admin Management

2005-10-11 Thread Steve Bryant
shameless_plug Since my admin sections tend to be made up of several list pages and several form pages, I made some custom tags to create those list tables and forms easily. Since I figured the tags might make others lives easier as well, I made them freely available.

RE: Admin Management

2005-10-11 Thread Burns, John D
I've seen people do the same with components. Especially for generic form entering and processing. Seems to save a good amount of time with formatting and such. John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From:

Re: ColdFusion DataDirect JDBC drivers 3.5 ETA?

2005-10-11 Thread wolf2k5
On 10/11/05, Dave Carabetta [EMAIL PROTECTED] wrote: ... Stephen Dupre has been heading a small beta program to make sure the drivers are acceptable, and Macromedia *will* be releasing their Macromedia-ized version in the near future. I'd like to know how near is this future! :-) Is this

Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Andy Matthews
Massimo... I have a quick question regarding the above CFC. I've set it up and running on my local dev machine (Win XP, CFMX6.1). It works flawlessly. However, when I upload the code to my server and run it, I get the following error: This graphics environment can be used only in the software

Re: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Bryan Stevenson
Andy...is the live server a headless system (no monitor or graphicsjust a box)? If so there are some arguments in the jvm.config (I think it was that file) file that you need to change. If you can confirm this is your situation I may be able to dig up the changes required. The file

RE: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Andy Matthews
Just an update... I seem to recall reading that these CFCs have issues when the server is set to run headless. I checked our cfadmin and it appears that headless is one of the arguments (listed below): -server -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:MaxPermSi ze=128m

Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Damien McKenna
Does anyone know the status of wordwrap getting added to either the core Eclipse platform or cfeclipse? Its kinda awkward not having it. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h

Re: ColdFusion DataDirect JDBC drivers 3.5 ETA?

2005-10-11 Thread Dave Carabetta
On 10/11/05, wolf2k5 [EMAIL PROTECTED] wrote: On 10/11/05, Dave Carabetta [EMAIL PROTECTED] wrote: ... Stephen Dupre has been heading a small beta program to make sure the drivers are acceptable, and Macromedia *will* be releasing their Macromedia-ized version in the near future. I'd

Re: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Bryan Stevenson
Well it looks like ya tracked it down before my reply made it through ;-) Here's what my jvm.config java args look like on the headless machine: java.args=-server -DJINTEGRA_NATIVE_MODE -DJINTEGRA_PREFETCH_ENUMS -Xbootclasspath/a:{application.home}/lib/webchartsJava2D.jar -Xmx512m

Re: ColdFusion DataDirect JDBC drivers 3.5 ETA?

2005-10-11 Thread Adrocknaphobia
Maybe you shouldn't have rushed into 10g r2 eh? -Adam On 10/11/05, wolf2k5 [EMAIL PROTECTED] wrote: I'd like to know how near is this future! :-) Is this week a good guess? We need them asap ... ~| Logware

RE: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Chase Seibert
Last I heard the devs thought it would be a lot of work to implement. I also heard the comment that no one wants it. I would like this feature, too. Isn't this supported in the newest Eclipse? -Chase Application Developer B U L L H O R N 313 Congress St, 4th Floor Boston, MA 02210

Re: Shopping Cart solution - any others to look at?

2005-10-11 Thread Will Tomlinson
Man, I'd like to giv'em some feedback on CW. I'd tell'em to drop a daisycutter on it and start out fresh. :) Will ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

RE: Image manipulation in coldfusion - error with tmt_img.cfc

2005-10-11 Thread Andy Matthews
Another update. Massimo responded to my email and he provided two sites which list solutions to this problem: http://www.doughughes.net/index.cfm/page-blogLink/entryId-29 http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_19252 In case anyone else is having problems.

RE: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Russ
Is the CFEClipse project dead? There haven't been any updates or posts to the CFEClipse development list for a few months now... Or is spike just busy with all the CF conferences? -Original Message- From: Chase Seibert [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 5:07 PM

Re: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Simeon Bateman
Hey Guys, There are several people that would like to see this feature added. However as I understand it the word-wrap features is at odds with the code-folding feature and it has a much larger following. So unless the following of users that wish to see word-wrap outpasses those who enjoy code

CFFTP thru Corporate Firewall

2005-10-11 Thread Ciliotta, Mario
Hi, I was wondering in anyone has had any experience using CFFTP thru a corporate firewall to FTP a file to outside server? I am trying to FTP a file from my internal CF server to a 3rd party vendors server. I need to go thru our proxy server in order to gain access to the outside world. I

RE: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Rob Redford
No, it's FAR from dead. In fact, Macromedia/Adobe are going to be officially supporting the project (if that isn't already happening). We can all expect many more great things from CFeclipse in the future. It may have quieted down as they get everything organized. You can read a bit on it

Re: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Rob
On 10/11/05, Russ [EMAIL PROTECTED] wrote: Is the CFEClipse project dead? There haven't been any updates or posts to the CFEClipse development list for a few months now... Or is spike just busy with all the CF conferences? hum well Spike is busy with stuff (he is out of the country at the

Cold Fusion MX Adminstrator Error

2005-10-11 Thread Nomad
Hi Guys, I am having problem accessing the CFMX administrator page. I am running Cold Fusion MX 7 with IIS5 on Win Professional 2000 on a standalone machine. It appears that both IIS and Cold Fusion Server are working fine. Can someone point out where and what the problem might be and how to fix

Re: CFFTP thru Corporate Firewall

2005-10-11 Thread Webmaster at FastTrack On Line
Hi Mario, Perhaps this is the case: The cfftp is running from your CF server and the ftp is running from your workstation. Assumption being your development pc and server pc aren't one and the same? So, you'd need to see how the firewall rules differ from your server to your workstation. I

Re: Time management

2005-10-11 Thread Webmaster at FastTrack On Line
Hi Donna, Number 1, don't have people coming to your desk if you can at all help it. Tell them all requests for change have to be at least emailed, better still sent to you on a form. Get buy in to your need to manage your time from your line manager or you are really up there without a

RE: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Russ
Well all I know is that I posted a bug back in August, and that was the last message (as far as I know) on the [EMAIL PROTECTED] list Russ -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 6:25 PM To: CF-Talk Subject: Re: Eclipse / cfeclipse -

Re: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Rob
Yeah topica has fallen by the wayside it seems. To quote Sean Corfield from one of his responses on that list... I didn't even realize this list still existed. All the activity is over on the Tigris lists (users, dev, cvs, issues). There was a bit of chatter on topica last week, but it's really

Re: google-search 2

2005-10-11 Thread Chris Velevitch
On 10/11/05, Daniel Kessler [EMAIL PROTECTED] wrote: As y'all have read, I'm trying to replicate a google-like search on our database. I think that I have the CF and DB (Oracle) logic Doesn't Verity provide some if not most of this? Chris -- Chris Velevitch Manager - Sydney Flash Platform

RE: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Russ
I don't think it was one of those bugs. It referred to the way that the new FTP plugin doesn't handle errors well. As in, if the connection drops for some reason, or times out, it just starts throwing errors. (a workaround is to browse the ftp site again, i.e. to change folders, and then the

Re: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Sean Corfield
On 10/11/05, Russ [EMAIL PROTECTED] wrote: Is the CFEClipse project dead? There haven't been any updates or posts to the CFEClipse development list for a few months now... Or is spike just busy with all the CF conferences? The users list on tigris is pretty active right now with folks

Re: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Rob
Ok, if anyone asks again it's Issue 323. Cheers Russ, rob On 10/11/05, Russ [EMAIL PROTECTED] wrote: I don't think it was one of those bugs. It referred to the way that the new FTP plugin doesn't handle errors well. As in, if the connection drops for some reason, or times out, it just

Re: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Rob
I mean that as in - I just added it as Issue 323 we didnt have it logged before :) On 10/11/05, Rob [EMAIL PROTECTED] wrote: Ok, if anyone asks again it's Issue 323. Cheers Russ, rob On 10/11/05, Russ [EMAIL PROTECTED] wrote: I don't think it was one of those bugs. It referred to the way

RE: Time management

2005-10-11 Thread Dawson, Michael
Jenny has some good comments. With her comments of a form and mgt buy-in, I would add that you should require each project to have a business sponsor and a project charter. Basically, the sponsor is the person or person's mgr that is requesting the project. The charter is the business

RE: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Michael T. Tangorre
From: Sean Corfield [mailto:[EMAIL PROTECTED] So, no, the project is far from dead but the contrib list on topica is pretty dead (as is the cfeclipse list on HoF). Well at least we still have He3 :-) ~| Logware

Re: google-search 2

2005-10-11 Thread Will Tomlinson
I've been using Verity after watching Ray's preso on it. Works sweet, just like google. Suggested spellings even. Will ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and

Re: 64 bit Server Question, Help Please

2005-10-11 Thread Jorge Tejada
yeah, but somebody got this in Linux 64 bits ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today.

flash forms and a bad directory structure?

2005-10-11 Thread Arturo Fuentes
i'm not sure what is happening here. my directory structure is : /projects/Pets/assets/com/petlog.cfc my code references this as: myService = connection.getService(projects.Pets.assets.com.petlog, responseHandler ); I do not get a cfc location error.. i get a null back for my values.

Re: flash forms and a bad directory structure?

2005-10-11 Thread Mike Soultanian
Try setting up a mapping in CF server. is your web server root the same as your cf web root? mike Arturo Fuentes wrote: i'm not sure what is happening here. my directory structure is : /projects/Pets/assets/com/petlog.cfc my code references this as: myService =

Job Market in DC Metro Area?

2005-10-11 Thread Lola Lee
What is the job market in Washington DC metro area like? I'm seeing quite a bit of job postings where one needs security clearance. I do not have security clearance, and I know that the process is long enough and backlogged that it would take me a good long while, if ever, to obtain one with

Re: Job Market in DC Metro Area?

2005-10-11 Thread Larry C. Lyons
It really depends on the company. As a green card holder I'm not eligible for security clearances, but the demand for commercial and government CF related work is still very large. You should have no trouble getting a position with or without a clearance. One suggestion is to use the

Re: Job Market in DC Metro Area?

2005-10-11 Thread Larry C. Lyons
Good to hear that it working out. larry On 10/11/05, Scott Stewart [EMAIL PROTECTED] wrote: Commute blows, but I've got plenty off work :) Thanks for asking sas Scott A. Stewart Cold Fusion Developer GNSI 11820 Parklawn Dr. Rockville, MD over a thousand years ago, a blue faced

<    1   2