Re: Blowin our own horn: New CF Site

2008-10-31 Thread Scott Stewart
grammar error: *We're out to knock your socks off take your breath away.*With research-driven marketing strategies. Mind-blowing creative. And rock-solid results. agency.cfm Shouldn't that be Mind-blowing creativity? A couple of comments: I had to dig in a couple of pages before I

odd sql question

2008-10-29 Thread Scott Stewart
representing the date. the where clause doesn't seem to work (returns no records, when logically it should) Is this the right approach given the nature of the data? -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North

passing a list through a url

2008-10-28 Thread Scott Stewart
Is it possible to pass a list of values through the url: IE: index.cfm?a=1,2,3 thanks sas -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email

Re: passing a list through a url

2008-10-28 Thread Scott Stewart
Thanks Adrian and Tom sas Scott Stewart wrote: Is it possible to pass a list of values through the url: IE: index.cfm?a=1,2,3 thanks sas -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina

CFQueryParam question

2008-10-28 Thread Scott Stewart
the cfsqltype? -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email: [EMAIL PROTECTED

Re: Something a little sad Coldfusion to J2EE

2008-10-15 Thread Scott Stewart
environment. Complete object oriented design, development, and testing tasks for current and new Internet functionality using a variety of technologies, including Java, JSF, Tiles, and PL/SQL. -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic

Re: checking for the existence of a dynamic variable

2008-10-14 Thread Scott Stewart
Thank you sir, that worked like a champ :) sas Azadi Saryev wrote: cfif structkeyexists(form, 'MGMT_HEADER_' i) Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Scott Stewart wrote: cfloop index=Counter from=#i# to=#structCount(session.eformadmin)# cfif #form

checking for the existence of a dynamic variable

2008-10-14 Thread Scott Stewart
object of type class coldfusion.filter.FormScope. How would I code the IsDefined for this? -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email: [EMAIL

Re: checking for the existence of a dynamic variable

2008-10-14 Thread Scott Stewart
grinding code out quickly Peter Boughton wrote: cfloop index=Counter from=#i# to=#structCount(session.eformadmin)# cfif #form[MGMT_HEADER_i]# is not cfset headerId = #form[MGMT_HEADER_i]#/ cfelse /cfif cfset i = i+1/ /cfloop What's up with that odd looping? :/

SOT: setting div visibility with javascript

2008-10-10 Thread Scott Stewart
, do I need to set the display property for the span tag as well? -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email: [EMAIL PROTECTED

Re: setting div visibility with javascript

2008-10-10 Thread Scott Stewart
no answers. There it isclear as mud Craig Dudley wrote: You shouldn't do. What's going wrong in your example? -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: 10 October 2008 15:19 To: cf-talk Subject: SOT: setting div visibility with javascript Hey all

Re: SOT: setting div visibility with javascript

2008-10-10 Thread Scott Stewart
No I understand that, display determines whether the the div will be rendered and visibility sets similar to opacity=0, you can't see it but it's there Peter Boughton wrote: If I'm setting the visibility for a div (display:none or display:block in this case), do also need to set visibility

Re: setting div visibility with javascript

2008-10-10 Thread Scott Stewart
. There it isclear as mud Craig Dudley wrote: You shouldn't do. What's going wrong in your example? -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: 10 October 2008 15:19 To: cf-talk Subject: SOT: setting div visibility with javascript Hey all

Re: setting div visibility with javascript

2008-10-10 Thread Scott Stewart
here's the template: http://cfm.pastebin.com/m549bfe76 You really should investigate jQuery. It will allow you to ditch all this ugly overly-verbose code: document.getElementById(COMMENTB).style.display = none; document.getElementById(COMMENTC).style.display = none;

Re: setting div visibility with javascript

2008-10-10 Thread Scott Stewart
triggered by any no answers. There it isclear as mud Craig Dudley wrote: -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email: [EMAIL PROTECTED

SOT: setting div visibility with javascript (fixed)

2008-10-10 Thread Scott Stewart
There was a call to a second function that was messing with the display settings. I removed the display settings from Q4Chk() and placed them in the second function and all is well.. Thanks to all for letting me bounce this off of you sas

Re: Debugging Coldfusion and javascript

2008-10-07 Thread Scott Stewart
Your only option, is Firebug, a plug in for Firefox. Anthony Doherty wrote: hi we are constantly using coldfusion with javascript and keep getting wierd javascript error message when calling functions with cfc's. things like an object was expected or my favourite exception thrown but not

off the wall question

2008-10-03 Thread Scott Stewart
? -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email: [EMAIL PROTECTED

Clearing out the query cache

2008-10-01 Thread Scott Stewart
Hey all, Is there a way to force a CF Server to clear it's query cache? thanks sas -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email: [EMAIL

Re: Clearing out the query cache

2008-10-01 Thread Scott Stewart
unfortunately their not, it's the server's query cache that has them, is it possible to force them to not cache in the first place (without setting the query cache setting in the CF server to 0) thanks sas Dave Watts wrote: Is there a way to force a CF Server to clear it's query cache?

Re: Clearing out the query cache

2008-10-01 Thread Scott Stewart
It's a plain ol' vanilla query cfquery name=get_study datasource=#request.dsn# select cycle_id, cycle.cycle_month, cycle.cycle_year, week_id, week.start_date, week.fiscal_year, study.id,

Re: Clearing out the query cache

2008-10-01 Thread Scott Stewart
I'll have to check on that but... it should be... Dave Watts wrote: It's a plain ol' vanilla query cfquery name=get_study datasource=#request.dsn# select cycle_id, ... from cycle left joinweek on cycle.id = week.cycle_id left joinstudy on

Re: Clearing out the query cache

2008-10-01 Thread Scott Stewart
annn it's fixed. It so wasn't a caching issue. I dumped the query and it was right... just me being stupid and trying to DateFormat a four digit numeric value. cfdump is my friend.. Thanks to all for your help... sas Scott Stewart wrote: Hey all, Is there a way to force a CF

Re: CSS Question

2008-09-17 Thread Scott Stewart
Updates: I used a style attribute in the option tag (background-image:(url=images/imagename)) it works in FF3 but does absolutely nothing in IE7 I really really wish that someone would come up with a standard that will work in every browser. Scott Stewart wrote: cfoutput query=getHexID

Re: CSS Question

2008-09-17 Thread Scott Stewart
as long as M$ is in the game that will *never* happen Dave Francis wrote: Or a browser that adheres to the standard? -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2008 9:44 AM To: CF-Talk Subject: Re: CSS Question Updates: I

Re: CSS Question

2008-09-17 Thread Scott Stewart
and for public sites you're absolutely right. But the application is for a College, the requirements state that it has to work in both...I'm just glad they didn't include Safari and IE7 for the Mac. Claude Schneegans wrote: Or a browser that adheres to the standard? C'mon, we are in a

Re: CSS Question

2008-09-17 Thread Scott Stewart
they do is wrong. -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 17, 2008 8:57 AM To: CF-Talk Subject: Re: CSS Question as long as M$ is in the game that will *never* happen Dave Francis wrote: Or a browser that adheres

CF, JQuery and IE

2008-09-16 Thread Scott Stewart
negated by the Ajax libraries that CF uses? II. JQuery in IE vs. FF I thought JQuery was fully compatible in both, but I'm having fits trying to get plugins to work in IE III. Has anyone gotten this to work HLLP!!! -- Scott Stewart ColdFusion Developer Office of Research Information

Re: CF, JQuery and IE

2008-09-16 Thread Scott Stewart
tested and that the plugins are written in javascript and may have IE bugs in them nonetheless. J.J. On Tue, Sep 16, 2008 at 7:28 AM, Scott Stewart [EMAIL PROTECTED] wrote: Hey all, i think I've got multiple issues going on here, but I'll try to explain this as best as I can... I

CSS Question

2008-09-16 Thread Scott Stewart
with the dynamic hex value -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email: [EMAIL PROTECTED

Re: CSS Question

2008-09-16 Thread Scott Stewart
Weidler, Wilfred C. wrote: Put the style attribute in the option tag and get rid of the span. Chuck -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:07 PM To: CF-Talk Subject: CSS Question cfoutput

Re: CSS Question

2008-09-16 Thread Scott Stewart
exactly... :) Weidler, Wilfred C. wrote: Ok, I get what you are trying to do now. You want a colored box beside the hex value in the option tag. Correct? Chuck -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:30 PM To: CF

Re: CSS Question

2008-09-16 Thread Scott Stewart
and Accessibility Team Fusebox -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2008 12:30 PM To: CF-Talk Subject: Re: CSS Question this colors the entire option tag here's the rendered html with a div in place, still no love

Re: CSS Question

2008-09-16 Thread Scott Stewart
this slid in late Scott Stewart wrote: I've applied a style (background-color=red) to an individual option tag and it's colored in the drop down. Sandra Clark wrote: You can't color individual option tags. You can however color optgroup tags Sandra Clark = http

Re: CSS Question

2008-09-16 Thread Scott Stewart
Scott Stewart wrote: I've applied a style (background-color=red) to an individual option tag and it's colored in the drop down. Sandra Clark wrote: You can't color individual option tags. You can however color optgroup tags Sandra Clark = http://www.shayna.com

Re: CF and Access

2008-09-12 Thread Scott Stewart
Couple of things to try, Access will accept yes/no or 1/0 depending on what you've selected in the design of the DB. default is yes/no (I think). wrap up the now() in CreateODBCDate() and see if that clears it up. It's been ages since I've touched Access. Aaron Rouse wrote: Using 1 instead

Re: CFMAIL process works on one server but not another.

2008-09-04 Thread Scott Stewart
Sounds like a relay issue at site b's mail server Mark Gordon wrote: I have code that sends a confirmation email to someone. I use CFMail. I have the same code running on two separate sites (A and B). Problem is that I don't have direct access to the Coldfusion server on site A (the one

cfscript question

2008-08-26 Thread Scott Stewart
Is it possible to do a query output loop in cfscript using something other than WriteOutput? -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email

Re: cfscript question

2008-08-26 Thread Scott Stewart
trying to make sense out of some screwy logic that someone else did although I'm about ready to rewrite it with tags... Charlie Griefer wrote: On Tue, Aug 26, 2008 at 10:45 AM, Scott Stewart [EMAIL PROTECTED]wrote: Is it possible to do a query output loop in cfscript using something

Re: cfscript question

2008-08-26 Thread Scott Stewart
- Original Message - From: Scott Stewart [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, August 26, 2008 12:45 PM Subject: cfscript question Is it possible to do a query output loop in cfscript using something other than WriteOutput

Re: cfscript question

2008-08-26 Thread Scott Stewart
lemme rephrase... I'm trying to populate a function call, by looping over the record count of a query to end up with something like this: function(sunday_0, mon_0, tues_0) function(sunday_1, monday_1, tues_1) etc. the number is dynamic based on the record count of a query.. code:

Speculation: McCain as Secretary of Defense in an Obama White House

2008-08-25 Thread Scott Stewart
I'm purely speculating here: I have no clue who's going to win, but if Obama wins and extends an offer of the Secretary of Defense, or Secretary of State for that matter. Which IMO would be a pretty good idea. Do you think McCain would take it. discuss -- Scott Stewart ColdFusion Developer

Re: Speculation: McCain as Secretary of Defense in an Obama White House

2008-08-25 Thread Scott Stewart
Ignore this, I chose the wrong list.. Mike, if you would please move this to the proper list /me slinks away feeling rather sheepish and silly... Scott Stewart wrote: I'm purely speculating here: I have no clue who's going to win, but if Obama wins and extends an offer of the Secretary

Re: Connect/Create com opbject to MS Word Viewer

2008-08-22 Thread Scott Stewart
I'm taking a guess here, because the MS Word Viewer 2003 exe is wordview.exe and not word.exe, wouldn't that change the class in the object call to wordview.application? just a shot in the dark.. Chuck Weidler wrote: I want to open a MS Word Document (.doc) file and get the contents of the

Re: Flummoxed bya simple query

2008-08-21 Thread Scott Stewart
not knowing much about Foxpro... Is it case sensitive, (IE: are MCAIDRECDA and Mcaidrecda the same thing) Tim Claremont wrote: This is a new one for me. I have been querying the same database for years. I have hundreds of queries working on this very database on a daily basis without

Re: Flummoxed bya simple query

2008-08-21 Thread Scott Stewart
I've worked briefly with it at an old job. In CFMX 6 ColdFusion connected via the ODBC bridge and there were some unusual data results. Has someone produced a JDBC driver for FoxPro? I don't think Microsoft supports it anymore.. Scott Stewart wrote: not knowing much about Foxpro

CFC Best Practices

2008-08-19 Thread Scott Stewart
just dump the queries into a function and it'll work... But would I be better served by creating separate functions and call the last two from inside the insert function? -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University

Re: CFC Best Practices

2008-08-19 Thread Scott Stewart
like scope_identity() (the actual function varies across platforms). A bit more can be found here: http://www.forta.com/blog/index.cfm/2007/7/6/ColdFusion-8-Can-Return-Identity-Values On Tue, Aug 19, 2008 at 10:22 AM, Scott Stewart [EMAIL PROTECTED]wrote: This is more of a how would you do

Re: Flash Site Links Sanity Check

2008-08-19 Thread Scott Stewart
Links work (IE 7 on WinXP SP3) but I could see how someone would want to click on the lights instead of clicking on the words beneath the lights. it's not as intuitive as it could be. Mark Leder wrote: Hi all, We're having reports of links not being clickable in a site: Take a look

Re: syntax error in from clause on godaddy hosting

2008-08-18 Thread Scott Stewart
judging by the picture, it *looks* like you're missing single quotes on the variables, replace with cfqueryparam value=#variable_name# cfsqltype = CF_SQL_CHAR / (no quotes around cfqueryparam) kevin pieto wrote: We moved our site over to a new hosting company (godaddy) and are now receiving

Re: syntax error in from clause on godaddy hosting

2008-08-18 Thread Scott Stewart
One more thing... I'm going to assume, since the error references the Microsoft Jet Engine, that this an Access DB.. You can enclose user in square brackets ie: [user], and that will get you around any reserved work issue. You really want to use cfqueryparams with this.Especially with the rash

Re: syntax error in from clause on godaddy hosting

2008-08-18 Thread Scott Stewart
SELECT * FROM [user] WHERE uname = cfqueryparam value=#uname# cfsqltype=cf_sql_char AND pword= cfqueryparam value=#pword# cfsqltype=cf_sql_char and... you now need to remove this line, because you've exposed your master password to the internet if (session.user.uname eq ben OR

Re: syntax error in from clause on godaddy hosting

2008-08-18 Thread Scott Stewart
I'm glad I could help, but you'll still need a superuser account, whomever is coding for you is going to need to add a flag to the database, and write code to check for the superuser flag.. sas kevin pieto wrote: We moved our site over to a new hosting company (godaddy) and are now receiving

Re: Outputting columned UL tags

2008-08-15 Thread Scott Stewart
Jenny, You're absolutely right, I think that folks (myself included) need to remember that the experience level on this list runs from noob to god-like. What may seem like an obvious answer to some, may not be to others, and sometimes people post just to get another set of eyes looking at

cfarguments... determining which argument to use based on passed variables

2008-08-13 Thread Scott Stewart
to do this.. cfif IsDefined(url.person_id) cfargument name =person_id/ cfelse /cfif -- -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600

Re: cfarguments... determining which argument to use based on passed variables: SOLVED

2008-08-13 Thread Scott Stewart
it and then the answer comes.. Scott Stewart wrote: Sorry for the cryptic subject In a function I have three arguments. cfargument name =person_id/ cfargument name = list/ cfargument name = dept_no_search/ at any given time only one will be populated, based on the existence of a url variable

Re: Telecommute Question

2008-08-13 Thread Scott Stewart
Given the exchange rates, you'd be better off asking to be pain in Canadian funds than US dollars. Better yet ask for Euros or gold ;) pain = Freudian slip? :) sas Larry C. Lyons wrote: Given the exchange rates, you'd be better off asking to be pain in Canadian funds than US dollars. Better

[Macromedia][SQLServer JDBC Driver]Invalid parameter binding(s).

2008-08-12 Thread Scott Stewart
to get an answer and move past this.. what am I missing? http://cfm.pastebin.com/m5279dcb4 -- -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email

Re: [Macromedia][SQLServer JDBC Driver]Invalid parameter binding( s).

2008-08-12 Thread Scott Stewart
Thanks Dave, I just found this myself...been looking at the same damn code for too long. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: cfhttp and Google Search Appliance

2008-08-12 Thread Scott Stewart
Joanne, I've got a function that I wrote a couple of years ago that would talk to a google appliance. http://www.sstwebworks.com/apps/parseGoogle.zip It's old code but it might help you out. sas [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Does anybody know how to use CFHTTP to talk to the

CF 8 Built in SQL Server drivers vs. MS SQL Server 2000 SP3 Driver

2008-08-11 Thread Scott Stewart
gotchas? thanks sas -- -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research amp; Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email: [EMAIL PROTECTED

Re: CF 8 Built in SQL Server drivers vs. MS SQL Server 2000 SP3 Driver

2008-08-11 Thread Scott Stewart
or 0) Thanks sas Tom Chiverton wrote: On Monday 11 Aug 2008, Scott Stewart wrote: I've run into an issue that I need opinions on. We've run into some SQL server issues, where MS is saying patch the driver. And what has Adobe said ? -- -- Scott Stewart ColdFusion Developer

Re: CF 8 Built in SQL Server drivers vs. MS SQL Server 2000 SP3 Driver

2008-08-11 Thread Scott Stewart
don't cause any issues with CF's built in drivers though so why not give it a try on your dev box? Craig. -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: 11 August 2008 15:10 To: CF-Talk Subject: CF 8 Built in SQL Server drivers vs. MS SQL Server 2000 SP3

Re: CF 8 Built in SQL Server drivers vs. MS SQL Server 2000 SP3 Driver

2008-08-11 Thread Scott Stewart
I think, it's not complex either way but sorry I couldn't find my examples as it might have saved some time. Craig. -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: 11 August 2008 17:14 To: CF-Talk Subject: Re: CF 8 Built in SQL Server drivers vs. MS SQL

cfqueryparam and bit field (was:Re: CF 8 Built in SQL Server drivers vs. MS SQL Server 2000 SP3 Driver)

2008-08-11 Thread Scott Stewart
The cfqueryparam tags work fine with the character fields, but they're returning true or false as opposed to 1 or 0, even though 1 or 0 is passed to it from the form. Any ideas? Scott Stewart wrote: That's cool, I appreciate the input. thanks sas Craig Dudley wrote: Had a good look

Re: cfqueryparam and bit field

2008-08-11 Thread Scott Stewart
cfset result = -1 /cfif cfreturn result /cffunction HTH, Carl Scott Stewart wrote: The cfqueryparam tags work fine with the character fields, but they're returning true or false as opposed to 1 or 0, even though 1 or 0 is passed to it from the form. Any ideas? Scott

Re: CF 8 Upgrade From CF 6.1 On Windows 2003. 404 Errors

2008-08-08 Thread Scott Stewart
Patrick, go here: http://livedocs.adobe.com/coldfusion/8/install.pdf Pay particular attention to Chapter 7: Configuring your system. This goes over the manual configuration process, later chapters discuss troubleshooting. Hope this helps sas patrick buch wrote: HI everyone, I just

Re: SQL injection attack on House of Fusion

2008-08-08 Thread Scott Stewart
Yeah, I've gotten a couple today.. but fortunately when Ray built BlogCFC. he covered his bases. Scott Stewart ColdFusion Developer Office of Research Information Systems Research Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email

Re: SQL injection attack on House of Fusion

2008-08-08 Thread Scott Stewart
and your absolutely right, I've gotten two and query params covered it, but it sounds like you're getting hit two pronged. If the injection doesn't do something, the brute force attack will I'm almost flattered that someone thought my site was important enough to attack... Scott Stewart

Re: SQL injection attack on House of Fusion

2008-08-08 Thread Scott Stewart
Ouch Thanks Tom... :) -- Scott Stewart ColdFusion Developer Office of Research Information Systems Research Economic Development University of North Carolina at Chapel Hill Phone:(919)843-2408 Fax: (919)962-3600 Email: [EMAIL PROTECTED] Tom Chiverton wrote: On Friday 08 Aug 2008

Break from the SQL Injection thread.... weird SQL error

2008-08-08 Thread Scott Stewart
[Macromedia][SQLServer JDBC Driver][SQLServer]Line 28: Incorrect syntax near '@P10'. I haven't the foggiest idea what's going on here. here's the passed in params from the java trace: (param 1) = [type='IN', class='java.lang.String', value='Elmer', sqltype='cf_sql_varchar'] , (param 2) =

Re: Upgraded to CF8 - 404 errors

2008-08-07 Thread Scott Stewart
Have you migrated the settings from CFMX 6.1? There's two parts to the CFMX6 to CFMX8 Migration jgeorges wrote: We upgraded to CF8 from CF6.1 on windows 2003 server. Can connect to CF Administrator but get 404 errors trying to connect to all other sites on the server. Any insight to what

Re: Upgraded to CF8 - 404 errors

2008-08-07 Thread Scott Stewart
See my answer to Patrick's question... BTW: are you and Patrick working on the same box? :-) jgeorges wrote: We upgraded to CF8 from CF6.1 on windows 2003 server. Can connect to CF Administrator but get 404 errors trying to connect to all other sites on the server. Any insight to what we

RE: (ot) Best FTP Software 4 Windows

2008-07-30 Thread Scott Stewart
Filezilla still pretty much rocks, and it supports SFTP -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835 -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2008 9:07 AM To: CF-Talk Subject

RE: CF programmer with experience building Social networking sites

2008-07-30 Thread Scott Stewart
/Salary, H1-B/No H1-B This would answer a lot of questions for me off the bat, especially when it's an out of town gig that they want me to pack up and move for. -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835 -Original Message

Returning multiple recordsets in a single component

2008-07-29 Thread Scott Stewart
Hey all, I have three related queries, they're not dependant on each other however. They're quick and dirty select statements. Is there a way to return three query results in a single CF Component? Thanks sas -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC

RE: Returning multiple recordsets in a single component

2008-07-29 Thread Scott Stewart
That's very possible, and after looking deeper at the queries and the receiving .cfm you're probably right. But my previous question is still really good information to have.. -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835

RE: Form Spam Attack

2008-07-24 Thread Scott Stewart
Add some kind of Captcha requirements -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835 -Original Message- From: Robert Harrison [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2008 10:42 AM To: CF-Talk Subject: Form Spam

RE: Using attributes within cfqueryparam in Fusebox application

2008-07-23 Thread Scott Stewart
Is the attributes scope working as expected in other parts of the application? Dump the attributes scope ad make sure that the expected values exist and are populated as you think they should be. -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c

RE: Senior CF Developer - Designer Available Now

2008-07-02 Thread Scott Stewart
Wow, that takes some brass cajones. -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835 -Original Message- From: [BWW] Ravi Gehlot [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2008 7:54 PM To: CF-Jobs-Talk Subject: Re

fusebox plugin for Dreamweaver

2008-06-25 Thread Scott Stewart
Does anyone know if there's a Fusebox extension for Dreamweaver CS? Thanks -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835 ~| Adobe® ColdFusion® 8 software

RE: 1 IP address, 2 websites

2008-06-02 Thread Scott Stewart
in the root. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: Billy Cox [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2008 12:48 PM To: CF-Talk Subject: 1 IP address, 2 websites I

RE: Best Coldfusion Formatters or Coldfusion Beautifiers

2008-06-01 Thread Scott Stewart
I actually learned ColdFusion by fixing someone else's horrendous code, no indentations, no whitespace for clarity, it might as well have all been on one line. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell

RE: Best Coldfusion Formatters or Coldfusion Beautifiers

2008-05-30 Thread Scott Stewart
Dreamweaver and CFEclipse have formatting functions that work pretty well. I'll use one or the other and then fine tune it manually. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message

RE: Best Coldfusion Formatters or Coldfusion Beautifiers

2008-05-30 Thread Scott Stewart
Unfortunately if you didn't write the code, it may not be formatted as you like it... or it may not be formatted at all.. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: Andy

RE: (ot) Simple Tool

2008-05-22 Thread Scott Stewart
Thanks Will, I almost destroyed my laptop with a coffee shower :) sas -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Wednesday

RE: Coldfusion's execution time relative to C++

2008-05-22 Thread Scott Stewart
This is an assumption but.. Seeing as ColdFusion 7 and 8 compile to java byte code It *should* be in the same ratio ball park. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From

RE: Help! I get someone else's variables!

2008-05-22 Thread Scott Stewart
How are you storing the User Id for the session? -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: KDJ The Net Surfer [mailto:[EMAIL PROTECTED] Sent: Thursday, May 22, 2008 10:25

RE: referecing a cfc function

2008-05-22 Thread Scott Stewart
cfscript myCFCobject = CreateObject(component,dotted.notation.path.to.cfc); myFunction = myCFCObject.functionname(#parameters here#); /cfscript -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell

RE: What is it with telecommuting?

2008-05-21 Thread Scott Stewart
) have been in Raleigh for less than a year and we really kind of like it here :) -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED] Sent

RE: What is it with telecommuting?

2008-05-21 Thread Scott Stewart
I should probably clarify something, I'm not adverse to dropping into the office on occasion, on the company's dime, when it's necessary to push progress forward. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell

RE: What is it with telecommuting?

2008-05-21 Thread Scott Stewart
In the broader scope, asking anyone to relocate, is really a stretch right now, if they're a homeowner. A company needs to step up and make it as painless as possible. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835

RE: What is it with telecommuting?

2008-05-21 Thread Scott Stewart
So have I, if for no other reason than for me to vent and get some understanding of the situation. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: Jeffry Houser [mailto:[EMAIL

RE: What is it with telecommuting?

2008-05-20 Thread Scott Stewart
I've been telecommuting full-time for about a year now. Aside from the social interaction, I've not seen anything that I can't do that someone in house can. And back to the housing issue, the real estate crisis is finally hitting Raleigh... and my chances of moving are nil... -- Scott Stewart

What is it with telecommuting?

2008-05-20 Thread Scott Stewart
not to. The chances of people, especially homeowners, considering relocation right now is almost non existant. Just my $.02. discuss. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell

RE: What is it with telecommuting?

2008-05-20 Thread Scott Stewart
is going to become too expensive for even highly paid knowledge workers. Or employers are going to have to subsidize actual commuting, and buy the houses of folks that they want to relocate. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home

RE: What is it with telecommuting?

2008-05-20 Thread Scott Stewart
Hopefully whomever takes the White House in November will realize this and keep these jobs in the US. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: Aaron Rouse [mailto:[EMAIL

RE: What is it with telecommuting?

2008-05-20 Thread Scott Stewart
means. The technology exists to do everything you've mentioned, remotely. -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: Steve Brownlee [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: Session variables across servers

2008-05-09 Thread Scott Stewart
You're right, however I'm the contractor on an established team so I have zero say in this . -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message- From: Jochem van Dieten [mailto:[EMAIL

RE: OT - Google Hosted Email (New Question)

2008-05-09 Thread Scott Stewart
Yes, I'm doing that right now for sstwebworks.com. You just need to be able to make changes to the DNS records (specifically the MX records) -- Scott Stewart ColdFusion Developer SSTWebworks 4405 Oakshyre Way Raleigh, NC. 27616 (919) 874-6229 (home) (703) 220-2835 (cell) -Original Message

<    1   2   3   4   5   6   7   >