RE: Cflocation back to calling page

2007-02-26 Thread Coldfusion
The only problem is not all servers return the HTTP_REFERER variable. It is not reliable. What I try to do is set a variable (either url or form) to indicate the page name where the request came from and use that. -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED]

cfform problem drivin me nuts

2007-02-26 Thread Will Tomlinson
I'm having a problem I've never seen before with a cfform. It's just a form with some selects, test inputs, etc. When you view it in FF, you can't click the save or browse buttons at the bottom of the page. In IE you can. I noticed if I moved the buttons towards the top of the page, you can

Re: Something weird?

2007-02-26 Thread Doug Brown
That did the trick. Thanks!! Doug B. - Original Message - From: David Harris [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Sunday, February 25, 2007 4:46 PM Subject: Re: Something weird? or is it this:

Re: imageCFC getImageInfo ImageType question

2007-02-26 Thread Rick Root
On 2/25/07, Michael E. Carluen [EMAIL PROTECTED] wrote: I am currently using Rick's ImageCFC. Using the getImageInfo method, it returns a numeric equivalent to jpg (5) or gif(13). I noticed that the CFC uses the standard getType() method. Does anyone know where I can lookup the numeric

Re: imageCFC getImageInfo ImageType question

2007-02-26 Thread Rick Root
BTW, not that houseoffusion isn't a fabulous place for questions like this, since many other people also use imagecfc... but I get immediate notification of anything posted to all of the forums at opensourcecf.com(home of imagecfc) http://www.opensourcecf.com/forums/forums.cfm From time to time

Re: cfform problem drivin me nuts

2007-02-26 Thread Greg Morphis
I'm using FF and the buttons are enabled? HAve you corrected the problem? On 2/26/07, Will Tomlinson [EMAIL PROTECTED] wrote: I'm having a problem I've never seen before with a cfform. It's just a form with some selects, test inputs, etc. When you view it in FF, you can't click the save or

Re: cfform problem drivin me nuts

2007-02-26 Thread Doug Brown
I have a sneaking suspicion that the problem lies in your div's use the validator and fix some of the errors (36 of them) Doug B. - Original Message - From: Will Tomlinson [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, February 26, 2007 5:08 AM Subject: cfform

Re: cfform problem drivin me nuts

2007-02-26 Thread Doug Brown
Will, Your problem is in your CSS. I copied and pasted your html source from the page you posted and tried it with and without the CSS and it only breaks with your CSS included. I am thinking that it has to do with your IE Hacks, but I do not know enough about CSS to tell you the final answer.

RE: Cflocation back to calling page

2007-02-26 Thread Andy Matthews
Assuming you're using a form, then add in a hidden field with the value of the current page. Then on submission, after your processing is done, use that value for the redirect. -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Sunday, February 25, 2007 10:11 PM To:

Re: cfform problem drivin me nuts

2007-02-26 Thread Will Tomlinson
Will, Your problem is in your CSS. I copied and pasted your html source from the Ok thank you doug. I'll get on this later today and get it figured out. Thanks! Will ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience

SOLVED: cfform problem driving me nuts

2007-02-26 Thread Will Tomlinson
Thanks to doug for the answer. It was indeed the css. I noticed if I moused over the buttons, it was highlighting the text in the footer below. It seems it was too tight against that footer. For a quick test I added some spacing between and it fixed it. Thanks guys! Will

RE: Secure CFIDE

2007-02-26 Thread Jacob
Remove anonymous logins IP restriction -Original Message- From: Steve Milburn [mailto:[EMAIL PROTECTED] Sent: Saturday, February 24, 2007 5:31 PM To: CF-Talk Subject: Secure CFIDE Hi all What do most people do to secure their CFIDE directory? How do you prevent people from going to

cfinsert/cfupdate and double quotes

2007-02-26 Thread Les Mizzell
I thought cfinsert and cfupdate escaped double quotes? SQL Server vchar fields - seems the answer is NOPE. CFINSERT will not accept Bob Bubba Jones as input into SQL Server vchar field. No problem with an nTEXT field though. Any way around this without rewriting all my queries to use SQL

Re: cfinsert/cfupdate and double quotes

2007-02-26 Thread Steve Bryant
Are you sure that the problem isn't that you are using input type=text instead of textarea? I just ran a test on cfinsert with quoted values in CF7 against SQL Server 2000 and it inserted the quoted values without any problem. If you load values with quotes into an input box, then the value

RE: Problem with Server Timing Out

2007-02-26 Thread Steven Erat
For ColdFusion MX 7.x, have you tried upgrading the macromedia_drivers.jar to from the default v3.3 to v3.5? Does 3.4 make a difference? See: Updated DataDirect JDBC drivers (version 3.5) http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=42dcb10a Also, if SQL Server database connections

Re: cfinsert/cfupdate and double quotes

2007-02-26 Thread Les Mizzell
Steve Bryant wrote: Are you sure that the problem isn't that you are using input type=text instead of textarea? After looking at it a little closer - my bad. The value Bob Bubba Jones *is* getting recorded correctly on insert/update. input id=ID_app_owner name=ID_app_owner

Re: cfinsert/cfupdate and double quotes

2007-02-26 Thread Steve Bryant
It's just not *displaying* when looking at the above. So value=#htmleditformat(getapp.ID_app_owner)# Or is there a better way? That is what I do. This also helps with security. ~| Upgrade to Adobe ColdFusion MX7

Query of Queries Question

2007-02-26 Thread Dave Phillips
Hi, Anyone know how to force a LIKE comparison in a QofQ query to look for literals of the following special characters: % _ [ ] ^ All of the above are characters used in a LIKE comparison, but my string has several of them in it, so I need to 'escape' them somehow. I'm on MX 6.1. Thanks!

RE: Query of Queries Question

2007-02-26 Thread Ben Nadel
This is just a guess, but you can try putting either a \ or a ' before the characters that needs to be escaped?? LIKE 'foo\%bar' Or maybe LIKE 'foo'%bar' The single quote is only a guess because single quote escaped another single quote. .. Ben Nadel Certified Advanced

onSessionStart running twice?

2007-02-26 Thread Leitch, Oblio
I'm developing an application that stores the session info in a db onSessionStart. Under certain conditions, onRequestStart, it redirects to a different location that inherits the original onSessionStart method. The odd thing is, it's saving a second record in the db - evidence that the method

RE: onSessionStart running twice?

2007-02-26 Thread Ben Nadel
How are you defining the application name? If the app name is based on the current path, a redirection might actually jump to another application scope and therefore a new session. .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion

RE: onSessionStart running twice?

2007-02-26 Thread Leitch, Oblio
That's a very good suggestion, but, unfortunately, I'm inheriting everything, including the application name. -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Monday, February 26, 2007 11:39 AM To: CF-Talk Subject: RE: onSessionStart running twice? How are you defining

RE: onSessionStart running twice?

2007-02-26 Thread Ben Nadel
Are you calling the super method? Something like SUPER.OnSessionStart() or something like that? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Leitch, Oblio

RE: imageCFC getImageInfo ImageType question

2007-02-26 Thread Michael E. Carluen
Thank for both of your responses Rick. That explanation below was helpful (or at least it was nice to know that what I thought it was, was actually incorrect ;-) ). Again, thanks Rick. - Michael -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Monday, February 26,

Re: onSessionStart running twice?

2007-02-26 Thread Dan Vega
Do a search in your project for an implicit call to the method cfset onSessionStart() On 2/26/07, Ben Nadel [EMAIL PROTECTED] wrote: Are you calling the super method? Something like SUPER.OnSessionStart() or something like that? .. Ben Nadel Certified Advanced

RE: onSessionStart running twice?

2007-02-26 Thread Leitch, Oblio
No - my [child] application.cfc doesn't define the onSessionStart, so when it runs, the parent's method is executed. -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Monday, February 26, 2007 12:24 PM To: CF-Talk Subject: RE: onSessionStart running twice? Are you

cfmail driving me bonkers now

2007-02-26 Thread Will Tomlinson
Ok, I'm back to my cfmail problem. This will not send out TO the same address as listed in the FROM attribute. If I change it to my personal email address, it works. cfmail from='#shopownername# #VARIABLES.emailaddress#' to=#VARIABLES.emailaddress# server=#VARIABLES.mailserver# subject=An

RE: cfmail driving me bonkers now

2007-02-26 Thread Ben Nadel
I was gonna say that it sounds like a SPAM blocking issue. But if you replace the variables with the same values and it WORKS... I have no idea. Are you sure you are replacing with the same exact values? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer

RE: cfmail driving me bonkers now

2007-02-26 Thread Russ
Where is the sending actually failing? Is it generating the email message, but the message gets rejected by the mail server, or does it get sent successfully from CF but then gets lost in the abyss somewhere? Russ -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent:

RE: cfmail driving me bonkers now

2007-02-26 Thread Adkins, Randy
If the email is in the Undelivered folder for CF, then it is possible that it deals with the way The TO line is constructed. Since it is being sent successfully when hardcoding the TO line, that would be the best place to begin looking. -Original Message- From: Will Tomlinson

Re: cfmail driving me bonkers now

2007-02-26 Thread Will Tomlinson
I was gonna say that it sounds like a SPAM blocking issue. But if you replace the variables with the same values and it WORKS... I have no idea. Yeah, that's what I figured it was until I ran that test. ~| Macromedia

Re: cfmail driving me bonkers now

2007-02-26 Thread Will Tomlinson
Where is the sending actually failing? Is it generating the email message, but the message gets rejected by the mail server, or does it get sent successfully from CF but then gets lost in the abyss somewhere? I dunno. I asked the host, crystaltech, about looking to see if my messages

Re: cfmail driving me bonkers now

2007-02-26 Thread Will Tomlinson
If the email is in the Undelivered folder for CF, then it is possible that it deals with the way The TO line is constructed. Another thing I tried was just replacing the TO line with my email address. It worked. If I replace it with the domain's email address, it won't. Insane! Thanks, Will

RE: cfmail driving me bonkers now

2007-02-26 Thread Adkins, Randy
Is the domain's email address like : SOME NAME [EMAIL PROTECTED] OR [EMAIL PROTECTED] My point was that if you used the latter and it worked, then I would search for the reason it Does not like the User Friendly type naming convention of 'Some Name [EMAIL PROTECTED]' -Original

Re: cfmail driving me bonkers now

2007-02-26 Thread Will Tomlinson
Is the domain's email address like : SOME NAME [EMAIL PROTECTED] OR [EMAIL PROTECTED] I tried it both ways and neither work. Thanks, Will ~| Create Web Applications With ColdFusion MX7 Flex 2. Build powerful, scalable

RE: cfmail driving me bonkers now

2007-02-26 Thread Adkins, Randy
Then I would lean towards contacting CT (as you are doing) to see about the email in the undeliv folder and see if it can help any. By looking at the TO line or if the server requires User Authentication for sending. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED]

Re: cfmail driving me bonkers now

2007-02-26 Thread Alan Rother
Not sure if this helps... I have a few customers on CT and I always have to use a valid email address that is hosted by CT AND pass in the password for that account. cfmail to=#qcustomer.EmailAddress# from=[EMAIL PROTECTED] password=RealPasswordRemoved

Re: cfmail driving me bonkers now

2007-02-26 Thread Will Tomlinson
I have a few customers on CT and I always have to use a valid email address that is hosted by CT AND pass in the password for that account. Well, what's weird is I've never had any trouble sending emails from CT. I use a valid FROM email, and the valid server name. The funky thing here is,

NCAA Pool for Galleon / CFMBB

2007-02-26 Thread Rick Root
I've just updated my NCAA Tournament Pool module for use with Galleon and CFMBB forums. http://www.opensourcecf.com/ncaapool/ The current brackets in my demo are based on the most recent brackets posted at collegerpi.com, in case you wondered. I have not tested this with Galleon since I wrote

Re: cfmail driving me bonkers now

2007-02-26 Thread Will Tomlinson
Then I would lean towards contacting CT (as you are doing) to see about the email in the undeliv folder and see if it can help any. By looking at the TO line or if the server requires User Authentication for sending. Ok, it gets more weirder by the minute. Just talked with CT and they say this

OT: Google analytics

2007-02-26 Thread Josh Nathanson
Hey all, Does anyone know if Google analytics makes any attempt to factor in bots (theirs or anyone else's) when they report site visits? I've been doing some analysis of CF sessions, and it looks like Google's reports about 25% more visits than what I'm seeing in my session stats, once I

RE: cfmail driving me bonkers now

2007-02-26 Thread Dave Watts
Ok, it gets more weirder by the minute. Just talked with CT and they say this is the error: Invalid Addresses; nested exception is: class jaax.mail.SendFailedException: 550 [EMAIL PROTECTED] No such user here But I'm positive there's an email account there. This is crazy. If the

Changing JRE to 1.4.2_11

2007-02-26 Thread Ian Skinner
I installed the 1.4.2_11 SDK and then changed the java-home value in my C:/JRun4/bin/jvm.config file. Now when I try and restart my ColdFusion services I get the following error. Error: no known VMs. (check for corrupt jvm.cfg file) What does one do about this? -- Ian Skinner

Re: Changing JRE to 1.4.2_11

2007-02-26 Thread Kris Jones
Did you change the java-home value from within CF Admin? There is a known bug that can cause corruption to that file using CF Admin. Cheers, Kris I installed the 1.4.2_11 SDK and then changed the java-home value in my C:/JRun4/bin/jvm.config file. Now when I try and restart my ColdFusion

RE: Changing JRE to 1.4.2_11

2007-02-26 Thread Ian Skinner
Did you change the java-home value from within CF Admin? There is a known bug that can cause corruption to that file using CF Admin. Cheers, Kris Nope, I'm using the multi-home configuration and edited the C:/jrun4/bin/jvm.config file in notepad. Now even my backup restore to c:/jrun4/jre

RE: Changing JRE to 1.4.2_11

2007-02-26 Thread Dave Watts
I installed the 1.4.2_11 SDK and then changed the java-home value in my C:/JRun4/bin/jvm.config file. Now when I try and restart my ColdFusion services I get the following error. Error: no known VMs. (check for corrupt jvm.cfg file) What does one do about this? You almost certainly

Re: cfmail driving me bonkers now

2007-02-26 Thread Will Tomlinson
Ok, it gets more weirder by the minute. Just talked with CT If the target mail server rejects the message for spam-related reasons, it may well send back such a message, in the hope that you'll stop trying. What's screwin me up is, I can change the TO value to my personal email address, which

RE: Changing JRE to 1.4.2_11

2007-02-26 Thread Ian Skinner
You almost certainly pointed it to the wrong directory. Open the jvm.config file again, then change it to the right directory. Assuming, for example, that you installed 1.4.2_11 to the root of your C drive, the value would look like this: C:/jvm1.4.2_11/jre/ Well, I did not see how I could

Good resource for finding CFML developer jobs...

2007-02-26 Thread Steve Good
I am looking to leave the company I am with, and wondering if there are any particularly good places to seek out CF employment. The company I am with now only hired me as Tech Support, but now they are asking me to do some heavy CF development for less than I could make at McDonald's. Thanks

Re: Good resource for finding CFML developer jobs...

2007-02-26 Thread Judith Dinowitz
I am looking to leave the company I am with, and wondering if there are any particularly good places to seek out CF employment. The company I am with now only hired me as Tech Support, but now they are asking me to do some heavy CF development for less than I could make at McDonald's. Thanks

Re: OT: Google analytics

2007-02-26 Thread Nick Tong - http://TalkWebSolutions.co.uk
Hi Josh, A quick search on the analytics group site ( http://groups.google.com/group/analytics-help) showed: Any user-agent (browser, search *bot*, etc...) that can't or doesn't load JavaScript won't be *counted* by Google Analytics. On 26/02/07, Josh Nathanson [EMAIL PROTECTED] wrote: Hey

RE: Changing JRE to 1.4.2_11

2007-02-26 Thread Dave Watts
Is there somewhere that documents that the direction of the slashes matter? I tried all these forms and the latter is the one that worked. java.home=C:\j2sdk1.4.2_11\jre\ java.home=C:\j2sdk1.4.2_11\jre java.home=C:/j2sdk1.4.2_11/jre/ java.home=C:/j2sdk1.4.2_11/jre I'm sure it's

Re: Good resource for finding CFML developer jobs...

2007-02-26 Thread Nick Tong - http://TalkWebSolutions.co.uk
Hi Steve, The widget that Clark Valberg has is rather good, you can see an example of it here: http://cfframeworks.com/index.cfm?fuseaction=app.jobs . I know he is updating it currently to include international jobs. Good luck hunting.. On 26/02/07, Steve Good [EMAIL PROTECTED] wrote: I am

RE: Changing JRE to 1.4.2_11

2007-02-26 Thread Ian Skinner
In Java configuration files, you can typically either use forward slashes (/) or escaped backslashes (\\) to specify a Windows file system path. That is a tidbit of information that would have saved me quite of bit of panic and a few restarts if I had known up front! Now to testing to make sure

RE: Good resource for finding CFML developer jobs...

2007-02-26 Thread Eric Roberts
Sounds like you work for the tech support company I used to work for...you would happen to be in Aurora, IL by anychance? Hehehe Best thing I can suggest is to put your resume out there and drive on ;-) I get most of my hits from monster and career builder. There is also a CF-Jobs list on house

Reading CSV File

2007-02-26 Thread Tim Stutzman
Hello, I am reading a CSV file and inserting it into a database. All is good with the exception that one field has commas within it, therefore when it runs, it thinks the commas inside the are delimeters also. Any ideas on how I can get around it or take the commas out of that field before

RE: Reading CSV File

2007-02-26 Thread Ben Nadel
Tim, I was recently dealing with this kind of a problem. Take a look: http://www.bennadel.com/index.cfm?dax=blog:498.view This UDF, CSVToArray() can handle embedded line breaks, commas, and quotes and returns an Array of Arrays. I am not sure if you can pull these values out before you parse.

Re: OT: Google analytics

2007-02-26 Thread Josh Nathanson
Hey Nick, Thanks, just after I posted I went through and found similar verbiage in the help area. I figured out at least part of the discrepancy - our home page is html, not CF, so CF sessions are only created when people go past the home page. But, on Google we're only showing a 10% bounce

RE: Query of Queries Question

2007-02-26 Thread Dave Phillips
Tried thatI did finally find it in the docs. You can actually specify your own escape character. So it's like this: SELECT * FROM whatever WHERE what LIKE '%95\%%' ESCAPE '\' This will find anything that has 95% in the resultset 'whatever', column 'what'. It doesn't matter what character

Re: Reading CSV File

2007-02-26 Thread Tim Stutzman
Thanks, it worked. Tim, I was recently dealing with this kind of a problem. Take a look: http://www.bennadel.com/index.cfm?dax=blog:498.view This UDF, CSVToArray() can handle embedded line breaks, commas, and quotes and returns an Array of Arrays. I am not sure if you can pull these values

Coldfusion based Ecommerce with CMS software recomendation

2007-02-26 Thread Jesse Beckton
Hello, I am looking for some Coldfusion based ecommerce software to purchase. i am looking for something with all the bells and whistles (like ablecommerce) but I need something with good CMS capability as well. Any recommendations?

Re: Coldfusion based Ecommerce with CMS software recomendation

2007-02-26 Thread Steve Good
can try cartweaver, seems to be a good product. http://www.cartweaver.com/ Steve Good [EMAIL PROTECTED] Portal Hosting http://www.lanctr.com Jesse Beckton wrote: Hello, I am looking for some Coldfusion based ecommerce software to purchase. i am looking for something with all the bells and

Re: Reading CSV File

2007-02-26 Thread Dinner
On a side note, HSQLDB is /excellent/ for handling CSV stuff. Totally overkill for the one-offs, or small, easy tasks, but freaking awesome for anything large scale, or if you do a lot with them. Needs createObject, since it's a 3rd party java app. I'll post some examples somewhere

Re: Coldfusion based Ecommerce with CMS software recomendation

2007-02-26 Thread Mary Jo Sminkey
I am looking for some Coldfusion based ecommerce software to purchase. i am looking for something with all the bells and whistles (like ablecommerce) but I need something with good CMS capability as well. Well, that really depends on what you consider good CMS capability. CFWebstore has

ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
Guys, for awhile, I've been griping up a storm via my blog and to whomever would listen that MM Adobe weren't doing enough to get the word out about CF. And while I still think that a lot of work needs to be done, I came to the realization that I also needed to do more than just post gripes.

Re: SQL Enterprise Manager equivalent for 2005

2007-02-26 Thread Mike Little
thanks heaps for the advice guys. i am currently downloading the ems manager lite suggested by mike. looks right up my alley. cheers mike There is a free tool for SQLServer2005 at http://sqlmanager.net/products/mssql/manager/. It's called EMS SQLManager Lite. The Lite part means it doenst

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Mik Muller
Excellent idea. Mik At 11:22 PM 2/26/2007, you wrote: Guys, for awhile, I've been griping up a storm via my blog and to whomever would listen that MM Adobe weren't doing enough to get the word out about CF. . Your feedback is welcome and your involvement would definitely be appreciated.

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
Thanks Mik. :) Mik Muller wrote: Excellent idea. Mik At 11:22 PM 2/26/2007, you wrote: Guys, for awhile, I've been griping up a storm via my blog and to whomever would listen that MM Adobe weren't doing enough to get the word out about CF. . Your feedback is welcome and your

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Mik Muller
Typo: http://www.gotcfm.com/about.cfm wbesites in Ok What's next? Also, no email contact below link. Michael Michael Muller Admin, MontagueMA.net Website work (413) 863-0030 cell (413) 320-5336 skype: michaelBmuller http://www.MontagueMA.net Eschew Obfuscation

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
Thanks for finding those. Fixed. Rey Mik Muller wrote: Typo: http://www.gotcfm.com/about.cfm wbesites in Ok What's next? Also, no email contact below link. Michael Michael Muller Admin, MontagueMA.net Website work (413) 863-0030 cell (413)

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Mark Mandel
Rey, Do you only want commercial sites? or are you happy with personal blogs and the like? Love the idea, keep the site going! Mark On 2/27/07, Rey Bango [EMAIL PROTECTED] wrote: Thanks for finding those. Fixed. Rey Mik Muller wrote: Typo: http://www.gotcfm.com/about.cfm

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
Hi Mark, Any site. I think its extremely important to show how many people depend of CF-technologies everyday. Rey... Mark Mandel wrote: Rey, Do you only want commercial sites? or are you happy with personal blogs and the like? Love the idea, keep the site going! Mark On 2/27/07,

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Mark Mandel
Next stupid question - What do you do if you don't know what the server is? (i.e. you can see a.cfmextension, but you don't know who runs it) Mark On 2/27/07, Rey Bango [EMAIL PROTECTED] wrote: Hi Mark, Any site. I think its extremely important to show how many people depend of

RE: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Eric Roberts
I put my consulting site up...which has link to my other sites...all done if Cf ;-) Rock on Ray!! Eric -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Monday, February 26, 2007 11:03 PM To: CF-Talk Subject: Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
I'll add an option in there that just says ColdFusion. Give me a couple of minutes to add it. Rey... Mark Mandel wrote: Next stupid question - What do you do if you don't know what the server is? (i.e. you can see a.cfmextension, but you don't know who runs it) Mark On 2/27/07, Rey

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
All set Mark. I added an option called Unknown CFML Server. Great feedback. Rey Mark Mandel wrote: Next stupid question - What do you do if you don't know what the server is? (i.e. you can see a.cfmextension, but you don't know who runs it) Mark On 2/27/07, Rey Bango [EMAIL

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
No sweat man! Thats perfectly cool and extremely important since you make your living building CF sites. Rey... Eric Roberts wrote: I put my consulting site up...which has link to my other sites...all done if Cf ;-) Rock on Ray!! Eric -Original Message- From: Rey Bango

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Mik Muller
When do we get to see the list of sites? Mik Michael Muller Admin, MontagueMA.net Website work (413) 863-0030 cell (413) 320-5336 skype: michaelBmuller http://www.MontagueMA.net Eschew Obfuscation ~| Create

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
Most likely by tomorrow. Its near 1am here and I'm getting a bit tired. In the interim, check out the list of Power By buttons: http://gotcfm.com/resources.cfm I scoured Google for these but if you see more, please email me them. Rey... Mik Muller wrote: When do we get to see the list of

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
I've added another link called Promote CF which will list out things that would be VERY helpful. Feel free to suggest more things and submit information. http://gotcfm.com/resources.cfm I really would like to get a set of Powered By ColdFusion buttons (ie: Adobe flavor) updated for CFMX 7 and

Re: ANN: GotCFM.Com is Launched - Dedicated to CF Evangelism

2007-02-26 Thread Rey Bango
The list of sites is now up. http://www.gotcfm.com/thelist.cfm I'll be expanding it tomorrow to also display the description of the site. Rey... Mik Muller wrote: When do we get to see the list of sites? Mik Michael Muller Admin, MontagueMA.net Website work (413)

Cfstoredproc message

2007-02-26 Thread Richard Meredith-Hardy
Simple question, I hope How does one get back to CF the message a stored proc normally puts in the messages window when you run it in SQL Server management studio or enterprise manager? Thanks in advance Richard (I've hunted around but difficult to search for the word 'message'...)

Re: Cfstoredproc message

2007-02-26 Thread Robertson-Ravo, Neil (RX)
Well if it is success or not then you just use the return codes. If you want a specific user defined message you will have to select it into a var and return it as an OUT or as a resultset. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United