Re: form info to a cfc

2008-10-17 Thread Gerald Guido
Change the CFC to this cfcomponent returntype=query cffunction name=getEmp access=remote cfargument name=lastName required=true cfset var empQuery= cfquery name=empQuery datasource=OLO SELECT * FROM owners WHERE family_name = '#arguments.lastName#' /cfquery cfreturn empQuery /cffunction

Re: Is it possible to trigger a link on a web page and trigger a download?

2008-10-16 Thread Gerald Guido
If you want to force the Save File dialog appear you can use application/unknown as the content type for cfcontent. At least that behaves on windows boxes. EX: cfcontent type=application/unknowncfoutput#yourdata#/cfoutput On Thu, Oct 16, 2008 at 3:35 PM, Wil Genovese [EMAIL PROTECTED] wrote:

Re: .aspx in coldfusion?

2008-10-15 Thread Gerald Guido
You can do a cfhttp request to it and dump it out as a variable. On Wed, Oct 15, 2008 at 1:19 PM, Neal Bailey [EMAIL PROTECTED]wrote: Just curious, But is there a way to say cfinclude an .aspx page within coldfusion? I have a site that I am working on and we need to slowly migrate it over

Re: CF_IF_FIELD Question

2008-10-14 Thread Gerald Guido
It looks like you are using this. That is the only thing that CF_if_Field returned on google. http://cfiframe.sourceforge.net/ This is not standard CF tag, it is custom tag. You will have to ask the ppl that wrote the tag. G On Tue, Oct 14, 2008 at 2:31 PM, Austin Band [EMAIL PROTECTED] wrote:

Re: Inexpensive student/developer oriented CF hosting?

2008-10-13 Thread Gerald Guido
I had a good experience with hostek.com. They have cf 8 for $5/mo No MSSQL though. If the kids want to chip in they can get the $9.99 deal and use the 25 sub domains and 10 MySQL databases. HTH G On Mon, Oct 13, 2008 at 8:46 AM, Pete Ruckelshaus [EMAIL PROTECTED]wrote: I'm the computer

Re: Draw line and box

2008-10-10 Thread Gerald Guido
CFImage? On Fri, Oct 10, 2008 at 11:08 AM, Phillip M. Vector [EMAIL PROTECTED] wrote: table width=(width of box) border=1 tr height=(Height of box) td /td /tr /table There's a square for ya. :) Don L wrote: I'm wondering if there's a way

Re: SQL Server on development box?

2008-10-08 Thread Gerald Guido
They have an Express version. I just set it up. http://www.microsoft.com/sql/editions/express/default.mspx If you need Full text search get the Express Edition with Advanced Services. Here is the run down on features http://www.microsoft.com/sql/editions/express/comparison.mspx G On Wed, Oct

Re: Best free ColdFusion server?

2008-10-08 Thread Gerald Guido
Since both Railo and OpenBD are JEE wars it should not be any different. Adam, you're absolutely correct .When deployed as WAR's they are the same. I neglected to mention that. Thanx for point that out. The Railo Server version is deployed using Resin. Apache uses mod_caucho to connect

Re: How early can I learn MOM, SCOM AND WSUS

2008-10-08 Thread Gerald Guido
My advice is to wait at least until puberty. I disagree. You should hold off until you are married. G On Wed, Oct 8, 2008 at 5:03 PM, Mike Kear [EMAIL PROTECTED] wrote: My advice is to wait at least until puberty. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced

Re: SQL Server on development box?

2008-10-08 Thread Gerald Guido
absolute best-of-breed management tools The only issue I really had with the express MSSQL Management Studio is the lack of import/export functionality. If you have a license for MSSQL 2005 you should be able to install the Management Studio that came with the server. On Wed, Oct 8, 2008 at

Re: Best free ColdFusion server?

2008-10-08 Thread Gerald Guido
, I'm assuming you're deploying on Windows? -Jordan - Original Message - From: Gerald Guido [EMAIL PROTECTED] To: cf-talk cf-talk@houseoffusion.com Sent: Wednesday, October 8, 2008 2:18:02 PM GMT -08:00 US/Canada Pacific Subject: Re: Best free ColdFusion server? Since both Railo

Re: SQL Server on development box?

2008-10-08 Thread Gerald Guido
Thanx Jim. Awesome resource!! ~G~ On Wed, Oct 8, 2008 at 7:19 PM, Jim Davis [EMAIL PROTECTED]wrote: -Original Message- From: Gerald Guido [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 08, 2008 6:19 PM To: cf-talk Subject: Re: SQL Server on development box? absolute

Re: Best free ColdFusion server?

2008-10-08 Thread Gerald Guido
~ On Wed, Oct 8, 2008 at 8:08 PM, Philip Kaplan [EMAIL PROTECTED] wrote: Thanks everyone. Based on your suggestions, I just installed Railo on a Windows box and so far it's working flawlessly. On Wed, Oct 8, 2008 at 3:27 PM, Gerald Guido [EMAIL PROTECTED] wrote: Hey Jordan. That is correct

Re: Debugging Coldfusion and javascript

2008-10-07 Thread Gerald Guido
Aptana has a debugger. Not really a CF tool per se but it is a great IDE for JS development. http://www.aptana.com/studio Debug bar for IE is pretty good http://www.my-debugbar.com/wiki/CompanionJS/HomePage + 1 billion for FireBug. It is an absolute God send.

Re: Best free ColdFusion server?

2008-10-07 Thread Gerald Guido
I am going to make some popcorn On Tue, Oct 7, 2008 at 2:24 PM, Philip Kaplan [EMAIL PROTECTED] wrote: Railo vs BlueDragon vs Smith vs ?? http://www.smithproject.org/ http://www.newatlanta.com/bluedragon/ http://www.railo.ch/

Re: Best free ColdFusion server?

2008-10-07 Thread Gerald Guido
I guess I will go first then. The answer is: It depends. Like Adam pointed out both of them are mature and very capable engines. Both have their stronger/weaker points, it is just matters what you are looking for. My over all impression is that those more comfortable in a J2EE environment may

Re: Execute a Perl script.

2008-10-06 Thread Gerald Guido
Off the top of my head, wouldn't you want to be pointing it to the PERL interpreter/'executable and not cmd.exe? ~ G On Mon, Oct 6, 2008 at 9:59 AM, Ian Skinner [EMAIL PROTECTED] wrote: What would I be looking at to run a Perl script at d:/path/to/my/perl/loader.pl %year% with a cfexecute...

Re: Execute a Perl script.

2008-10-06 Thread Gerald Guido
Try running it at the command prompt or as a bat file and see what happens. I would get it to work there first and then try it with CFexecute. ~G~ On Mon, Oct 6, 2008 at 11:30 AM, Ian Skinner [EMAIL PROTECTED] wrote: yea in win32 you'd want to cfexecute name=c:\program

Re: Execute a Perl script.

2008-10-06 Thread Gerald Guido
Yeah I see now... I wasn't paying enough attention. Sorry I would try this. It has worked for me in the past... when I needed to pass custom vars to an executable I would write the bat file on the fly, save it and then run the bat file with CFexecute. HTH G On Mon, Oct 6, 2008 at 11:56 AM,

Re: Execute a Perl script.

2008-10-06 Thread Gerald Guido
in a couple of years so I am going from memory. And when I was using it I took it to the level of it works and had to move on. Sorry I can help more :( Best of luck with it. G! -- Gerald Guido http://www.myinternetisbroken.com Neurotics build castles in the air, psychotics live in them. My mother

Re: (ot) Best development laptop

2008-09-26 Thread Gerald Guido
Best development laptop? Huh... that's not a loaded question? The two factors (other than price) that drove my decision was RAM and screen real estate. RAM is obvious, especially if Vista and Java come into play. Java reminds me of the scene from Austin Powers where Fat Bastard was eating in bed.

SOT - Railo 3 IIS issues

2008-09-19 Thread Gerald Guido
I tried setting Railo 3 on IIS using these instructions on the Railo Blog. http://www.railo.ch/blog/index.cfm/2008/4/7/Configuring-IIS6-with-Railo It is a VPS from Kickassvps.com Win 2003 SP2 IIS 6 Plesk 8.3 I tested it using port 8600 and it runs fine But when I run it under IIS I get this:

Re: Developing an order form for an application

2008-09-18 Thread Gerald Guido
+1 for jQuery. Having rolled plenty of price calculators by hand and by looking at Ray's example (which is pretty darn slick) I would recommend using a JS framework like jQuery. It will definitely take a lot of the grunt work and pain of the process. jQuery is a lot like CF in that it makes hard

Re: Optimize Query of Query

2008-09-17 Thread Gerald Guido
Actually I have dealt with this and did some testing. What I ended up doing was creating an array with the look up vaules like so CFSet ResultsArray= ArrayNew(1) cfloop query = QMyResults CFSet ResultsArray[QuestionID]= QMyResults.SurveyResultsValue cfloop And then

SOT: kickass vps disk space allotment

2008-09-17 Thread Gerald Guido
I am looking at the KickAss Entry package with 10 gigs. http://www.kickassvps.com/services/windows_vps/plans.php How much disk space is actually available on a 10 gig partition? Is that 10 gigs above and beyond the base Windows install. If not how much space it available for sites software and

Re: kickass vps disk space allotment

2008-09-17 Thread Gerald Guido
-Original Message- From: Gerald Guido [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2008 2:41 PM To: CF-Talk Subject: SOT: kickass vps disk space allotment I am looking at the KickAss Entry package with 10 gigs. http://www.kickassvps.com/services/windows_vps/plans.php How

Re: variables.instance vs cfproperty in beans

2008-09-11 Thread Gerald Guido
It affects WSDL generation without affecting the actual functionality of the CFC. And WSDL is just documentation, for SOAP clients instead of people. Good to know. I was wondering why, given the self documenting nature of CFC's, that CFProperty warranted tag status. Dave, you are a freakin

Re: How NOT to Evaluate (moved from cfset so not to confuse topic)

2008-09-10 Thread Gerald Guido
While we are on the subject. I know I have asked this before But I still haven't figured out a way to do this. I have a bunch of CFC's loaded in memory that I want to call based on the The table name. Is there a way to avoid using evaluate in cases like this: cfset MyServiceObj =

Re: How NOT to Evaluate (moved from cfset so not to confuse topic)

2008-09-10 Thread Gerald Guido
Thanx Adrian and Ian. That worked. First try even..That was the secret handshake I was looking for. ~G~ On Wed, Sep 10, 2008 at 11:25 AM, Ian Skinner [EMAIL PROTECTED] wrote: Gerald Guido wrote: cfset MyServiceObj = evaluate(Application.#arguments.MyTable#Service)/ cfset mystring

Re: How NOT to Evaluate (moved from cfset so not to confuse topic)

2008-09-10 Thread Gerald Guido
=#myService# method=save#ARGUMENTS.myTable# returnvariable=aVarIfYouWantOne cfinvokeargument name=myBeanObj value=#myBeanObj# /cfinvoke Check that cfinvoke though, I don't normally use it. Adrian -Original Message- From: Gerald Guido [mailto:[EMAIL PROTECTED] Sent: 10 September

Re: How NOT to Evaluate (moved from cfset so not to confuse topic)

2008-09-10 Thread Gerald Guido
many cycles on the behalf of others. Thanx ~G~ On Wed, Sep 10, 2008 at 12:57 PM, Raymond Camden [EMAIL PROTECTED] wrote: What's wrong with cfinvoke? Any reason you don't want to use that? On Wed, Sep 10, 2008 at 11:29 AM, Gerald Guido [EMAIL PROTECTED] wrote: Ok... Thanx All. Now this one

Re: Smart redirect (with cookie goodness)

2008-09-08 Thread Gerald Guido
Use session vars and set the cookies on the target page. ~G~ On Mon, Sep 8, 2008 at 7:59 PM, Darren Houle [EMAIL PROTECTED] wrote: I have an app running under an application.cfc. There are a few pages that, under certain conditions, redirect to other pages. Problem is that a user might be

Re: Hi everyone

2008-09-05 Thread Gerald Guido
all_together_in_a_sing_song_voice H Philip /all_together_in_a_sing_song_voice Philip Hi everyone... I am a...aa... Dammit!! I am a.ColdFusion Programmer. /Philip Philip There I said it!! Are you HAPPY NOW/Philip Philip Look!! I TRIED to give it up. Lord knows I tried. /Phili Philip

Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread Gerald Guido
I did not see this go though on http://www.houseoffusion.com/groups/cf-talk/ So i am re-posting it Goal: to create a create a generic function to update database records (CRUD) on multiple tables with out creating a function for each table. Back ground. For various reasons I am using a coded

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread Gerald Guido
31, 2008 at 11:52 PM, James Holmes [EMAIL PROTECTED]wrote: Use cfinvoke. This allows you to specify an arbitrary component and method to call. On Mon, Sep 1, 2008 at 11:24 AM, Gerald Guido [EMAIL PROTECTED] wrote: What I want to do is eliminate evaluate from the mix even though it seems

Re: Repost: Dynamically executing Beans, Gateways, DOA and Service objects.

2008-08-31 Thread Gerald Guido
, 2008 at 12:46 AM, denstar [EMAIL PROTECTED] wrote: On Sun, Aug 31, 2008 at 10:09 PM, Gerald Guido wrote: Use cfinvoke. Thanx James I thought about that, and you are right. But I was hoping to keep it in a cfscript block. Is there a way to do that? This is more of an academic

Re: CFHTTP and SSL

2008-08-26 Thread Gerald Guido
Is your cert self-signed or was it purchased from a place like Thawte? I ran into this a few years back... CFHTTP flat out failed with a self signed cert. I feel your pain. Took me better part of a day to figure out wft was going on. You have to register the cert with CF some how. I forgot what

The thread formally known as the SQL injection attack on House of Fusion

2008-08-26 Thread Gerald Guido
I hereby decree, in the name of all that doesn't suck, that from this day forth this thread will be hereby named The thread formally known as the SQL injection attack on House of Fusion . ~G~ On Tue, Aug 26, 2008 at 4:46 PM, Andy Matthews [EMAIL PROTECTED]wrote: Can someone PLEASE change the

Re: Upgrading CF8 to use ExtJS 2.2

2008-08-25 Thread Gerald Guido
On Mon, Aug 25, 2008 at 12:26 PM, Cutter (CFRelated) [EMAIL PROTECTED] wrote: If you want to use Ext 2.2, you have to write your implementation from scratch (which you'll want to do, if you want more advanced functionality). This is true... However, you might want to look at Justin Carter's

Re: Free BlueDragon?

2008-08-17 Thread Gerald Guido
most of them installed to begin with.. I a Have you got a blog to your xampp integration? -- Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 9015 8628 Mobile: 0404 998 273 -Original Message- From: Gerald Guido [mailto:[EMAIL PROTECTED] Sent: Friday

Re: Free BlueDragon?

2008-08-14 Thread Gerald Guido
deploy a working CF/JSP/LAMP app on a Windows Box in about five minutes. If you are interested I have some tutes on my blog on setting up XAMPP with Adobe CF, Railo and BD. On Wed, Aug 13, 2008 at 10:35 PM, Don L [EMAIL PROTECTED] wrote: Gerald Guido I have a fair amount of experience with Open

Re: Free BlueDragon?

2008-08-14 Thread Gerald Guido
You really don't even have to do that. True. The reason I mentioned XAMPP (Other than I love it) is that it comes with Mysql built in. As well as all the batch scripts you need to start up Tomcat, Mysql, Apache, FTP etc. and install them as services. It is pretty much a complete App stack that

Re: Lean, 'mean' cf8

2008-08-13 Thread Gerald Guido
So don't use JRun then, CF8 is a proper J2EE app. Sure, let me pull $6800 out of my imaginary budget for the upgrade.;-) On Wed, Aug 13, 2008 at 6:52 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 12 Aug 2008, Gerald Guido wrote: I doubt Don is talking about CPU usage. My biggest

Re: Learning advanced Coldfusion - ideas??

2008-08-13 Thread Gerald Guido
Ben Nadel has been running a series on OOP with CF called OOPhoto. It is very well done and various members of the community have been speaking very highly of it. http://www.bennadel.com/blog/recent-blog-entries.htm On Tue, Aug 12, 2008 at 4:51 PM, Dave l [EMAIL PROTECTED] wrote: a new book

Re: Free BlueDragon?

2008-08-13 Thread Gerald Guido
I have a fair amount of experience with Open BD and Railo 3 beta using Apache and Tomcat on Windows/Fedora/Centos. I would gladly answer any questions. I would recommend posing your questions to the Open BD Google Group @ http://groups.google.com/group/openbd?hl=en ~G~ On Wed, Aug 13, 2008 at

Re: Free BlueDragon?

2008-08-13 Thread Gerald Guido
Nitai @ SixSigns posted a video tute on setting up Open BD with apache here: http://www.vimeo.com/1362803 On Wed, Aug 13, 2008 at 6:12 PM, Don L [EMAIL PROTECTED] wrote: I've read a bit on this guy but still does not know anything substantial about it, installing it and playing it out is

Re: Submit ASP form using CFHTTP

2008-08-12 Thread Gerald Guido
Dump out the responseHeader to see if any cookies are being set. cfdump var=#cfhttp.responseHeader# You can see the cookie(s) using this: cfoutput #cfhttp.responseHeader[Set-Cookie]# /cfoutput On Mon, Aug 11, 2008 at 3:38 PM, Billy Cox [EMAIL PROTECTED] wrote: I want to submit a zipcode to

Re: Lean, 'mean' cf8

2008-08-11 Thread Gerald Guido
I doubt Don is talking about CPU usage. My biggest issue with Adobe CF Jrun server instances is RAM. Compared to a lot of other App servers Adobe's JRun app server is a glutton. My CF 8 JRun instances eats 200 megs on a 1.28 gig ram box just sitting there (345 megs on my 3 gig laptop). GlassFish

Re: Lean, 'mean' cf8

2008-08-11 Thread Gerald Guido
I have cf running on top of Apache, single server mode, so all I have to go by is task manager. G On Mon, Aug 11, 2008 at 9:09 PM, Dave Watts [EMAIL PROTECTED] wrote: I doubt Don is talking about CPU usage. My biggest issue with Adobe CF Jrun server instances is RAM. Compared to a lot of

Re: Lean, 'mean' cf8

2008-08-11 Thread Gerald Guido
Point being Install Adobe CF on Win and it eats tons of ram, on Apache or IIS, on Jrun. On Mon, Aug 11, 2008 at 9:48 PM, Dave Watts [EMAIL PROTECTED] wrote: I have cf running on top of Apache, single server mode, so all I have to go by is task manager. Look on the server where the CF

Re: SQL injection attack on House of Fusion

2008-08-08 Thread Gerald Guido
If you use CF to write the bot, for instance ;-) Speaking of such, snagging a cookie with CF is ridiculously easy (of course it is ;) ). cfhttp returns the responseHeader a structure. EX: This: cfoutput #cfhttp.responseHeader[Set-Cookie]# /cfoutput Returns this:

Re: list and ListContainsNoCase

2008-08-06 Thread Gerald Guido
Try ListFind. Listfind returns exact matches. ListConatains will return partial matches. On Wed, Aug 6, 2008 at 2:24 PM, Chad Gray [EMAIL PROTECTED] wrote: Why is this happening? I don't want to display the variable ColorName if it has a value of something in my list dontShowList. If

CF Document - chopping sentences in half horizontally

2008-07-31 Thread Gerald Guido
We have these documents with variable lengths based on number of comments end every so often I get a call about the sentences being chopped in half on the horizontal plane. These need to printed and filed by HR so this is not a want to but a got to type thing. Has anyone figured out how to get

Re: Detecting open Anonymous Web Proxies

2008-07-31 Thread Gerald Guido
Dennis, There are *TONS* of annon proxy lists out there. I took a look at some of them and I didn't see any feeds for them or anything like that. This one is pretty extensive: http://pps.nntime.com/ There are even commercial offerings http://www.samair.ru/proxy/ My favorite is the Borat proxy.

Re: Detecting open Anonymous Web Proxies

2008-07-31 Thread Gerald Guido
Dennis, the three DNSBL lists I meantioned Those are great resources,. Thanx for sharing. One thing to consider is lag time for requests. re: I used to use spampal (a couple of years ago) as a spam filter. I know that it can take a couple of seconds (sometimes more) to process requests to

Re: (ot) Best FTP Software 4 Windows

2008-07-30 Thread Gerald Guido
filezilla. http://filezilla-project.org/ Been using it for years. Their server is not too shabby either. ~G~ On Wed, Jul 30, 2008 at 9:07 AM, Che Vilnonis [EMAIL PROTECTED] wrote: Just curious as to what y'all use. In the past I've used Smart FTP, but it has grown into 'bloatware' IMO and I'm

Re: (ot) Eclipse Question

2008-07-30 Thread Gerald Guido
I know that the Aptana studio plugin has a file view that allows you to work on CF files with out using projects. http://www.aptana.com/ On Wed, Jul 30, 2008 at 10:48 AM, Dave Phillips [EMAIL PROTECTED] wrote: For those of you who use Eclipse (and I know a lot of you do) I have a simple

Re: I need help with a PHP question - off line i guess

2008-07-29 Thread Gerald Guido
I have worked with PHP a bit over the years and my experience is that PHP is pretty snappy on Windows and IIS (IIS 6 at the time) but it really is happier on Apache and *nix boxs. But that shouldn't matter in most cases unless you start getting into apps that are coded to use make use of *nix

Re: [ot] - Payment Gateways?

2008-07-28 Thread Gerald Guido
it may be just because Paypal having been around for such a long time, there are more people using it, thus more people to report problems. This is true, but my impression is that it not so much people having problems as much as the Shoot first, ask questions later approach that they take that

Re: Operation cf_SQLprotect

2008-07-24 Thread Gerald Guido
+10 Brad On Thu, Jul 24, 2008 at 7:17 AM, Brad Wood [EMAIL PROTECTED] wrote: As promised: http://www.codersrevolution.com/index.cfm/2008/7/24/Announcing-the-first-ever-International-Operation-cfSQLprotect ~Brad ~|

Re: Recursion Output Help

2008-07-24 Thread Gerald Guido
Did you look at this: http://nstree.riaforge.org/ On Thu, Jul 24, 2008 at 1:36 PM, Mark Leder [EMAIL PROTECTED] wrote: Hi All, Been working on a recursion output for several days now without success. Using a single category table with ID, Name, ParentID. The nesting is up to four layers

Re: Recursion Output Help

2008-07-24 Thread Gerald Guido
and levels that correspond with documents/db listings on the server. -Original Message- From: Gerald Guido [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2008 2:09 PM To: CF-Talk Subject: Re: Recursion Output Help Did you look at this: http://nstree.riaforge.org/ On Thu, Jul 24

Re: Does cfc filesize make a performance hit?

2008-07-22 Thread Gerald Guido
Just a guess but it sounds more like the CF's infamous string manipulation memory issue than a CFC issue. This issue, and various work a-rounds, was covered in great detail on CF talk about a month or so ago. I would do a search on the cf_talk list looking for Memory issue string manipulation java

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head...

2008-07-22 Thread Gerald Guido
I saw this on the Riaforge update today. Looks like a SQL Jimmy wrapper for your site. http://portcullis.riaforge.org/ -- Portcullis is a CFC based url,form,cookie filter to help protect against SQL Injection and XSS (Cross Site Scripting) atacks. This CFC can help filter

Re: do not increase counter is returns 0

2008-07-22 Thread Gerald Guido
Given the nature of this thread, ad hominid attacks is one of the best Freudian/spell check slip(s) in hominid history. ~G~ On Tue, Jul 22, 2008 at 10:11 AM, Adrian Lynch [EMAIL PROTECTED] wrote: Hominid: Any member of the biological family Hominidae (the great apes), including the extinct

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head...

2008-07-21 Thread Gerald Guido
This is some sort of encoding... Like Bin Hex, Spammers use it to obscure urls and such. Computers read it just fine. If you look around on the internets you can find a decoder to render it to human readable form. You just need to figure out what sort of encoding they are using On Mon, Jul 21,

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head...

2008-07-21 Thread Gerald Guido
server to decode it! Simply change the exec to a print statement. Very important! :) ~Brad -Original Message- From: Gerald Guido [mailto:[EMAIL PROTECTED] Sent: Monday, July 21, 2008 9:59 AM To: CF-Talk Subject: Re: (ot) URL Hack Attempt Leaves Me Scractching My Head

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head...

2008-07-21 Thread Gerald Guido
Drop database foo Crap, I just let another one slip. Brace yourself for another wave of attacks... :) Lets not forget what a mess Little Bobby Tables made. http://xkcd.com/327/ -- If everything seems under control, you're not going fast enough -- Mario Andretti

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head...

2008-07-21 Thread Gerald Guido
We're getting hit hard today with this. /rss.cfm? Is is just rss.cfm? I haven't looked at our logs yet. Where did you see this. The server log files? ~~G~~ On Mon, Jul 21, 2008 at 12:53 PM, Kris Jones [EMAIL PROTECTED] wrote: We're getting hit hard today with this. They're failing, because

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head...

2008-07-21 Thread Gerald Guido
I went to look at a site I do side work for and they got hit. No... not my stuff. :) We are going to be reading about this on all the tech rags like Info World and Zdnet tomorrow. ZDnet will prolly post it with a H1 tag with a blink tag for good measure. One of the things about SQL server I

Re: Experiences with Railo

2008-07-21 Thread Gerald Guido
Yeah... what Rick said. Psoft put out a great product. H-Sphere is/was a great product. Sorry to hear about that... and your experiences. Your words were kind compared to what I had to say during the Rehat Debacle of 02. ;) ~G~ On Mon, Jul 21, 2008 at 6:29 PM, Rick Faircloth [EMAIL PROTECTED]

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head...

2008-07-21 Thread Gerald Guido
Always sanitize your data entry. http://xkcd.com/327/ Performance is a moot point when you have to sanitize/rebuild your entire database cuz you got hacked. Besides shouldn't you be abstracting you database layer and using cfqueryparam in your CFC's as a matter of habit? Not dissing anyone.

Re: Experiences with Railo

2008-07-19 Thread Gerald Guido
Yeah... I forgot about the whole MySQL Debacle with Plesk. That sucked. The one thing I really liked about it was being able to use the API to manage email accounts and user accounts right in our CMS. Anything to not have the phone ring off the hook If you ever need a Hosting CP I would look

Re: CF calendar code driven by JavaScript

2008-07-18 Thread Gerald Guido
I use this. It is TIGHT http://www.dynarch.com/projects/calendar/ Mr. Massimo wrote a custom tag for it: http://www.massimocorner.com/ I did too... but work owns it :( ~G~ On Fri, Jul 18, 2008 at 8:44 PM, Larry Lyons [EMAIL PROTECTED] wrote: IF you're looking for a popup calendar, you may

Re: Anybody have exerience with KickAssVPS.com?

2008-07-17 Thread Gerald Guido
- Plesk for 100 Domains - $40 per month (incl with KAVPS) Why would you need this? You have the root password. So the phone doesn't ring every time someone needs a new email account or forgets their password . That gets old real fast. ~G~ -- If everything seems under control, you're not

Re: Anybody have exerience with KickAssVPS.com?

2008-07-17 Thread Gerald Guido
Mary Jo, again though, that's Railo, I know this is a bit of a thread hijack... Sorry about that, But I am super curious how things have been working out using Railo in a production Environment.. What has been your experience been like using Railo? Did you run it as a stand alone server or in

Re: CFDocument and border-collapse

2008-07-14 Thread Gerald Guido
Here is a little tip on the experts exchange membership issue They will show the results to the question the *first time* you hit the page but it is ll the way at the bottom of the page. When you *return* to that page the results are gone and the ask you to sign up. I am not

Re: (ot) javascript problem

2008-07-11 Thread Gerald Guido
Actually I have it installed but I rarely use IE except for cross browser css issues. (i.e. after I work out all the gremlins using Firebug). I have yet to run into a IE only JS bug. Here try CompanionJS. It is geared more toward JS debugging: http://www.my-debugbar.com/wiki/CompanionJS/HomePage

Re: Date and Time Validation

2008-07-11 Thread Gerald Guido
I imagine you would be able to use a mask using cf input to control what the user enters but to actually validate it as a valid time you would most probably have to write custom js or find a library that does time validation. I use a jQuery plugin called ClockPick when working with times:

Re: (ot) javascript problem

2008-07-11 Thread Gerald Guido
Did you try CompanionJS? I think it is just what you need. http://www.my-debugbar.com/wiki/CompanionJS/HomePage ~G~ On Fri, Jul 11, 2008 at 1:29 PM, Claude Schneegans [EMAIL PROTECTED] wrote: Actually I have it installed but I rarely use IE except for cross browser css issues. I

Re: (ot) javascript problem

2008-07-11 Thread Gerald Guido
I haven't worked with DebugBar itself, yet, but Companion.JS that works with it was helpful in my case - not perfect but helpful. (Better than nothing, certianly.) If you are not already aware of it, the tool of choice for many developers is Firebug: http://getfirebug.com/ It is absolutely

Re: (ot) javascript problem

2008-07-11 Thread Gerald Guido
You might want to take a look at IE7 stand alone. It allows you to run IE 6 and 7 on the same machine. http://tredosoft.com/IE7_standalone I need to support both IE 6 and 7. This allows you to run both side by side. Very handy. ~G~ On Fri, Jul 11, 2008 at 4:57 PM, Claude Schneegans [EMAIL

Re: PHP CF 8 on Linux

2008-07-09 Thread Gerald Guido
Thrice. Working on getting Railo 3 beta and Apache Tom Cat to do the same. Got it working on Winders... Centos is next. ~G~ On Wed, Jul 9, 2008 at 9:25 PM, denstar [EMAIL PROTECTED] wrote: Ditto! On Wed, Jul 9, 2008 at 5:52 PM, Barney Boisvert wrote: I've got that exact environment

Re: (ot) javascript problem

2008-07-08 Thread Gerald Guido
You can try this. http://www.debugbar.com/ On Tue, Jul 8, 2008 at 8:42 AM, Stephens, Larry V [EMAIL PROTECTED] wrote: I'm using a DHTML javascript menu (from DynamicDrive) that works fine in Mozilla (shows no errors in the error console). The sample works fine in IE but my revision (no

Re: problem with .net integration

2008-07-08 Thread Gerald Guido
See if the service is running... In the control panel Administrative Tools Services.. you should see ColdFusion 8 .NET Service On Tue, Jul 8, 2008 at 2:47 PM, Rick Root [EMAIL PROTECTED] wrote: On Tue, Jul 8, 2008 at 2:37 PM, Bilal Soylu [EMAIL PROTECTED] wrote: Could it be that you have

Re: Installing Open BD and CF8 on the same machine?

2008-07-06 Thread Gerald Guido
Both OBD and Railo come with a built in server that runs on port 8080... Jetty I think. There is a script that you have to run last I remember (sh for *nix and bat file for win boxes). All you need to do after that is forward requests to port 8080. Railo (2.0 community and beta 3) comes with an cf

Re: Code Scan Tool Released!

2008-07-03 Thread Gerald Guido
Leave it to me to reinvent the wheel. :) We all do it at one point or another. http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:56551#306262 On Thu, Jul 3, 2008 at 1:01 PM, Will Tomlinson [EMAIL PROTECTED] wrote: I use Eclipse and CFEclipse. Eclipse uses an XML-based build

Re: CF vs .Net or PHP - need arguement help

2008-07-03 Thread Gerald Guido
Bah I say stand up and be proud ColdFusion is a great platform, CFML is a great language Adam, You ROCK!! BEST Regards, Gerald the PROUD CFer PS Gawd do I love CF. He more I learn the more I love it. On Thu, Jul 3, 2008 at 9:06 PM, Adam Haskell [EMAIL PROTECTED] wrote: On Wed, Jul 2, 2008

Re: CF vs .Net or PHP - need arguement help

2008-07-02 Thread Gerald Guido
I need a list of reputable agencies that use CF. Color me stupid but what do you mean by agnecies? What kind of example are you looking for? G On Wed, Jul 2, 2008 at 12:06 PM, [EMAIL PROTECTED] wrote: Our company, a large nationwide organization is creating an RFP to redo our entire

Re: CF vs .Net or PHP - need arguement help

2008-07-02 Thread Gerald Guido
Their interests are obviously not aligned with yours. You need to be able to make the argument that you're going to have to maintain the systems these agencies build, and so they need to work with your platform. Lots of companies do this, whether they use CF or not. For example, many

Re: CF vs .Net or PHP - need arguement help

2008-07-02 Thread Gerald Guido
It's easy to find new developers who know PHP or .NET or whatever, not so easy for those developers to absorb your business rules, which are often not documented especially well. Dave is spot on. Most of our internal processes are done though our Intranet. I mean just about *everything* except

Re: Simple cfmail driving me crazy!

2008-07-01 Thread Gerald Guido
Try commenting out the cfmail part and see what To: is returning You should probably un-comment this line as well: ;-) !---cfif not len(trim(form.comments)) cfset error = error It's called a Comment Form, stupid.br /cfif--- G On Tue, Jul 1, 2008 at 1:20 PM, Rick

Re: Waaahhhh! Why won't my CFC work!

2008-06-22 Thread Gerald Guido
+ 1 to Mr. Faircloth .. I feel your pain and admire your determination. Some time soon the light bulbs will be going off and you will have a Grand Mal AH HA!!!. And it is going to be *awesome*. ColdSpring can do a lot of really cool stuff, but I think it's an EXCELLENT idea to get a grasp of

Re: Waaahhhh! Why won't my CFC work!

2008-06-22 Thread Gerald Guido
Mike ++ You kick ass dude! Yet another reason to use CF. The community ROCKS G$ On Sun, Jun 22, 2008 at 10:46 PM, Mike Kear [EMAIL PROTECTED] wrote: Rick, I havent forgotten my promise to get you a sample app. I'm nearly finished it now.It's all working, but it's working on my

Re: Pyschich Serch

2008-06-19 Thread Gerald Guido
This is nice http://betterautosuggest.riaforge.org/ G On Thu, Jun 19, 2008 at 3:42 PM, Don R Seibert [EMAIL PROTECTED] wrote: Hello All, I have been to a number of websites that have search boxes that when you start to type into it, it starts to recognise what you are looking and makes

Re: Adobe ColdFusion to be free for Acadmeic use

2008-06-18 Thread Gerald Guido
Hibernate into the next version of CF. This is probably good too. More like amazing. Hybernate automatically creates all the objects to abstract your database. Like a code generator. Do you know how much time this will shave off development? Even with coded generators a bulk of the work I do is

Re: Adobe ColdFusion to be free for Acadmeic use

2008-06-18 Thread Gerald Guido
I don't think the Rails draw is only price driven. It's the auto-generation piece. We have some ways to do this, but there is not something that just stands out. There is squidhead. http://squidhead.riaforge.org/ auto-generated DB components takes some digging and learning. That it does. I

Re: cfc question...

2008-06-16 Thread Gerald Guido
You have to provide an _absolute_ path to a component via cfinvoke and createObject() using dot notation. You can get around that by doing something like this cfset YourPathToCFCDir = com.cf.model. cfinvoke component=#YourPathToCFCDir#YourCFC method=init returnvariable=retinit

Re: Looking for advice on permissions

2008-06-16 Thread Gerald Guido
I don't have an answer but I can point you in a direction of a possible option. Take a look at this: http://photos.guidofamily.org/grid.PNG We need to do some fine grained permissions. Not nearly as fine grained as your require. But I can see adding other edit/permissions options to the drop

Re: many sites, one codebase

2008-06-15 Thread Gerald Guido
+ 1 for lludium PU-36 Code Generator IMHO the first step is to abstract your database. btw the trip down OO lane is not all that easy. I wish I could point you (or me for that matter) to a definitive guide and say have at it. It is a totally different way of thinking about coding, and like all

<    3   4   5   6   7   8   9   10   11   >