Re: help on the cfif code

2006-10-30 Thread RichL
Hi Alex Glad to hear that you got it sorted Your solution seems to suggest that you have got a cfsetting enablecfoutput=yes being used somewhere in the code (perhaps in an application.cfm/cfc page ? ) and that that is why you need to the cfoutput to get your html tags to render

Insert Data CFC

2006-10-30 Thread Matthew Irwin
I have a cfc that I invoke to show the price of an item. Can I use the same cfc to place the price in a table. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by

RE: Insert Data CFC

2006-10-30 Thread David Low
From: Matthew Irwin [mailto:[EMAIL PROTECTED] Sent: 30 October 2006 10:36 To: CF-Talk Subject: Insert Data CFC I have a cfc that I invoke to show the price of an item. Can I use the same cfc to place the price in a table. Yep, just place the query in a separate function.

Re: Image CFC Image Object

2006-10-30 Thread Chris Peters
Good point. Unfortunately this doesn't work too well if you're trying to implement a system that honors a SOA pattern. What if one of our .NET developers needs to call my service remotely? The .NET program isn't going to know where the file is stored on the CF server's hard disk. I know, a

Need regular expression in REReplace for email

2006-10-30 Thread Karl
I need to take any email address and transform it with a regular expression in a REReplace so that everything after the @ and before the FINAL period is replaced by the same number of asterisks as there are characters being replaced. So for example: [EMAIL PROTECTED] = [EMAIL PROTECTED]

OT: Weird thing with windws time

2006-10-30 Thread Doug Brown
Now that we have had to set our clock back an hour, I noticed that my Windows XP box thinks it is a two hour difference. I am in Mountain time at 5:59am and the computer clock has went back to 4:59am I have it on the correct time zone and it was set to automatically adjust. Is anyone else

Re: OT: Open DNS Server / Recursion

2006-10-30 Thread Tom Chiverton
On Thursday 26 October 2006 19:14, Eric Haskins wrote: Dont block DNS requests at the firewall. Your customers wont be happy when their sites dont resolve :) 90% of the time it's cheaper and easier to have someone else run the DNS. -- Tom Chiverton Helping to autoschediastically architect

Re: cftry and transactions

2006-10-30 Thread Steve Milburn
Hi Lori I tried what you suggested and still no luck. If one of the inserts in the loop violates a db constraint, the previous insert are still not removed from the db. Anyone else have any ideas? Stone, Mary L CTR NAWCAD, Bldg 447 wrote: try this: cfcatch type=any

Re: Need regular expression in REReplace for email

2006-10-30 Thread RichL
Hi Karl My regular expressions are very rusty to say the least.. but I had a go using string manipulation which you could put in to a UDF seems to work ok with a variety of emails and may at least get you started. I am sure that there is a better/easier way probably using regular

Re: Need regular expression in REReplace for email

2006-10-30 Thread Bobby Heath
I work with a gentleman here, Adam Presley, who wrote a pretty good app for constructing and testing regular expressions. You can get this app free of charge at http://regstudio.adampresley.com. Hope this helps. Bobby. --- Karl [EMAIL PROTECTED] wrote: I need to take any email address and

Re: cftry and transactions

2006-10-30 Thread Douglas Knudsen
I'd bet your SP is performing a commit. DK On 10/30/06, Steve Milburn [EMAIL PROTECTED] wrote: Hi Lori I tried what you suggested and still no luck. If one of the inserts in the loop violates a db constraint, the previous insert are still not removed from the db. Anyone else have any

Re: Trying model glue again...getting errors on Ray''s PhotoGallery code...

2006-10-30 Thread Dorian Puerta
When i started experimenting with Model_Glue, I also had some weirdness. I ended up getting the latest version of Model-Glue and that seem to fix the problem. Trying looking at the subversion copy on the website www.model-glue.com

Re: cftry and transactions

2006-10-30 Thread Maya Tulchinsky
Steve, You have cftransaction action=commit / before cfcatch. Move commit to after you done with error. Here is some code that should work: cfcatch type=any cftransaction action = rollback/ cfrethrow cfset commitIt = No /cfcatch /cftry /cftransaction cfif commitIt cftransaction

Re: Why Framework? Which Framework? And How I can use one?

2006-10-30 Thread Tom Chiverton
On Friday 27 October 2006 13:35, Ali Majdzadeh wrote: Should I learn more than CF, if I want to use a Framework? Yes, you will probably need to understand CFCs in particular, and OO principles like inheritance in general. 2. Which Framework meets my needs? What are your needs ? If the apps

RE: Insert Data CFC

2006-10-30 Thread Andy Matthews
Of course you can. The thing people will comment on is whether you should. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Matthew Irwin

Re: cftry and transactions

2006-10-30 Thread Steve Milburn
Maya I tried something similar to what you are showing as suggested by somebody earlier in the thread. Same result. By the way, the fact that the commit occurs before the catch should not be an issue (should it?). If there is an error above the commit statement, it will jump over the

Re: Get imagesize

2006-10-30 Thread Claude Schneegans
KiloBytes, the physical size of a file on your disk. Ah, ok, kb... ;-) But again, I'd really like to know how you can get this information from JS. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send

Re: cftry and transactions

2006-10-30 Thread Steve Milburn
Doug I thought that too, so I commented out the stored proc and just ran through the queries inside the loop.nbsp; Same problem - if the loop fails on query #3, queries 1 and 2 are still recorded in the DB.br Douglas Knudsen wrote: I'd bet your SP is performing a commit. DK --- ---

Re: Need regular expression in REReplace for email

2006-10-30 Thread Claude Schneegans
I work with a gentleman here, Adam Presley, who wrote a pretty good app for constructing and testing regular expressions. I consider myself also as a gentleman, and I have such an application in CF online here : http://www.contentbox.com/claude/REwizard/index.cfm?p=h --

RE: weird VB exploit

2006-10-30 Thread Brad Wood
Thanks for the suggestion Jacob.1 -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Saturday, October 28, 2006 8:23 AM To: CF-Talk Subject: RE: weird VB exploit One security rule I've learned that instead of blocking known problems (ala virus definitins), one should

ColdFusion Template Engine?

2006-10-30 Thread Jeff Chastain
I am in need of a template engine similar to Smarty (PHP) for ColdFusion? I have not found such a thing yet. Does it exist? If not, how would you go about writing a parser in ColdFusion that could take a template like this ... -- The current

RE: Get imagesize

2006-10-30 Thread Robertson-Ravo, Neil (RX)
You can actually get both physical size and dimensionsusing the image object in JS...see below. Checking a selected image's dimensions is possible with IE4+ (and probably with NN3 though I haven't tried), simply be creating an Image object and checking its dimensions. NN4 had a security hole

CFDevCon (UK) Meet'n'great

2006-10-30 Thread Tom Chiverton
Is there anyone else staying in the venue the night before/after, who fancies meeting up over tea/breakfast ? -- Tom Chiverton Helping to vitalistically reintermediate turn-key products This email is sent for and on behalf of Halliwells

Re: PDF output : cfdocumentitem type=header

2006-10-30 Thread Michael Dinowitz
Not that I can see in the documentation. PDF output : cfdocumentitem type=header Is it possible to start header output from page 2? Thanks for helping. ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Flash form swf storage

2006-10-30 Thread Dan O'Keefe
Anyone know where the SWF's from a flash form are stored on the server? Are they named similar to the template that generated them? Thanks, -- Dan O'Keefe ~| Introducing the Fusion Authority Quarterly Update. 80

OT - MS Access UPPERCASE to Lowercase

2006-10-30 Thread Dwayne Cole
I have a bunch (800) of UPPERCASE names (ie DWAYNE) in an access database field that I would like to convert to lower case (from DWAYNE to Dwayne). Does anyone know of a function that I can use? Dwayne ~| Introducing the

Re: PDF output : cfdocumentitem type=header

2006-10-30 Thread Michael Dinowitz
I played with it some and the answer is yes. By having one cfdocumentsection tag for the first page with no header and another for the rest of the document, the header defined in the second cfdocumentsection will apply to all pages other than the first. cfdocument format=PDF cfdocumentsection

RE: OT - MS Access UPPERCASE to Lowercase

2006-10-30 Thread Andy Matthews
If you have a text editor capable of changing case, then it would probably be just as easy to select the whole column, paste it into your text editor, changing case all at once, then paste it back in. I do that sort of thing all the time. !//-- andy matthews web developer

XML Parsing. Odd problem.

2006-10-30 Thread J W
I am having trouble parsing out a soap response because of colons in element names. How do you parse them? I.e. cfxml variable=XMLObj env:envelope env:body ab1:unameFRED/ab1:uname ab1:score390/ab1:score /env:body /env:envelope cfxml

RE: XML Parsing. Odd problem.

2006-10-30 Thread Ian Skinner
Yup, all the time #XMLObj[env:envelope][env:body].xmlchildren[1].XmlText# -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | - Binary Soduko | | | - C code. C code run. Run code run. Please! - Cynthia Dunning

Re: OT - MS Access UPPERCASE to Lowercase

2006-10-30 Thread RichL
Dwayne Update tblname set firstname = UCase(Left(firstname,1)) LCASE( right(firstname,( Len(firstname)-1))) Seems to do it ? On 10/30/06, Andy Matthews [EMAIL PROTECTED] wrote: If you have a text editor capable of changing case, then it would probably be just as easy to select the whole

Re: OT - MS Access UPPERCASE to Lowercase

2006-10-30 Thread RichL
(of course that won't cater for Mary-Joe etc which would become Mary-joe or Mary Joe which would become Mary joe) On 10/30/06, RichL [EMAIL PROTECTED] wrote: Dwayne Update tblname set firstname = UCase(Left(firstname,1)) LCASE( right(firstname,( Len(firstname)-1))) Seems to do it ? On

RE: OT - MS Access UPPERCASE to Lowercase

2006-10-30 Thread Dwayne Cole
I use Eclipse? Is that what you mean? -- Original Message -- From: Andy Matthews [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Mon, 30 Oct 2006 10:00:48 -0600 If you have a text editor capable of changing case, then it would probably be

Re: XML Parsing. Odd problem.

2006-10-30 Thread J W
Worked like a charm!! Thanks. Jeff On 10/30/06, Ian Skinner [EMAIL PROTECTED] wrote: Yup, all the time #XMLObj[env:envelope][env:body].xmlchildren[1].XmlText# -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA - | 1 | | -

Re: OT - MS Access UPPERCASE to Lowercase

2006-10-30 Thread Dwayne Cole
Do I run this as SQL statement or do i run an append query? -- Original Message -- From: RichL [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Mon, 30 Oct 2006 16:11:29 + Dwayne Update tblname set firstname = UCase(Left(firstname,1))

Re: OT - MS Access UPPERCASE to Lowercase

2006-10-30 Thread RichL
run it as it is here if you want to update the current records in the table with the new value On 10/30/06, Dwayne Cole [EMAIL PROTECTED] wrote: Do I run this as SQL statement or do i run an append query? -- Original Message -- From: RichL [EMAIL

Re: OT - MS Access UPPERCASE to Lowercase

2006-10-30 Thread RichL
or you could add another table column on to set this new formatted data - depends on you needs i.e. firstNameDisplay for example and insert formatted data in to that column On 10/30/06, RichL [EMAIL PROTECTED] wrote: run it as it is here if you want to update the current records in the table

RE: Need regular expression in REReplace for email

2006-10-30 Thread Bobby Hartsfield
Hey... I don’t have a regex wizard so am I NOT a gentleman? Anyway... I've used REWizard (a while back) and can vouch for it... and Claude. I haven’t used the other suggestion by Bobby Heath. But I'd think this would be much easier and reusable than a regular expression. cfscript function

Re: Insert Data CFC

2006-10-30 Thread Charlie Griefer
OK since you opened the can of worms... :) i'm still relatively new to the whole concept of OO and using CFC's OOly. with that disclaimer out of the way... Why wouldn't you? seems that's the CR part of CRUD, which I understood should be together in one CFC? On 10/30/06, Andy Matthews [EMAIL

RE: Need regular expression in REReplace for email

2006-10-30 Thread Bobby Hartsfield
Heh... I totally forgot about Repeatstring()... cfscript function maskemail(email) { name = listfirst(email, '@'); tld = listlast(email, '.'); maskedemail = name '@' repeatstring('*', len(replace(replace(email, name, ''), tld, ''))-2) '.' tld; return

Re: Insert Data CFC

2006-10-30 Thread Jake Churchill
It's best to create a CFC with a bunch of related functions. So, perhaps a price.cfc with getPrice as a function and insertPrice as a function. In the calling code, when you instantiate that object you have access to both functions Charlie Griefer wrote: OK since you opened the can of

RE: Converting from SQL to mySql

2006-10-30 Thread Christine Davis
I recently made the same switch using www.navicat.com I just connected to my SQL server and copied the tables and data to the mySQL server, quick and painless. I really like Navicat for managing mySQL. Thanks! Christine Davis ColdFusion Lead Nations Technical Services Prairie Village, KS

Re: Converting from SQL to mySql

2006-10-30 Thread John Paul Ashenfelter
On 10/28/06, Doug Brown [EMAIL PROTECTED] wrote: I am wondering how difficult it might be to migrate over to mySql from SQL2000? Is this a daunting task? Any assistance would be much appreciated. I would especially love to hear from someone who has done this. I do this with some regularity

RE: Converting from SQL to mySql

2006-10-30 Thread Munson, Jacob
Yeah I ran into the same thing when I tried convertin a sql db to mysql. Had lotsa queries that bombed out. Speakin of queries, I think dave might have some good tips on mysql. he uses it alot. soap box This is the #1 reason why I try to stay informed on what features are proprietary and

Re: Converting from SQL to mySql

2006-10-30 Thread Oğuz Demirkapı
+1 for Navicat. :) Christine Davis wrote: I recently made the same switch using www.navicat.com I just connected to my SQL server and copied the tables and data to the mySQL server, quick and painless. I really like Navicat for managing mySQL. Thanks! Christine Davis ColdFusion Lead

RE: Converting from SQL to mySql

2006-10-30 Thread Munson, Jacob
I'm a *big* fan of MySQL, on any platform, but license cost savings alone shouldn't drive you to the conversion. What about if you're using an outdated version of MSSQL, and you'd have to pay $20,000 to upgrade to 2005? I'd be inclined to look around for cheaper DBs. As far as community vs.

Re: Converting from SQL to mySql

2006-10-30 Thread Ryan Stille
Doug Brown wrote: I am wondering how difficult it might be to migrate over to mySql from SQL2000? Is this a daunting task? Any assistance would be much appreciated. I would especially love to hear from someone who has done this. I did this a year ago with a very large application. We

Validating $ and comma with cfinput validation

2006-10-30 Thread Jeff Gamble
I've been attempting to remove the $ and comma from an inserted salary field using validate=integer in a cfinput statement with no luck. The form allows $ and comma to be submitted to the database, which we certainly don't want. I'm wondering if this is a bug or is there something I'm

Re: Validating $ and comma with cfinput validation

2006-10-30 Thread Charlie Griefer
i don't know a thing about cfinput, but you can certainly strip out any non-numeric values on the action page (before or during the insert/update) using a relatively simple regex: rereplace(myFormValue, '[^0-9]', '', 'all') On 10/30/06, Jeff Gamble [EMAIL PROTECTED] wrote: I've been attempting

RE: Validating $ and comma with cfinput validation

2006-10-30 Thread Brad Wood
I believe and , are valid characters for a dollar amount. If you don't want them in your database, it is up to you to strip them out. Just use a little regex. ~Brad -Original Message- From: Jeff Gamble [mailto:[EMAIL PROTECTED] Sent: Monday, October 30, 2006 12:01 PM To: CF-Talk

Re: best practices for encryption

2006-10-30 Thread daniel kessler
How do you read something that is above web root? And to destroy it, do you just stick it in a var then overwrite the var with cfset myvar = '' when done? I recently had the same situation come up and ended up choosing the security-by-obscurity approach. I generated a key as you did and

Re: cfform format=flash won''t render

2006-10-30 Thread John Dowdell
Robertson-Ravo, Neil (RX) wrote: Lol +1 This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may

Re: ColdFusion Template Engine?

2006-10-30 Thread Rick Root
Jeff I wrote a template parser about 6 years ago that I never released but would be willing to share the code if you're interested in seeing it. It's documented here: The code is hideous, it's CF 4.5 era code and I wrote it obviously a long long time ago :)

RE: ColdFusion Template Engine?

2006-10-30 Thread Rick Faircloth
The code is hideous, it's CF 4.5 era code Hey!!! I resemble that remark!!! :o) Rick -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Monday, October 30, 2006 2:44 PM To: CF-Talk Subject: Re: ColdFusion Template Engine? Jeff I wrote a template parser about 6

Re: ColdFusion Template Engine?

2006-10-30 Thread Barney Boisvert
I've used ClearSilver (www.clearsilver.net) in a few CF apps with great success. I've never used Smarty, but I haven't found ClearSilver much lacking. It's definitely a templating engine; it's got no brains, but tha'ts exactly what we were looking for. You can build macros, use includes, and

Re: best practices for encryption

2006-10-30 Thread Rob Wilkerson
On 10/30/06, daniel kessler [EMAIL PROTECTED] wrote: How do you read something that is above web root? And to destroy it, do you just stick it in a var then overwrite the var with cfset myvar = '' when done? Using CFFILE and supplying an absolute path. The content of the file is simply the

Authorize.net v3.1 AIM URL info

2006-10-30 Thread Tony Hicks
Back in July '04, I had a payment gateway that interfaced with Authorize.nethttp://authorize.net/AIM interface and I had my account setup like this... mysite.com/gw/index.cfm had a form that the customer filled out with their cc info, billing and shipping info. mysite.com/gw/ccpost.cfm validated

ANN: New CFFormProtect release

2006-10-30 Thread Munson, Jacob
CFFormProtect is an alternative Captcha implementation that tries to be more user friendly than the obfuscated text images. In short, the user is asked to select the correct image out of a set. No difficult to read text, just click the correct images. Check out the features, and download the

Re: All Stored Procs in 1 CFC?

2006-10-30 Thread Tony Hicks
I worked on a system where something similar was done. No stored procedures were used but all queries were in two CFC's. There are only two problems I'm aware of regarding this. One actually happened, many times, thanks to an incompetent programmer. (1.) A syntax error in the code causes a

RE: best practices for encryption

2006-10-30 Thread Snake
You can also use cfinclude and cfsavecontent to read the file, which is faster. -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: 30 October 2006 20:00 To: CF-Talk Subject: Re: best practices for encryption On 10/30/06, daniel kessler [EMAIL PROTECTED] wrote: How

ColdFusion and Maven

2006-10-30 Thread Leon Oosterwijk
All, We are interested in formalizing our deployment process from development/staging/(pre-release)/production. I know Maven is really popular for this in the Java world and was wondering if anyone had experience using Maven to deploy ColdFusion applications. We have a lot of ColdFusion and a

Re: ColdFusion Template Engine?

2006-10-30 Thread Jeff Chastain
Barney, I have looked at ClearSilver before, I just have not liked its syntax. I like for the templates to be able to be verified on their own and ClearSilver is not xhtml compliant. I am not sure if Smarty is or not. Thanks for the pointer.

Re: ColdFusion and Maven

2006-10-30 Thread Dave Ross
I use Maven on Java projects and it does make the build process a lot smoother. I've thought about using it for CF projects (especially for running unit tests during build), but I never took it further than just the idea. It would be cool if there was a maven repo for CF projects. Dave Ross

Re: ColdFusion Template Engine?

2006-10-30 Thread Barney Boisvert
You can verify the templates by parsing them without rendering (using an empty dataset). That way you can give immediate feedback to your users when they edit them. As for xhtml compliance, ColdFusion isn't compliant either. If that's not for you, it's simple to write a command processor that

I know it sounds crazy ...

2006-10-30 Thread coldfusion . developer
All, Is it possible to pass the FORM. scope somehow through a hyperlink? I have severeal images that I've imagemapped and need to place hyperlinks in them. I was thinking of creating a submit button with the image that needs a hyperlink. I'm trying to work an application hosted by an

RE: I know it sounds crazy ...

2006-10-30 Thread Loathe
find and replace on from and url? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, October 30, 2006 5:50 PM To: CF-Talk Subject: I know it sounds crazy ... All, Is it possible to pass the FORM. scope somehow through a hyperlink? I have

dynamic anchor in Coldfusion

2006-10-30 Thread Mullai Subbiah
I am trying to use anchor points within a long page (say X). This is to aid the user so that focus returns to the same area when user submits the page. (Until he quits the page he will always return to the same page.) I created anchors at different areas using a href=top/a where top will change

Re: dynamic anchor in Coldfusion

2006-10-30 Thread Barney Boisvert
Named anchors are created using the 'name' attribute of the A tag: a name=top/a You also don't need an before the anchor reference in your URL. I.e. this is correct: http://domain.com/path/to/file.cfm?var=val#top cheers, barneyb On 10/30/06, Mullai Subbiah [EMAIL PROTECTED] wrote: I am

Re: I know it sounds crazy ...

2006-10-30 Thread coldfusion . developer
How would you so that? Can you be a little more specific? find and replace on from and url? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

RE: Validating $ and comma with cfinput validation

2006-10-30 Thread Dave Watts
I've been attempting to remove the $ and comma from an inserted salary field using validate=integer in a cfinput statement with no luck. The form allows $ and comma to be submitted to the database, which we certainly don't want. I'm wondering if this is a bug or is there something

RE: I know it sounds crazy ...

2006-10-30 Thread Loathe
What IDE do you use? If your in eclipse or homesite+/cf studio you can do find and replace. Put form. in the find and url. in the replace. Specify a directory or file and you should be good to go. -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: I know it sounds crazy ...

2006-10-30 Thread Ben Koshy
cfset formscopeurl = cfloop collection=FORM item=Field cfset formscopeurl = formscopeurl amp;#urlencodedformat(form[field])# /cfloop cfoutputa href=mysite.com/index.asp?action=process#formscopeurl#/cfoutput Would something like that work? - Original Message - From:

RE: Converting from SQL to mySql

2006-10-30 Thread Dave Watts
What about if you're using an outdated version of MSSQL, and you'd have to pay $20,000 to upgrade to 2005? I'd be inclined to look around for cheaper DBs. If you don't need SQL Server Enterprise or Standard functionality, SQL Server 2005 Express is free. If you do need the sort of

RE: I know it sounds crazy ...

2006-10-30 Thread Brad Wood
I think he want the user to click on an image which has an image map applied, but needs that to submit a form on the page because the app he is posting to will only accept the input form a form submit, and he can't change the receiving app cheaply. Is that correct? You should be able to do an

Re: dynamic anchor in Coldfusion

2006-10-30 Thread Doug R
I think you need to change your syntax a little... for where you want the named anchor, place this: a name=top /. Then the cflocation with the location name should go right to it. On 10/30/06, Mullai Subbiah [EMAIL PROTECTED] wrote: I am trying to use anchor points within a long page (say

RE: I know it sounds crazy ...

2006-10-30 Thread Brad Wood
Hmmm, now I'm even more confused about what you are trying to accomplish. Just ignore my previous post I guess-- your code below doesn't even use image maps. One word of warning though-- the code below will break if your form variables are not simple variables. (CF will occasionally create

Re: Converting from SQL to mySql

2006-10-30 Thread Jordan Michaels
Dave Watts wrote: What about if you're using an outdated version of MSSQL, and you'd have to pay $20,000 to upgrade to 2005? I'd be inclined to look around for cheaper DBs. If you don't need SQL Server Enterprise or Standard functionality, SQL Server 2005 Express is free. If you do need

RE: Converting from SQL to mySql

2006-10-30 Thread Munson, Jacob
If you don't need SQL Server Enterprise or Standard functionality, SQL Server 2005 Express is free. If you do need the sort of functionality found in Enterprise (as opposed to Standard), a lot of it doesn't exist in MySQL to the best of my knowledge. Slightly OT, but here at work we've

RE: Converting from SQL to mySql

2006-10-30 Thread Munson, Jacob
Oh yeah, and on the costs issue, don't forget that in addition to the staggering cost of MS SQL Server itself, you are also forced to run it on a MS OS - which costs another very shiny penny. Cost is certainly a factor - and usually the one board members care about the most. Strangely, I tend

Re: Authorize.net v3.1 AIM URL info

2006-10-30 Thread Tony Hicks
Turns out, this is a disabled feature, so I'll employ another method for the same result. It took about eight ANet employees through the day for one to actually say No, the feature is disabled. But yes it did exist once and to give me enough information to create a new method. Disabling such a

RE: Converting from SQL to mySql

2006-10-30 Thread Dave Watts
For the record, I'm not saying there aren't any good reasons to migrate from MS SQL Server to MySQL, just that price isn't necessarily one of them. Dave, I can think of plenty of reasons to migrate away from MS SQL. How about platform independence? How about affordable clustering?

Re: Authorize.net v3.1 AIM URL info

2006-10-30 Thread Will Tomlinson
Unfortunately I'm no longer sure which url in the settings of my account to set to https://mysite.com/ccrecieve.cfm and Live Help isn't very... helpful. They don't understand what I'm trying to do. I went round n round with one of those Live help people the other day. I swear the dude was

Re: Converting from SQL to mySql

2006-10-30 Thread Doug Brown
I have seen alot of those bills in prior companies that I worked for. I simply think paying that kind of money out, when you have a very talented DBA that you are paying a load of money is a (waste) of money. How often does anyone here come across a problem that they have to call MS on?

Re: dynamic anchor in Coldfusion

2006-10-30 Thread Mullai Subbiah
I am trying to use anchor points within a long page (say X). This is to aid the user so that focus returns to the same area when user submits the page. (Until he quits the page he will always return to the same page.) I created anchors at different areas using a href=top/a where top will

Re: dynamic anchor in Coldfusion

2006-10-30 Thread Mullai Subbiah
Thanks. Sorry I had a name=... a href= was a typo. Mullai ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four

Re: I know it sounds crazy ...

2006-10-30 Thread Jon Clausen
I'm kind of confused to as to the end game of what D's trying to accomplish exactly, but I think Ben's code is on the right track. Probably better to use a cfhttp tag during the Post process to get the job done, though and then use the response to determine the page action. cfif

Re: COLDFUSION DEVELOPER''''S JOURNAL ?

2006-10-30 Thread Dave Lyons
what REALLY PISSES me of about this is ever since I paid for that damn pdf the amount of spam im getting is bullshit, i thought that was a respectable and trustworthy site. well sh*t haha I wanted to get the one issue for the flex issue, to bad you cant actually see the screenshots on

RE: Converting from SQL to mySql

2006-10-30 Thread Dave Watts
I honestly believe that if companies like the yahoo and google, who use mySql to run portions of their websites, figure to prove that a whopping $20,000 licence for MS or Oracle just is not worth it. Things just aren't as simple as this. Companies like these would pay far more than $20K

RE: I know it sounds crazy ...

2006-10-30 Thread Dave Watts
Is it possible to pass the FORM. scope somehow through a hyperlink? Strictly speaking, no. However, you can pass individual form values as URL parameters, build hyperlinks which submit forms, etc. Alternatively, you could rewrite action pages that are expecting to find variables in the Form

OT: Paymentech Documentation

2006-10-30 Thread Jon Clausen
Would anyone, by chance, have a copy of the Paymentech Orbital Gateway API documentation they could e-mail me off-list? I have a client who is waiting to finalize their account through Chase and it seems that Paymentech only makes their API specs available to the account holders directly

RE: Flash form swf storage

2006-10-30 Thread Dave Watts
Anyone know where the SWF's from a flash form are stored on the server? Are they named similar to the template that generated them? By default, they're not stored on the filesystem at all. If you view source in a CFFORM Flash page with a URL like /somedir/somefile.cfm, you'll see something

RE: URL for CF7 Multi-Server configurations

2006-10-30 Thread Dave Watts
Apache on a Win Box is faster than IIS6? Is that really true? No, it's neither faster nor more reliable, in my experience. However, it's fast enough and reliable enough. If you're primarily using your web server as a way to access CF pages, it doesn't really matter what web server you use

RE: Can I write code in CF 8 for CF 4.5?

2006-10-30 Thread Dave Watts
I'm not terribly interesting in working with CF 7 since CF 8 is due out next year. I'm overly busy now developing with 4.5! I was holding off learning the new coding and methods until CF 8 comes out. By that logic, you might as well just wait until, say, CF 10 comes out. There's a lot

RE: Good Linux books

2006-10-30 Thread Dave Watts
This will probably turn into a heated debate, but yes, Linux is good for running an enterprise level app, more so then windows, but you need to know how to administer it. It's much harder to administer then windows, but once you set it up properly, it usually keeps working, unlike

RE: Good Linux books

2006-10-30 Thread Dave Watts
would you guys say that Linux is good for running enterprise level web application? Absolutely. If you don't have any Windows-specific functionality requirements, I would say it's probably a better choice for web applications, assuming you're equally familiar with both platforms. If you're

RE: Can I write code in CF 8 for CF 4.5?

2006-10-30 Thread Dave Watts
Don't you feel silly now that VMWare server is free :-P I don't know about John, but I got my money's worth out of VMware Workstation and GSX Server long before the free versions were available. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest

All I can say is... wow

2006-10-30 Thread C. Hatton Humphrey
It's safe for work and fun to watch, don't have your sound turned up too loud. http://www.circoripopolo.be/comicduo ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion

RE: Can I write code in CF 8 for CF 4.5?

2006-10-30 Thread Rick Faircloth
You assume I've got as much time on my hands between versions 7 and 8 as I will later...too much to do right now...no time bother with the new stuff. I'll be very busy until the end of the year and then we're only 6 months (hopefully) away from CF 8...I think I'll use CF 7 as a development

Re: All I can say is... wow

2006-10-30 Thread Jeff Fleitz
That is really slick. Thanks for the link. On 10/30/06, C. Hatton Humphrey [EMAIL PROTECTED] wrote: It's safe for work and fun to watch, don't have your sound turned up too loud. http://www.circoripopolo.be/comicduo ~|

Re: Converting from SQL to mySql

2006-10-30 Thread Matt Robertson
On 10/28/06, Doug Brown [EMAIL PROTECTED] wrote: I do not think it liked the @ Sorry if my original post was misleading but when I move my own code from one platform to another all I do is copy the table structure and data. I use zero db-specific features so as to be able to do that. Not

  1   2   >