Re: Subversion appliance use attempt...

2007-10-21 Thread Zaphod Beeblebrox
: Sunday, October 21, 2007 11:33 AM To: CF-Talk Subject: RE: DEATH to HOMESITE Thanks, Zaphod... I areadyhave vmWare player installed, so I'll give this appliance a look-over. Rick -Original Message- From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] Sent: Sunday

Re: Subversion appliance use attempt...

2007-10-21 Thread Zaphod Beeblebrox
no no noo.don't make someone use vim ! :) the subversion appliance has nano (which has the common commands displayed at all times) installed on it. use this command sudo nano /var/svnroot/wsmrepo/conf/passwd Then, I think there's an example in the text file itself. but the format is

Re: Subversion appliance use attempt...

2007-10-21 Thread Zaphod Beeblebrox
would I get that info? Rick -Original Message- From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] Sent: Sunday, October 21, 2007 3:35 PM To: CF-Talk Subject: Re: Subversion appliance use attempt... nope, no graphical interface for the server at all. The instructions

Re: parsing problem

2007-10-21 Thread Zaphod Beeblebrox
You could use this regular expression: rereplace(file_contents,([^,]*), (.*)\n(.*)\n[ ](.*)\n,line:\1|\2|\3,ALL) This will convert the 3 lines into something like this: line:Abbot|John|[EMAIL PROTECTED] line:Abrahams|Fred|[EMAIL PROTECTED] etc You might have to tweak it a little, but that

Re: Subversion appliance use attempt...

2007-10-21 Thread Zaphod Beeblebrox
into Subversion running on the Linux distro for my access to the repo? Huh??? So, I'm downloading TortoiseSVN now... Rick -Original Message- From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] Sent: Sunday, October 21, 2007 7:42 PM To: CF-Talk Subject: Re: Subversion appliance use attempt

Re: DEATH to HOMESITE

2007-10-20 Thread Zaphod Beeblebrox
I've started using a subversion vmware appliance in the free vmware player. Best of both worlds there. On 10/20/07, Cutter (CF Related) [EMAIL PROTECTED] wrote: It can be confusing. Fortunately other's have gone before you on this road.

Re: DEATH to HOMESITE

2007-10-20 Thread Zaphod Beeblebrox
This one. http://www.young-technologies.com/Software/Subversion-Virtual-Machine/ On 10/20/07, Rick Faircloth [EMAIL PROTECTED] wrote: Which subversion appliance are you using? Rick -Original Message- From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] Sent: Saturday, October 20

Re: Frameworks: Post vs. Get

2007-10-15 Thread Zaphod Beeblebrox
I thought that the google web accelerator did all the convincing anyone needed. If I recall correctly, a lot of intranets had a problem with it in that lots of GET operations would alter data. The user would be logged in, and gwa would automatically fetch all GET links. There'd be no security

Re: connectstring in CF8

2007-10-13 Thread Zaphod Beeblebrox
It's odd because I've been using jruby lately which uses jdbc connections and it allows you to dynamically set your datasources all day long. It's one feature of CF5 that I really miss. On 10/13/07, Dave Watts [EMAIL PROTECTED] wrote: Was there a problem with it? I seem to recall that JDBC

Re: ColdFusion stopped?!?!

2007-10-10 Thread Zaphod Beeblebrox
We had a windows update roll through today that screwed up a bunch of our servers until a complete powerdown and reboot. On 10/10/07, Tim Do [EMAIL PROTECTED] wrote: PLEASE help! Ever since 8am this morning ColdFusion has gone down every few minutes. The only thing that I can see in the

Re: SOT: How do you version control with your CF code?

2007-10-07 Thread Zaphod Beeblebrox
I've used the Dreamweaver add in and don't really think it adds that much to the experience. If I'm on my machine that has DW, I'll do all my coding in DW, when I done and ready to commit back to the repository, I'll drop out to TortoiseSVN and do all my interactions with Subversion that way.

Re: SOT: How do you version control with your CF code?

2007-10-07 Thread Zaphod Beeblebrox
plugin though and actually can not see a reason as to why I would need it. It just is not that hard to alt-tab over to something. On 10/7/07, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: I've used the Dreamweaver add in and don't really think it adds that much to the experience

Re: SOT: How do you version control with your CF code?

2007-10-07 Thread Zaphod Beeblebrox
This is where something like Rails migrations would be a great thing for a CF framework to copy. All of your database changes are kept in ruby files that describe table creation, column additions, table deletions, and if so needed, raw sql statements to create functions or stored procs. Every

Re: CF Code readability (Where Clause)

2007-10-06 Thread Zaphod Beeblebrox
yep, I pretty much do the same thing, also my selects look like this: SELECT col1 ,col2 ,col3 FROM table1 INNER JOIN table2 ON table1.col1 = table2.col2 WHERE x = 1 AND Deleted = 0 In essence, I capitalize my sql keywords, I place the

Re: Visual confirmation code

2007-10-02 Thread Zaphod Beeblebrox
I'd read somewhere about a method for spam control where you throw an extra field into your form that should always be blank. You hide it with css so the users don't see it. When the spambots come through and fill in all the blanks, you discard it based on whether your hidden field is filled in

Re: Am I the only one who thinks Flex 2 isn't

2007-09-05 Thread Zaphod Beeblebrox
On 9/5/07, Brian Kotek [EMAIL PROTECTED] wrote: On 9/5/07, Tom Chiverton [EMAIL PROTECTED] wrote: 2. Flex 2 AND database: We have created an XML for the data, that's makes the application sluggish as hell! XML data have much overhead ( I believe something like 2/3 ) Yes. And

Re: Am I the only one who thinks Flex 2 isn't

2007-09-05 Thread Zaphod Beeblebrox
XML, and web services. The bottom line is that however else you want to expose the data, there is no reason not to use AMF to feed a Flex app. On 9/5/07, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: portabilityyou could use any client technology to consume your service if it uses xml

Re: Planning For FLEX Integration

2007-09-03 Thread Zaphod Beeblebrox
my experience so far has been that Flex not only replaces the views, but also a lot of the controllers and it has it's own models. Accordingly, the architecture of my apps has been to create a both a backend and a frontend. The backend can either be RESTful services or full blown web services.

Re: CF8 Flash froms VS. AJAX (javascript)

2007-09-03 Thread Zaphod Beeblebrox
In a CMS, you probably want something a lot more powerful than the Rich Text Editor control. Among it's weaknesses is the fact it can't display tables (at least that's how I remember it) which is a real biggie to me. On 9/3/07, Joeri B [EMAIL PROTECTED] wrote: Hi Guys, I want to build a

Re: cfimage resize running very slow

2007-08-21 Thread Zaphod Beeblebrox
I'm curious what cfimage uses behind the scenes. If it's the java image libraries, I wouldn't be surprised with the speed issues as I had trouble with them when used as a cfobject. On 8/20/07, Steve Sequenzia [EMAIL PROTECTED] wrote: I am trying to figure out if it is normal for the cfimage

Re: multiple sites with cf 8 and iis

2007-08-21 Thread Zaphod Beeblebrox
unless you're using a server version of windows, IIS isn't going to serve more than 1 site at a time. BTW, entries in the hosts file would take on this form: 127.0.0.1localhost 127.0.0.1redhotkitties.com Then, in IIS you'd set up multiple sites and have them use the host header to

Re: multiple sites with cf 8 and iis

2007-08-21 Thread Zaphod Beeblebrox
cool! I had no idea that restriction was lifted for vista. is there a top limit? On 8/21/07, Dave Watts [EMAIL PROTECTED] wrote: unless you're using a server version of windows, IIS isn't going to serve more than 1 site at a time. unless you're using Vista. Dave Watts, CTO, Fig

Re: Frameset Reloading

2007-08-19 Thread Zaphod Beeblebrox
a href=blah target=_top/ On 8/19/07, Will Tomlinson [EMAIL PROTECTED] wrote: I'm trying to get my login/logouts workin with a frameset and having trouble with it. In the frameset page, I check the SESSION.isLoggedin status and display the login form. The user logs in and it loads up

Re: REST Webservices

2007-08-17 Thread Zaphod Beeblebrox
hthat's really a wide description from the client. It may mean that he only wants the results returned as straight xml. It may also mean that he wants cleaner urls like http://www.myservice.com/users vs http://www.myservices.com/index.cfm?method=getUsers or

Re: OT: SQL Manager?

2007-08-15 Thread Zaphod Beeblebrox
You can always set up an alias for the 2nd instance of the server and then register the alias in EM. On 8/15/07, Adkins, Randy [EMAIL PROTECTED] wrote: Who can recommend a SQL Management utility other than Enterprise Manager to manage multiple Microsoft SQL Databases and not having multiple

Re: OT: SQL Manager?

2007-08-15 Thread Zaphod Beeblebrox
server -Original Message- From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 15, 2007 12:28 PM To: CF-Talk Subject: Re: OT: SQL Manager? You can always set up an alias for the 2nd instance of the server and then register the alias in EM. On 8/15/07, Adkins

Re: MySQL front end...

2007-08-09 Thread Zaphod Beeblebrox
I've used this in the past and it wasn't too bad. http://code.google.com/p/sqlyog/ Plus, you could contribute code back to it and feel really good about yourself :) On 8/9/07, Che Vilnonis [EMAIL PROTECTED] wrote: Besides Aqua Data Studio, what else is out there that is free and runs on

Re: any idea how to

2007-08-08 Thread Zaphod Beeblebrox
cfset new_date=rereplace (20060523, ([\d]{4})([\d]{2})([\d]{2}),\2/\3/\1,ALL)/ On 8/8/07, Scott Stewart [EMAIL PROTECTED] wrote: Convert 20060523 Into 5/23/2006 I'm at a loss. Thanks in advance sas -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way

Re: Getting windows explorer to search ColdFusion files

2007-08-02 Thread Zaphod Beeblebrox
my solution was to download AstroGrep which let's me search *all* files on my system. http://astrogrep.sourceforge.net/ Also shows you a snippet of the files showing where your search term is. On 8/2/07, Michael Dinowitz [EMAIL PROTECTED] wrote: Does anyone know how to force windows explorer

Re: error occured while Parsing an XML document

2007-07-17 Thread Zaphod Beeblebrox
try using img src=cfoutput#xmlformat(homepage.cb_imaged_resized)#/cfoutput / On 7/17/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Any ideas? I'm getting the following error message ... The following information is meant for the website developer for debugging purposes. Error Occurred

Re: Quicktime Movie

2007-07-16 Thread Zaphod Beeblebrox
I've used the Riva FLV encoder (free version) to convert a number of different files to FLV with good results. http://www.download.com/Riva-FLV-Encoder/3000-2140-10320097.html On 7/16/07, Greg Luce [EMAIL PROTECTED] wrote: I was hoping there was some free or low cost program for converting

Re: CF Site scraper

2007-07-16 Thread Zaphod Beeblebrox
well, they do have rss feeds based on search terms that would do the same thing On 7/16/07, Brad Wood [EMAIL PROTECTED] wrote: So I had an idea this morning for a simple CF site, but I wanted feedback on the practicality, usefulness, or even the legality of it. My wife is now

Re: Dreamweaver and Vista

2007-07-03 Thread Zaphod Beeblebrox
let's not talk hypotheticals here On 7/3/07, Charlie Griefer [EMAIL PROTECTED] wrote: If people take screen shots of Vista not freezing up on them... will that prove that it doesn't suck? :) ~| Upgrade to Adobe ColdFusion

Re: Dreamweaver and Vista

2007-07-01 Thread Zaphod Beeblebrox
It's the way they handled it that I don't like. There's no sudo to avoid being asked for your password umpteen times during regular maintenance. It's just a bit frustrating which I think will lead to users turning off that feature and having no security once again. On 7/1/07, Eric Roberts

Re: Dreamweaver and Vista

2007-06-30 Thread Zaphod Beeblebrox
yep, though I've had the same problem with compressed folders on WinXP. For some reason their zip utility is crappy. As for Vista, I didn't like it much either. I uninstalled it 24 short hours after installing it. My feeling is that it really shouldn't be touted as an upgrade since upgrades

Re: OT:Great CSS Selector test suite

2007-06-12 Thread Zaphod Beeblebrox
and then try running it with FF, IE, and now Safari. Safari is definitely a rump kicker in the javascript dept. On 6/12/07, Andy Matthews [EMAIL PROTECTED] wrote: Evaluates the speed of the various JS libraries at querying the dom.

Re: OT:Great CSS Selector test suite

2007-06-12 Thread Zaphod Beeblebrox
out with this. Its shameful when IE performs better than Safari. Rey Zaphod Beeblebrox wrote: and then try running it with FF, IE, and now Safari. Safari is definitely a rump kicker in the javascript dept. On 6/12/07, Andy Matthews [EMAIL PROTECTED] wrote: Evaluates the speed

Re: Subversion and Dreamweaver 8

2007-06-09 Thread Zaphod Beeblebrox
it looks like the web site is down right now, but there is an extension for Dreamweaver that integrates with TortoiseSVN. It's called SVN4DW. It's free and it works. http://www.nearlygeek.com/tools/subversion-for-dreamweaver/introduction/ On 6/9/07, Robertson-Ravo, Neil (RX) [EMAIL

Re: Any see what is wrong with this query?

2007-06-06 Thread Zaphod Beeblebrox
is name a char type vs a varchar, if so, you'll have to pad with spaces on the right. On 6/6/07, Ian Skinner [EMAIL PROTECTED] wrote: Logs Record Set - query - Top 4 of 4 Rows ATTRIBUTES DATELASTMODIFIED DIRECTORY MODE NAME SIZE TYPE 1 [empty string] 06/06/2007 10:59:17 AM

Re: CFC Typeof()

2007-06-06 Thread Zaphod Beeblebrox
regardless of whether or not CF is duck typed or dynamic, the dynamic languages I've used have all had this ability. Say you have an cfc that expects a vehicle, you send it a bike and you send it a car, both are vehicles, but both behave differently in some aspects. They may both have a 'go',

Re: Run PHP code inline on a Coldfusion page

2007-06-04 Thread Zaphod Beeblebrox
yep, that worked well for OS/2 On 6/4/07, Billy Cox [EMAIL PROTECTED] wrote: ...why would you want to? Two words: Cost-savings If CF can leverage existing apps written in other languages even to a modest degree, this greatly increases the value of ColdFusion. We are in this for the

Re: OT: General Question...

2007-05-31 Thread Zaphod Beeblebrox
Make sure to do testing because I've had plenty of lockup issues with javascript fixes for pngs. I'm not sure if this is the same style fix or not, but just be wary. On 5/31/07, Rick Faircloth [EMAIL PROTECTED] wrote: Great! I can use that! .png it is! Thanks, Rick -Original

Re: The CF Dissenters Have Been Smacked Down

2007-05-30 Thread Zaphod Beeblebrox
fat chancea lot of those Ruby fanboys used to love CF :) On 5/30/07, Jake Pilgrim [EMAIL PROTECTED] wrote: :) Although I do agree - PHP is definitely on the way out. Ever since they addressed their memory leak issue (related to the - operator) by just implementing an error for code

Re: Tools for converting videos to FLV?

2007-05-21 Thread Zaphod Beeblebrox
I'm pretty sure that the riva encoder is free still. Afterall, it's really just a front end to the open source ffmpeg (a really slick front end though). The other cool thing about Riva encoder is that it will also decode an flv file into a mpg or avi. Heck, it handles pretty much anything that

Re: Imagemagick CFEXECUTE identify

2007-05-02 Thread Zaphod Beeblebrox
use the outputfile attribute of cfexecute, conversely, you could pipe the output to a text file and then read in the text file. On 5/2/07, Jeff Wickersty [EMAIL PROTECTED] wrote: Hi folks. I'm using ImageMagick on my CF7 UNix server. I can use CFEXECUTE NAME=mogrify. fine, it works

Re: Imagemagick CFEXECUTE identify

2007-05-02 Thread Zaphod Beeblebrox
Jeff, are you giving the cfexecute tag some kind of timeout value? If not, it may be spawning it and immediately coming back before imageMagick has run. On 5/2/07, Jeff Wickersty [EMAIL PROTECTED] wrote: use the outputfile attribute of cfexecute, conversely, you could pipe the output to a

Re: Which Framework do you use... (if any)

2007-04-29 Thread Zaphod Beeblebrox
Hasn't the Accord won best car for several years in a row. Does that mean we should all be driving Accord's? Doesn't a lot of the car purchase come down to what you need a vehicle to do? The framework question is more the general hammer metaphor. All the frameworks are like different types of

Re: Which Framework do you use... (if any)

2007-04-28 Thread Zaphod Beeblebrox
I use Rails. :) On 4/28/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Just what frameworks/methologies are people using, if any? There are the obvious front-runners such as Mach-II, Model-Glue and Fusebox 5 (and obvious ORM behind such as ColdSpring, Transfer etc) but from

Re: Regex help looking for a name in a string.

2007-04-27 Thread Zaphod Beeblebrox
It does really look like your using Regex's. Since you're looking for strings essentially, can't you just use ReplaceNoCase? On 4/27/07, Will Swain [EMAIL PROTECTED] wrote: Ok, no doubt this is an easy RegEx question, but not for me. I have two queries. One returns a set of names, the other a

Re: Regex help looking for a name in a string.

2007-04-27 Thread Zaphod Beeblebrox
that should be It doesn't really look like your using Regex's On 4/27/07, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: It does really look like your using Regex's. Since you're looking for strings essentially, can't you just use ReplaceNoCase? On 4/27/07, Will Swain [EMAIL PROTECTED] wrote

Re: Salaries

2007-04-21 Thread Zaphod Beeblebrox
check this link out: http://www.keystonesymposia.org/cfs/ On 4/21/07, Dwayne Cole [EMAIL PROTECTED] wrote: What is the salary range for a coldfusion development? I built a complex cms system and for years I developed websites for many clients. I have a job now and the company wants me to

Re: Date Not Formatting Correctly

2007-04-19 Thread Zaphod Beeblebrox
Steve, You either need to quote your date field in the insert query just like the events field, or you need to cfparam it such as cfif IsDefined(FORM.Events) AND #FORM.EventDate# NEQ cfqueryparam cfsqltype=varchar value=#FORM.Events#/, cfqueryparam cfsqltype=timestamp value=#FORM.EventDate#/

Re: Client-side validation or Server-side Validation?

2007-04-14 Thread Zaphod Beeblebrox
heck as long as you implicity trust your users to give you clean data and they'll never try to hack your server, well then yeah, I think client side only is good. To me, this pertains to the apps that my mom and I useeverything else uses server side or both. :) On 4/14/07, Rick Faircloth

Re: IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Zaphod Beeblebrox
I've been struggling with this also. If I remember correctly, it's a problem with the implementation of certs in IIS. Something about the packet size and IIS not wanting to allow a large enough packet size. In the end, after day of trying to get it to work correctly, I rerouted the uploads

Re: IIS6 and Client Certs breaks CFFILE Upload

2007-04-09 Thread Zaphod Beeblebrox
that should be after days On 4/9/07, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: I've been struggling with this also. If I remember correctly, it's a problem with the implementation of certs in IIS. Something about the packet size and IIS not wanting to allow a large enough packet size

Another Subversion Question

2007-04-02 Thread Zaphod Beeblebrox
I use the ever present BlogCFC for a couple of blogs. Each blog has a little bit different layout, but that's about it. I'm trying to figure out how I could set up the Subversion repository and include Ray's subversion repository to be something like this: /trunk/(Ray's SVN - still updateable

Re: Another Subversion Question

2007-04-02 Thread Zaphod Beeblebrox
Hmmm...I was thinking svn:externals was more for your working copy. With SVK, I set up a mirror of Rays svn in my svn (svk calls it a depot). Then I tell it to sync to my /trunk . Then I tell it to copy from /trunk to /local. Now, whenever I want to make changes to it, I check out the local

Re: Site shutdown and avoiding CF 404 errors?

2007-03-20 Thread Zaphod Beeblebrox
You could always remove the .cfm mappings on that site. Then the web server would respond with the 404 (that could include a meta tag redirect) On 3/20/07, Jake. [EMAIL PROTECTED] wrote: I've recently taken down one of my CF sites, but looking at the logs, I'm still getting a bunch of hits

Re: Site shutdown and avoiding CF 404 errors?

2007-03-20 Thread Zaphod Beeblebrox
Does application.cfc run even if there is no cfm file? I was under the assumption that it didn't. On 3/20/07, Peterson, Chris [EMAIL PROTECTED] wrote: You could just make an application.cfc, stick it in the root of your deleted folder with this code: cffunction name=onRequest

Re: Site shutdown and avoiding CF 404 errors?

2007-03-20 Thread Zaphod Beeblebrox
what web server? On 3/20/07, Jake. [EMAIL PROTECTED] wrote: Does application.cfc run even if there is no cfm file? I was under the assumption that it didn't. No, I had to put an empty index.cfm file in alongside it. So this application.cfc method worked, but only partially. The root

Re: Links to Network shares in Safari

2007-02-01 Thread Zaphod Beeblebrox
as a warning, it's probably going to stop working on IE7. At least that's been our experience with our intranet. On 2/1/07, Jacob Munson [EMAIL PROTECTED] wrote: I've got some local users that use Macs, and one of our Intranet pages has videos that people can view. This works in IE, but not

Re: Simple source control

2006-12-27 Thread Zaphod Beeblebrox
the newest versions of SVN support locking of a file. The tortoiseSVN (explorer integration) even has a right click option to lock the file. On 12/27/06, Claude Schneegans [EMAIL PROTECTED] wrote: What happens is when developer A commits a file changed by developer B, he is told there is a

Re: SOT: XSLT with XML

2006-12-14 Thread Zaphod Beeblebrox
I thought that . was self and // was self and descendants? On 12/14/06, Ian Skinner [EMAIL PROTECTED] wrote: xsl:value-of select=./ This selects that value of the current node and all child nodes? What if one does not want the values of the children yet? How would one get the value of

Re: SOT XSLT Template Match

2006-12-06 Thread Zaphod Beeblebrox
i went to BN and bought the XML bible which had some pretty good stuff about xslt in it. Once I read that, most of the other tutorial sites seemed to make more sense to me. On 12/6/06, Ian Skinner [EMAIL PROTECTED] wrote: Can anybody point to a good resource on how to use multiple template

Re: calling all CSS gurus

2006-12-06 Thread Zaphod Beeblebrox
you've specified the height of your Nav element to be 1.6em so it's being honored by the clearing div as such height. Clear out the height specification and it flows fine. -- You scumbag, you maggot You cheap lousy faggot Happy Christmas you arse I pray God its our last

Re: Firebug 1.0 Beta is Out

2006-12-04 Thread Zaphod Beeblebrox
Sweet! He's allowed firebug to be set up to ignore certain web sites! On 12/4/06, Rey Bango [EMAIL PROTECTED] wrote: Guys, I posted this on my blog but since I haven't reached reader levels on par with Ben Forta, Vince Bonfanti, Rob Ghonda or Sean Corfield, I figured I'd let you guys know.

Re: Form Validation Custom Tag

2006-10-15 Thread Zaphod Beeblebrox
Just to validate that you're suggeting to use client-side validation IN ADDITION to server-side validation, correct? On 10/15/06, Claude Schneegans [EMAIL PROTECTED] wrote: I'd rather have just server side than just client side. There are things indeed that can only be done on server side,

Re: Cf vs ?

2006-10-13 Thread Zaphod Beeblebrox
another thing in response to the shared hosting: To me, cf has always been a server language meant for your own managed server. Between having to set up dsn's in the administrator and having mappings be server wide, to application variables being visible by any other site, to having to disable

Re: How do I disable view source?

2006-10-04 Thread Zaphod Beeblebrox
I use the URL_to_bmp tag and deliver every page as bmp screencap. It's very nice that way because I don't need to worry about how it looks on each browser. I'm thinking of switching to gif or even png to cut down on my bandwidth cost. On 10/4/06, Will Tomlinson [EMAIL PROTECTED] wrote: Hey,

Re: Arghhhh!!

2006-09-28 Thread Zaphod Beeblebrox
cffunction name=generate_list output=true cfargument name=parentID required=true/ cfset var list_items = / cfquery name=list_items dbtype=query SELECT catID,category,parent_id FROMcategories WHERE parent_id = cfqueryparam

Re: Arghhhh!!

2006-09-28 Thread Zaphod Beeblebrox
oops, that last line should be cfset list_generate(parentID=)/ On 9/28/06, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: cffunction name=generate_list output=true cfargument name=parentID required=true/ cfset var list_items = / cfquery name=list_items dbtype=query

Re: Arghhhh!!

2006-09-28 Thread Zaphod Beeblebrox
:) On 9/28/06, Doug Brown [EMAIL PROTECTED] wrote: I get an error Query Of Queries syntax error. Encountered parent_id = NULL. Incorrect conditional expression, Expected one of [like|null|between|in|comparison] condition, - Original Message - From: Zaphod Beeblebrox [EMAIL PROTECTED

Re: Arghhhh!!

2006-09-28 Thread Zaphod Beeblebrox
Yeah, that query needs to be done something like this: cfquery name=list_items dbtype=query SELECT catID,category,parent_id FROMcategories WHERE cfif parentID eq parent_id is null cfelse parent_id=#parentid#/cfif /cfquery again, this

Re: Arghhhh!!

2006-09-27 Thread Zaphod Beeblebrox
kind of ironic huh? The Vanquish is ...errm...vanquished. On 9/27/06, Doug Brown [EMAIL PROTECTED] wrote: Talk about frustrating. Ok, I am populating a menu from a database and something weird is going on. Hopefully someone can shed some light. This is a mySql database if that makes any

Re: Image resizing

2006-09-13 Thread Zaphod Beeblebrox
I had trouble resizing large images to smaller ones. They would come out about 20 shades darker with the tmt_img tag. Of course, I didn't have a better java solution, so I opted for installing ImageMagick on the server. On 9/13/06, Larry Lyons [EMAIL PROTECTED] wrote: imageCFC (I forget who

Re: Image resizing

2006-09-13 Thread Zaphod Beeblebrox
- From: Zaphod Beeblebrox [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 13, 2006 1:00 PM To: CF-Talk Subject: Re: Image resizing I had trouble resizing large images to smaller ones. They would come out about 20 shades darker with the tmt_img tag. Of course, I didn't have a better java

Re: restarting CF via the factory

2006-09-06 Thread Zaphod Beeblebrox
I hope you're the only cf site on this server :) On 9/6/06, D F [EMAIL PROTECTED] wrote: Well the problem is not file creation, the problem is not having admin access to the services to restart them. Hence why I was looking for a backdoor to restarting the CF server.

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-28 Thread Zaphod Beeblebrox
Then my sql server trace logs must be lying. On 8/28/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: No, you do not, not really. This is not how SQL Server works. You are still using inline compiled on demand SQL. -- I took a walk around the world to ease my troubled mind I left

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-27 Thread Zaphod Beeblebrox
I did a project where sp's were used almost exclusively. That was a major pia whenever it came to moving the app from dev to production. Usually, you can role an update to production by just copying over the cfml. Changes in sp's required you to either increment the sp name, or take the app down

Re: Stored procs (was Top 100 ColdFusion Programmers)

2006-08-27 Thread Zaphod Beeblebrox
I run almost all my queries with queryparam so they're all precompiled anyway. When I do a trace, I see that sqlserver is calling that query as an sp after the first call. Therefore, I get the benefits of speed of the sp with the ease of deployment with cf. On 8/27/06, Teddy Payne [EMAIL

Re: How would I code this line?

2006-08-25 Thread Zaphod Beeblebrox
cfset session.client_name = #GNC.Client_First_name#nbsp; #GNC.Client_Middle_Name#nbsp; #GNC.Client_Last_Name# ,nbsp;#GNC.Client_Name_Suffix / !--- Remove the last comma and nbsp if it's the last thing on the line --- cfset session.client_name =

Flash Forms and reporting server validation errors

2006-08-07 Thread Zaphod Beeblebrox
Any strategies for displaying server validation errors in flash forms, stuff like a duplicate email address that you only know once you make a trip to the server? I'd like to have it presented the same as the other validation errors (client side ones) Thanks zB -- Soy un perdedor I'm a loser

Re: Unofficial CF Developer Salary Survey

2006-08-01 Thread Zaphod Beeblebrox
and to that end, is it only cfmx7 advanced certs. Actually though, has anyone ever received a raise based on obtaining a cert? On 8/1/06, Charlie Griefer [EMAIL PROTECTED] wrote: is it just for those who hold advanced cf certs? (since that's what the original poster was looking for) :) On

Re: Comparing Form Fields

2006-08-01 Thread Zaphod Beeblebrox
For different types of validation, you will need to write some JS, but it can still tie into CF, e.g. script type=text/javascript function testPasswords(form, ctrl, value) { if (form['password2'] != value) { return false } else return true } /script cfform cfinput name=password1

Re: Comparing Form Fields

2006-08-01 Thread Zaphod Beeblebrox
of course, you'll still want to test it on the server side as well. On 8/1/06, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: For different types of validation, you will need to write some JS, but it can still tie into CF, e.g. script type=text/javascript function testPasswords(form, ctrl, value

Re: CFIDE not accessible - I think???

2006-07-31 Thread Zaphod Beeblebrox
try hitting http://yoursite_or_localhost/CFIDE/ it might give you a permission error, or it will give you a not found error. The permission error is ok. On 7/31/06, Steve LaBadie [EMAIL PROTECTED] wrote: Not able to output data to CF Flash (cfselect) forms or CFGRID. How would I check to

Re: cfselect in CF Flash Form

2006-07-28 Thread Zaphod Beeblebrox
Steve, I had this exact problem yesterday and it turned out to be that I didn't have the CFIDE mapping in that web site. You might want to check on that. On 7/28/06, Steve LaBadie [EMAIL PROTECTED] wrote: I have a CF Flash form with a cfselect populated through a DB, but it doesn't populate.

Flash form printing

2006-07-26 Thread Zaphod Beeblebrox
Is there some quick and easy way to print the contents of a flash form if the form has a scrollbar. Currently, I can right click on it and select print, but that only prints the currently visible portion. Thanks -- There's snakes upon your ladder And there's dice upon your skirt There's

Re: OT: Javascript Menu that Displays Over IFrames

2006-07-14 Thread Zaphod Beeblebrox
Ali, I've used a trick to get drop downs to float over select boxes in IE. The trick is to put an relatively positioned empty iframe behind each one of your drop down menu. On 7/14/06, Ali Awan [EMAIL PROTECTED] wrote: I know this is not a CF question, but since this list has a lot more

I hate frickin sports

2006-06-20 Thread Zaphod Beeblebrox
So the Mav's lost the (opposite of chill) tonight. I realized why I don't like watching sports and getting wrapped up in them: I HATE F-ING LOSING! I hate it more than I like winning. It drives me crazy to be so hyped up about winning and watch it slip through your hands without being able to

Re: I hate frickin sports

2006-06-20 Thread Zaphod Beeblebrox
sorry, wrong address.damn! what a loser I am tonight. On 6/20/06, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: So the Mav's lost the (opposite of chill) tonight. I realized why I don't like watching sports and getting wrapped up in them: I HATE F-ING LOSING! I hate it more than I like

Re: I can not get ColdFusion to reload cfm page.

2006-06-16 Thread Zaphod Beeblebrox
even you when force a cache refresh with Shift-F5 in Internet Explorer? On 6/16/06, Troy Simpson [EMAIL PROTECTED] wrote: My config is: CFMX Enterprise 7.0.1 Windows Server 2003 Internet Explorer Browser IIS Dreamweaver 8 It appears that coldfusion is caching pages but I have turned off

Re: Fusebox 4 Slow?

2006-06-06 Thread Zaphod Beeblebrox
dave, you keep saying this, but then won't explain why you're coding in CF. Afterall, it's not faster than asp.net according to several benchmarks. If milliseconds are so important to the customer, you're doing a disservice to them currently. On 6/6/06, dave [EMAIL PROTECTED] wrote: and the

Re: complete 360 product photos

2006-05-19 Thread Zaphod Beeblebrox
find yourself a cheap anti-gravity ray gun on ebay first, then everything after that should be self apparent. On 5/18/06, dave [EMAIL PROTECTED] wrote: I have a site now where we display the products in a 360 view (straight side to side), the client has asked me if when can do a global

Re: complete 360 product photos

2006-05-19 Thread Zaphod Beeblebrox
yeah, but it's a lot easier to take a 360 degree view from inside of a room that to suspend something in midair and take a picture of the bottom of it. :) On 5/19/06, Bryan Stevenson [EMAIL PROTECTED] wrote: Any realtor could answer that questionsame technology as the 360 room views used

Re: What do you use to capture a video frame?

2006-05-17 Thread Zaphod Beeblebrox
I know this is a little late, but I use VRTainments CapturePad. It will capture streaming video off the internet, snapshots of streaming video, etc All for a low price of $20. Probably one of the most awesome capture programs I've used. On 5/17/06, Mike Kear [EMAIL PROTECTED] wrote: As

Re: Frameworks

2006-05-12 Thread Zaphod Beeblebrox
If you choose not to use a framework, you still have made a choice, you can choose from OOP or procedural code still, I will choose a path that's clear, I will choose freewill Apologies to Rush Zaph On 5/12/06, Dawson, Michael [EMAIL PROTECTED] wrote: I agree completely and I currently use no

Re: Search Realestate multiple listings

2006-05-09 Thread Zaphod Beeblebrox
yeah, they seem to be worse than the priory de sion regarding sharing information. On 5/9/06, Alan Rother [EMAIL PROTECTED] wrote: Yeah, I ran into this erlier this year. it turns out there isn't such a thing as The MLS. Every region in America has it's own MLS group and it appears there

Re: ASP.Net book for CF programmer

2006-05-05 Thread Zaphod Beeblebrox
Yep, learn ASP.net 2.0, php, python, or ruby. Learning any of these will help expand your ideas on how to approach different problems. CF is great, but it's not always the best solution. On 5/5/06, Aaron Rouse [EMAIL PROTECTED] wrote: I'd learn something other than CF, knowing 4.5.2 well

Re: faster alternative to cfcontent for large file downloads?

2006-05-02 Thread Zaphod Beeblebrox
you could always write a copy of the file to a temp directory and then have the anchor point to it. If need be, for security, you could always name the file with UUID then clean up the directory at night or after some set time period On 5/2/06, Jeff Horne [EMAIL PROTECTED] wrote: I am using

  1   2   >