SOT: Looking for opinions on menu functionality

2007-06-05 Thread Jason Rogoz
Hello We have just rolled out a site that incorporates a flash menu. The menu was designed to have to be clicked in order to see the submenu items, instead of the traditional rollover to view the items. I have voiced my concern with this method of clicking the parent menu item in order to

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Tom Chiverton
On Tuesday 05 Jun 2007, John Paul Ashenfelter wrote: Clearly those people have never tried to develop with Drupal :) That'll fix them. OTOH, it makes writing a Drupal-CF bridge a whole lot easier :-) And by extension, a Flex frontend to Drupal :-) -- Tom Chiverton, whos blog runs Drupal

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Kevin Aebig
Hey Rick... just some comments: A. I know 5 or 6 owners of rather large hosting companies (10-2) and not one thought it was a good idea. The concept is nice, but utterly pointless in regards to the overhead and added complications involved... if you really want to share sessions between

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Paul Vernon
I can think of one real world example that I cannot do with CF at unless I'm on a 64-bit JVM. For me dropping into PHP to do that tiny bit would solve a whole host of albeit self imposed issues surrounding the use of CFHTTP to call a math function that returns a very large integer as the HTTP

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread James Holmes
Actually, Quercus runs phpBB, Wordpress, Drupal and a bunch of other stuff essentially out of the box. Sean's using part of the Quercus technology to provide the CF integration, but it it is possible to deploy Quercus by itself in a J2EE server to make it run whole PHP apps. On 6/5/07, Damien

passing long list of values

2007-06-05 Thread Orlini, Robert
How can I pass values to another page via a URL without listing all of them within the URL tag? After a certain field is checked, it uses a CFLocation tag and the url, but I have many fields to embed. Is there a better way? How about Cftemplate? Hidden fields wouldn't work w/a URL? cfoutput

RE: Using an ASP object in CF (was Re: Run PHP code inline on a Coldfusion page)

2007-06-05 Thread Kevin Aebig
I would definitely prove to him that a classic ASP component can't compare to the modern stuff that's out. Also, unless it uses a DLL (crap), there's no reason that you could reverse engineer it to use it in a custom tag. If it uses a DLL, than there's your reason to change... !k -Original

Re: Using an ASP object in CF (was Re: Run PHP code inline on a Coldfusion page)

2007-06-05 Thread C. Hatton Humphrey
On 6/5/07, Kevin Aebig [EMAIL PROTECTED] wrote: I would definitely prove to him that a classic ASP component can't compare to the modern stuff that's out. Also, unless it uses a DLL (crap), there's no reason that you could reverse engineer it to use it in a custom tag. It's actually a VBScript

RE: passing long list of values

2007-06-05 Thread blists
You could create a hidden form with all of your fields: form name=someform action=anotherpage.cfm method=post !--- put hidden fields here --- /form Submit the form via JS: script language=Javascript document.someform.submit(); /script The only problem with this method is the first page has to

New CFUG: Calling All Central California Developers

2007-06-05 Thread Aaron Roberson
This past week I applied as a manager of a new ColdFusion User Group for the Fresno area (beginning, intermediate and advanced developers from Bakersfield to Modesto are welcome to join!). I considered naming it the Central Valley CFUG (CVCFUG) but decided that NOCFUG had a bit more flare and is

Re: Open link and CF MX7

2007-06-05 Thread Shawn Slaughter
I am using the odbc socket datasource. Shawn ~| ColdFusion 8 beta – Build next generation applications today. Free beta download on Labs http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta Archive:

Re: Looking for opinions on menu functionality

2007-06-05 Thread Josh Nathanson
We have just rolled out a site that incorporates a flash menu. The menu was designed to have to be clicked in order to see the submenu items, instead of the traditional rollover to view the items. I think it's fine either rollover or click. As long as people know how to get from point A

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Doug Bezona
C. This brings us back to the question... what makes this a good idea? Why overly complicate something? While it may not be common, there are a lot of large organizations out there with multiple applications in multiple languages. Having a tool that can integrate these applications can be

Re: SOT: Looking for opinions on menu functionality

2007-06-05 Thread Ariel Jakobovits
THAT IS SOOO NICE. Perhaps, THE NICEST MENU I HAVE SEEN YET. - Original Message From: Jason Rogoz [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, June 5, 2007 8:24:12 AM Subject: SOT: Looking for opinions on menu functionality Hello We have just rolled out a

Ignoring Application.cfc or .cfm

2007-06-05 Thread John P
Is there a tag I can use on my page to ignore an application.cfc in the root directory? Additionally, how many directories above the page being called will CF travel to look for an application.cfc or .cfm file? Will it look keep going until it reaches the server root directory? Thanks!

Re: passing long list of values

2007-06-05 Thread Ariel Jakobovits
put them in session then cflocate - Original Message From: Orlini, Robert [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, June 5, 2007 9:05:11 AM Subject: passing long list of values How can I pass values to another page via a URL without listing all of them

RE: Ignoring Application.cfc or .cfm

2007-06-05 Thread Ben Forta
John, Yep, all the way up. And to get it to ignore it, just add one in your own folder. --- Ben -Original Message- From: John P [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 12:29 PM To: CF-Talk Subject: Ignoring Application.cfc or .cfm Is there a tag I can use on my page to

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Damien McKenna
-Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 11:49 AM Subject: Re: Run PHP code inline on a Coldfusion page On 6/5/07, Damien McKenna wrote: From what I've seen you also are not going to be able to automagically run existing PHP,

Re: Ignoring Application.cfc or .cfm

2007-06-05 Thread John P
Great, thanks Ben! John, Yep, all the way up. And to get it to ignore it, just add one in your own folder. --- Ben -Original Message- From: John P [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 12:29 PM To: CF-Talk Subject: Ignoring Application.cfc or .cfm Is there a tag I

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Kevin Aebig
So patch the problem and deal with it later? And who's best practices do you follow? And which company do you call when it breaks? Every example, though valid, is still an instance of the easy way instead of the right way... and that's fine if you're happy with that But I'm not... !k

Re: Open link and CF MX7

2007-06-05 Thread Dean Lawrence
On 6/5/07, Shawn Slaughter [EMAIL PROTECTED] wrote: I am using the odbc socket datasource. Shawn Shawn, It's been quite a while since I did this upgrade, but I remember something about the upgrade adding a default username and password into the CF datasouce setup and this caused a connection

Re: passing long list of values

2007-06-05 Thread exH
If the list of params is very long it is safer to use form POST, but of course avoid using JS submit unless you really have to. (or if web standards and accessibility are already neglected, which is likely considering the audience ;) - Original Message - From: blists [EMAIL

Q of Q record limitation?

2007-06-05 Thread Bryan Stevenson
Hey All, I've never really had much need for query of queries, but have used it more extensivley in a current application and am bumping into a few things. 1) Are outer joins possible? I've read some conflicting blogs/articles 2) Is there a recordset limitation? For example I'm trying to

help with WebCharts

2007-06-05 Thread Leitch, Oblio
Any WebCharts3D gurus out there? This email message may contain privileged and/or confidential information. If you are not the intended recipient(s), you are hereby notified that any dissemination, distribution, or copying of this email message is strictly prohibited. If you have received

Re: Q of Q record limitation?

2007-06-05 Thread Robertson-Ravo, Neil (RX)
Hmm, it's possible, do you get OutOfMemory errors in the logs? That said, I would warn you off using QoQ / Queries (or a web application under load) to generate 20K recordsets, it's a terribly waste of memory, network and resources. What are the business requirements for these recordsets? Is is

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Robertson-Ravo, Neil (RX)
Porting functionality isn't interop though. That's a business decision to rewrite -- as well as bridge options now available to you you no doubt had Web services, COM, Shared DB procs as options? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9

Re: Q of Q record limitation?

2007-06-05 Thread Bryan Stevenson
Hmm, it's possible, do you get OutOfMemory errors in the logs? Haven't checked yetand actually have been killing the threads via Fusion Reactor when they got up around 300,000 ms!! ;-) That said, I would warn you off using QoQ / Queries (or a web application under load) to generate 20K

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Brad Wood
Out of curiosity, why is that a problem with cfhttp? -Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 10:47 AM To: CF-Talk Subject: RE: Run PHP code inline on a Coldfusion page I can think of one real world example that I cannot do with CF at

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Doug Bezona
On 6/5/07, Kevin Aebig [EMAIL PROTECTED] wrote: So patch the problem and deal with it later? I didn't say it was ideal, but in a business situation when you have numerous, large legacy apps, and your choice is to spend a small amount of effort to do some integration, vs. multiple thousands of

Re: SOT: Looking for opinions on menu functionality

2007-06-05 Thread Mik Muller
Nice and slow bouncy. BTW, if you click the green area around the text/logo you're sent to http://www.xtend.tv/index.html which is missing. Mik At 12:35 PM 6/5/2007, Ariel Jakobovits wrote: THAT IS SOOO NICE. Perhaps, THE NICEST MENU I HAVE SEEN YET. - Original Message From: Jason

SOLVED? Re: Method=GET received as POST by CF

2007-06-05 Thread Josh Nathanson
I also have JS validation, but I never imagine I would also have to check the value in the method attribute. And even so, if the error is caused by IE, the method value will probably be changed after the onsubmit event anyway. Claude - I may have solved this issue. So far no errors. In my

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Doug Bezona
On 6/5/07, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Porting functionality isn't interop though. That's a business decision to rewrite -- as well as bridge options now available to you you no doubt had Web services, COM, Shared DB procs as options? Absolutely. There are a lot of

Re: Open link and CF MX7

2007-06-05 Thread Shawn Slaughter
I removed the system username, the connection was verified but when I went to the app I received this error: Executing Database Query. [Macromedia][SequeLink JDBC Driver][SequeLink Server]Unable to retrieve error message from backend ODBC Driver. any clues?? SS

RE: Need hekp with INstallation of CF7 Apache

2007-06-05 Thread Russ
The only issue the proxy configuration has is that all the client IPs will look like they're coming from the front end server. There is a JRUN filter that I wrote (and someone else on here wrote a better one) that fixes that issue. Let me know if you want it and can't find it, and I'll see if

How to escape the character # in a string

2007-06-05 Thread Dave Hatz
I am trying to do the following, newVar=Replace(var,#, ,ALL); but the # is throwing errors. I have tried ## and it runs, but will not replace the # in my strings. Any suggestions? Thanks, Dave Hatz ~| ColdFusion 8 beta –

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Jordan Michaels
Dave Watts wrote: Simply because you personally immediately see the benefits of integrating PHP into CFML code, doesn't mean that the value is not there. It only means that you can't see it (yet). One could say the same to your reaction to .NET. But then one could be accused of

Re: How to escape the character # in a string

2007-06-05 Thread Charlie Griefer
doubling up on the # signs works for me. cfsavecontent variable=mystring we are #1! /cfsavecontent cfoutput #myString# br / #replace(mystring, ##, , all)# /cfoutput On 6/5/07, Dave Hatz [EMAIL PROTECTED] wrote: I am trying to do the following,

RE: SOT: Looking for opinions on menu functionality

2007-06-05 Thread Jason Rogoz
Hi Mik What page were you on when you encountered the error? Thanks Jason -Original Message- From: Mik Muller [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 11:46 AM To: CF-Talk Subject: Re: SOT: Looking for opinions on menu functionality Nice and slow bouncy. BTW, if you

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Jordan Michaels
Robertson-Ravo, Neil (RX) wrote: There is absolutely no basis in this, why wouldn't you touch it? Because I'm a firm believer in choice - and I find .NET restrictive and limiting. CFML upon .NET would be the same as running CFML upon Java False. .NET and Java are very different. Platform

Re: How to escape the character # in a string

2007-06-05 Thread Mik Muller
newVar=Replace(var,chr(35), ,ALL); or newVar=Replace(var,chr(35),chr(32),ALL); At 01:46 PM 6/5/2007, you wrote: I am trying to do the following, newVar=Replace(var,#, ,ALL); but the # is throwing errors. I have tried ## and it runs, but will not replace the # in my strings. Any

Re: How to escape the character # in a string

2007-06-05 Thread Scott Weikert
Dave Hatz wrote: I am trying to do the following, newVar=Replace(var,#, ,ALL); but the # is throwing errors. I have tried ## and it runs, but will not replace the # in my strings. Any suggestions? Maybe use the ASCII code, (35 for the pound sign, I believe)?

RE: SOT: Looking for opinions on menu functionality

2007-06-05 Thread Mik Muller
www.jetstreammedia.com Using FF. You can see the URL when you mouse-over in the status bar. Mik At 02:06 PM 6/5/2007, you wrote: Hi Mik What page were you on when you encountered the error? Thanks Jason -Original Message- From: Mik Muller [mailto:[EMAIL PROTECTED] Sent: Tuesday,

Re: why might sessions end more quickly after changing to linux/B D?

2007-06-05 Thread stylo stylo
You might also increase the session timeout I will, but the session timeout is restarted with each page load, right? so I don't think that's it. This hasn't helped. I'll be the admin section, leave the page for 5 minutes, then try to load a page and I'm kicked out. What could I possibly

RE: How to escape the character # in a string

2007-06-05 Thread lists
That did the trickthanks for all the help guys. Dave -Original Message- From: Mik Muller [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 11:08 AM To: CF-Talk Subject: Re: How to escape the character # in a string newVar=Replace(var,chr(35), ,ALL); or

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Kevin Aebig
Doug, Don't get me wrong... I understand that in some circumstances, it's nearly impossible to implement what I'm talking about, but on the same token I had the choice to either provide the quick fix, or handle it the best I could when I took over a legacy app. Now 3 years later and I'm

GoDaddy

2007-06-05 Thread Rick Root
I would like to add the following code to imageCFC: cfif server.hostingCompany eq godaddy cfthrow message=Bad Host detail=Sorry, your hosting provider sucks. ImageCFC doesn't work on GoDaddy servers. Wait for CF8 and use CFIMAGE, or get a hosting provider that supports createObject(). /cfif --

Re: why might sessions end more quickly after changing to linux/B D?

2007-06-05 Thread Jordan Michaels
Things to check: - The timeout value that's set on the server directly - The timeout value that you've set in your Application.cfm (if any) - This could also be related to network problems. Are you on a network where IP changes often? Or perhaps a wireless connection that was reset in the 5

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Paul Vernon
Out of curiosity, why is that a problem with cfhttp? Don't you think using cfhttp or any http client for that matter to perform what should essentially be a function call and handled either by a UDF or the language itself is a little bit of overkill? I guess I could always write a CFX tag in

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Robertson-Ravo, Neil (RX)
True, but if Adobe released a ColdFusion for .NET then you would have choice and granted if you couldn't use Windows (or don't) then it is out of the question! You eloquently cut out some parts of .NET v Java in my post,i never said they were the same as in identical my point is that if you write

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Brad Wood
Oh, I thought you were saying that you received an error when trying to cfhttp to a php page which returned a large number. You were just saying it seemed like overkill. I'm guessing 32-bit CF doesn't support numbers large enough for you to do the calculations directly in CF code? I guess this

RE: GoDaddy

2007-06-05 Thread Andy Matthews
So I take it that cfinvoke doesn't work in this case? -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 1:25 PM To: CF-Talk Subject: GoDaddy I would like to add the following code to imageCFC: cfif server.hostingCompany eq godaddy cfthrow

Re: GoDaddy

2007-06-05 Thread Rick Root
On 6/5/07, Andy Matthews [EMAIL PROTECTED] wrote: So I take it that cfinvoke doesn't work in this case? Nope, cfinvoke only lets you invoke components. not java objects. ImageCFC uses a whole slew of java objects and so createObject is absolutely essential. Rick

Re: SOLVED? Re: Method=GET received as POST by CF

2007-06-05 Thread Claude Schneegans
It could be that the problem is using the submit() method within JS. Glad if your problem is solved. My case is a bit different: I'm using INPUT TYPE=submit VALUE=... onClick=;return checkInput() And checkInput alwas returns explicitely true or false. However I just noticed that I have a

Re: Ignoring Application.cfc or .cfm

2007-06-05 Thread Claude Schneegans
Yep, all the way up. And to get it to ignore it, just add one in your own folder. Exactly, but if you just want this application.cfm to just do nothing, make sure it contains at least one space, because CF does not like 0 length files. -- ___ REUSE CODE!

Re: SOLVED? Re: Method=GET received as POST by CF

2007-06-05 Thread Josh Nathanson
My case is a bit different: I'm using INPUT TYPE=submit VALUE=... onClick=;return checkInput() And checkInput alwas returns explicitely true or false. That should work then. Curious to see if removing the semicolon helps - I wouldn't be surprised if that is confusing some browsers. -- Josh

RE: GoDaddy

2007-06-05 Thread Andy Matthews
Well that sucks. I was planning on using that for an upcoming project with a client planning on hosting with GoDaddy. Hope they haven't already signed up with GoDaddy. -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 1:55 PM To: CF-Talk

CFMX memory usage under load : is this normal?

2007-06-05 Thread Terry Ford
I've never actually paid much attention to CFMX's memory usage before, but I just started monitoring our memory, and I'm a little unsure whether what we're seeing is normal or not. Setup: CFMX6.1, linux ES4, 800MB Xmx. Server averages 30 templates/second. Cached queries set to 0 (same thing

RE: SOLVED? Re: Method=GET received as POST by CF

2007-06-05 Thread Dave Watts
Glad if your problem is solved. My case is a bit different: I'm using INPUT TYPE=submit VALUE=... onClick=;return checkInput() And checkInput alwas returns explicitely true or false. However I just noticed that I have a semi-colon right before the return statement (fossil of a former

Re: SOT: Looking for opinions on menu functionality

2007-06-05 Thread Claude Schneegans
lemme know what you guys think personally, I hate Flash menu so much that it does not make any difference the way they work ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this

RE: Using an ASP object in CF (was Re: Run PHP code inline on a Coldfusion page)

2007-06-05 Thread Kevin Aebig
Than you might just be finding yourself in quite the mess. Is this CMS only supposed to support windows users? !k -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 10:15 AM To: CF-Talk Subject: Re: Using an ASP object in CF (was Re: Run

Re: GoDaddy

2007-06-05 Thread Will Tomlinson
Just for *hits'n'giggles I setup a CF godaddy account about a year ago. Even with removing the createObject() from the equation, I think godaddy is terrible! They have a sucky website, sucky control panel, sucky support, sucky everything. Except the price. Will

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Dave Watts
Because I'm a firm believer in choice - and I find .NET restrictive and limiting. Is this solely because it requires Windows? If so, that's certainly a valid answer, but perhaps irrelevant to lots of people. What I *AM* saying, (read this part carefully) is that it limits you in your

Re: GoDaddy

2007-06-05 Thread Josh Nathanson
Just for *hits'n'giggles I setup a CF godaddy account about a year ago. Even with removing the createObject() from the equation, I think godaddy is terrible! They have a sucky website, sucky control panel, sucky support, sucky everything. I concur. I have never seen such over-the-top

Re: SOLVED? Re: Method=GET received as POST by CF

2007-06-05 Thread Claude Schneegans
I think you would be better served by using your form's onsubmit event handler to check input, instead of this. Not that easy, because I have several submit buttons, and they perform different checking depending on which one is clicked. And all buttons and functionalities are in a common

RE: GoDaddy

2007-06-05 Thread Brad Wood
Funny-- I was just reading Sean Corfield's blog on GoDaddy hosting last night... http://corfield.org/blog/index.cfm/do/blog.entry/entry/GoDaddy_and_ColdF usion_MX_7 The general consensus is that 1) Godaddy is very, very cheap. 2) You get what you pay for. The only reason I keep considering

RE: CFMX memory usage under load : is this normal?

2007-06-05 Thread Dave Watts
... but I'm wondering if this is symptomatic of a memory problem/leak somewhere ... No, as long as memory used doesn't increase over time. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training

RE: GoDaddy

2007-06-05 Thread Andy Matthews
The thing that bothers me with my client's site is that I have to click like 5 or 6 times to get to their control panel. And once I do so, I can't bookmark THAT page. I have to go through that rigmarole EVERY time I want to get in. Then it's like another 2 or 3 clicks to get to PHPMyAdmin.

RE: GoDaddy

2007-06-05 Thread Damien McKenna
-Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 3:45 PM Subject: RE: GoDaddy The only reason I keep considering godaddy is because I want unlimited (or at LEAST 5 or more) separate domains for less than 10 dollars and that just doesn't

Re: Using an ASP object in CF (was Re: Run PHP code inline on a Coldfusion page)

2007-06-05 Thread C. Hatton Humphrey
Than you might just be finding yourself in quite the mess. Is this CMS only supposed to support windows users? No, it's supposed to run on a Windows server. The editor is extremely cross-platoform (IE, NS, FF, Opera and Safari) friendly. H

RE: GoDaddy

2007-06-05 Thread Scott Stewart
It may do Adobe well to offer ColdFusion to large hosting companies at either a substantial discount or free It would get the buzz out there and make the language more accessable. -- Scott Stewart ColdFusion Developer SSTWebworks 7241 Jillspring Ct. Springfield, Va. 22152 (703) 220-2835

RE: GoDaddy

2007-06-05 Thread Ben Forta
We actually do set up special licenses and deals with hosting companies for just that reason, and we do try to make it as compelling for them as possible. But, the hosting companies need to hear demand from customers to make them want to pay attention. If you know of any that are interested, send

RE: Using an ASP object in CF (was Re: Run PHP code inline on a Coldfusion page)

2007-06-05 Thread Kevin Aebig
Than the only suggestion I have is to contact the company and see if they have any solutions to offer you. Or you can attempt to rip the editor and get it to work with just the output... than integrate it as is. Sorry, !k -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL

RE: GoDaddy

2007-06-05 Thread Bader, Terrence C CTR MARMC, 231
http://www.crystaltech.com/cfmx.aspx 25 domains at $16.95 -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 15:49 To: CF-Talk Subject: RE: GoDaddy -Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: Tuesday, June

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Paul Vernon
-Original Message- From: Brad Wood [mailto:[EMAIL PROTECTED] Sent: 05 June 2007 19:39 To: CF-Talk Subject: RE: Run PHP code inline on a Coldfusion page Oh, I thought you were saying that you received an error when trying to cfhttp to a php page which returned a large number. You

RE: SOLVED? Re: Method=GET received as POST by CF

2007-06-05 Thread Dave Watts
Not that easy, because I have several submit buttons, and they perform different checking depending on which one is clicked. And all buttons and functionalities are in a common editFooter.cfm, so I don't have to worry about them when I create a form. You should be able to capture the

RE: Run PHP code inline on a Coldfusion page

2007-06-05 Thread Dan G. Switzer, II
Paul, Oh, I thought you were saying that you received an error when trying to cfhttp to a php page which returned a large number. You were just saying it seemed like overkill. Indeed. I'm guessing 32-bit CF doesn't support numbers large enough for you to do the calculations directly in CF

RE: GoDaddy

2007-06-05 Thread Andy Matthews
I think that's the plan. At least from Ben's presentation in Nashville, he mentioned there would be significant discounts to hosting companies. -Original Message- From: Scott Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 3:00 PM To: CF-Talk Subject: RE: GoDaddy It may

RE: GoDaddy

2007-06-05 Thread Andy Matthews
Just FYI. Gearhost allows up to 8 domains under one account, for $17.95 a month. It's more than $10 of course, but I like them a lot. -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 2:49 PM To: CF-Talk Subject: RE: GoDaddy -Original

Re: GoDaddy

2007-06-05 Thread Robertson-Ravo, Neil (RX)
You could market ColdFusion better to raise demand :-) 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: SOLVED? Re: Method=GET received as POST by CF

2007-06-05 Thread Claude Schneegans
No, but it's a little ambiguous, since your event handler calls the submit method if I read the thread accurately. No, it doesn't. If the onClick event returns false, the click on the submit button is cancelled, then ther is no submit, if it returns true, the submit proceeds normally. I don't

cfhttp

2007-06-05 Thread Chad Gray
Does CFHTTP show up as a browser type that could be blocked? I cannot download my Calvin and Hobbes comics anymore with the following. cfhttp method=GET url=http://images.ucomics.com/comics/ch/2007/ch070605.gif; path=#variables.path# file=calvin#day#.gif If I hit the URL:

Help getting rid of Squares in DB

2007-06-05 Thread Tom King
Hi All, I've inherited a database which has loads of squares in the middle of text - i.e incorrectly encoded quotes, and other chars which bring out this type of wierdness when displayed. They are inconsistent as to what they are, but the majority are (or were) single quotes. Any tips on

Re: cfhttp

2007-06-05 Thread J.J. Merrick
Sure does use CFHTTP Header to change the HTTP user Agent CFHTTPPARAM TYPE=CGI NAME=HTTP_USER_AGENT VALUE=Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.0.4 That should make it look like a windows based Firefox session. -J.J. On 6/5/07, Chad Gray

RE: cfhttp

2007-06-05 Thread Chad Gray
Hmmm actually never mind. It works on one of my computers but not another so I need to dig into why one computer it works and the other it does not. Thanks anyways! -Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 5:35 PM To: CF-Talk

Re: GoDaddy

2007-06-05 Thread J.J. Merrick
According to Forta the cost in a bulk license is so small that there is no reason for hosting companies to even charge a premium. On 6/5/07, Scott Stewart [EMAIL PROTECTED] wrote: It may do Adobe well to offer ColdFusion to large hosting companies at either a substantial discount or free

Re: GoDaddy

2007-06-05 Thread Josh Nathanson
According to Forta the cost in a bulk license is so small that there is no reason for hosting companies to even charge a premium. except for any additional labor costs due to having to administer CF. If a hosting company has never offered CF before, there is some learning curve. I

Sort array of structs on column?

2007-06-05 Thread Jim McAtee
I have a report to run where I query a number of different tables. I need to sort the output by date, which means I need to consolidate the queries and then sort the whole. I don't believe I can use a union, so I thought I'd throw it all into an array of structs, which I'd sort afterwards.

Re: A very unusual HTTP 500 Null Error

2007-06-05 Thread Billy Jamme
I was also receiving the very cryptic 500 NULL error; in circumstances very similar to the above. I ended up tracking this down to java.lang.String.URLDecode(), which throws a java.lang.IllegalArgumentException if a '%' character is not followed by a valid 2-digit hexadecimal number. So, for

Re: Help getting rid of Squares in DB

2007-06-05 Thread Dave l
you could run a query and copy in a smartquotes to sort by then update with normal quotes. Another BIG thank you to microcrap for those. Hi All, I've inherited a database which has loads of squares in the middle of text - i.e incorrectly encoded quotes, and other chars which bring out

ColdFusion, XML, tostring(), IE, and Microsoft.XMLDOM

2007-06-05 Thread Brad Wood
I need some help with a weird error. We have a page which does the following: It generates a CF XML object. It then uses the tostring() function to write it into a javascript variable (jsstringformated of course) Once the page reaches the browser the string is parsed back into an XML

Re: Sort array of structs on column?

2007-06-05 Thread Josh Nathanson
Is there an easy way to do something like this? I also thought about the possibility of building a new query instead of using an array, and then using a query of queries to do the sorting. Can you do something like left or inner join on the date? If all the tables have a date column, that

Re: GoDaddy

2007-06-05 Thread Rick Root
On 6/5/07, J.J. Merrick [EMAIL PROTECTED] wrote: According to Forta the cost in a bulk license is so small that there is no reason for hosting companies to even charge a premium. Yes, there absolutely is. You can pretty easily put 500 php web sites on a single box without too much trouble.

Re: GoDaddy

2007-06-05 Thread James Holmes
We run over 300 sites on a single Sun SPARC and we are still coping with the load after some JVM tuning (it runs much better than some hosts I've been with, for example). Having said that, we are expanding this to plan for growth and provide high availability. On 6/6/07, Rick Root [EMAIL

Re: CFMX memory usage under load : is this normal?

2007-06-05 Thread James Holmes
Yes this is normal. Our busy SPARC server has a 2.5 GB JVM and frees over 600MB when it does a GC. It does this at roughly 30 second intervals or so, like your figures show. On 6/6/07, Terry Ford [EMAIL PROTECTED] wrote: I've never actually paid much attention to CFMX's memory usage before, but

Re: GoDaddy

2007-06-05 Thread Charles Sheehan-Miles
Are you using CrystalTech, or is anyone else on the list? I'm curious about performance/reliability. Currently I'm leasing dedicated servers, which is pretty godawful expensive for the number of sites I'm maintaining. I run about 12 sites, all of which use the same code (the particular website

Re: CFMX memory usage under load : is this normal?

2007-06-05 Thread Terry Ford
Thanks. I guess the developer in me isn't quite comfortable with so much temporary object creation and destruction. CFMX pools db connections and threads; why not pool query objects, instead of instantiating new ones on each request? Looks like the JRE creates and destroys new query objects

Re: GoDaddy

2007-06-05 Thread Rick Root
On 6/5/07, Charles Sheehan-Miles [EMAIL PROTECTED] wrote: Are you using CrystalTech, or is anyone else on the list? I'm curious about I used crystaltech once. I installed a file manager on my shared hosting account (like CFFM, but a long time ago). I pointed it to C:\ as the root folder.

Re: GoDaddy

2007-06-05 Thread J.J. Merrick
Yeah, I haven't done a site that has gone on shared hosting in like... hmm 3 years maybe(on Godaddy no less). Most of my apps are on a dedicated box minimum so yeah I am not too worried about shared hosting :-) I was just repeating what Forta said at the Nashville Scorpio stop. -J.J. On 6/5/07,

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread John Paul Ashenfelter
On 6/5/07, Doug Bezona [EMAIL PROTECTED] wrote: C. This brings us back to the question... what makes this a good idea? Why overly complicate something? While it may not be common, there are a lot of large organizations out there with multiple applications in multiple languages. Having

Re: Run PHP code inline on a Coldfusion page

2007-06-05 Thread James Holmes
The manual says PHP doesn't support unsigned integers either... http://www.php.net/manual/en/language.types.integer.php On 6/6/07, Paul Vernon wrote: It's all to do with signed and unsigned integers and the fact the CF operates using signed integers whereas PHP uses unsigned integers. If CF

  1   2   >