RE: meta tag location

2010-01-07 Thread Kevin Parker
If you are putting them in application.cfm then they will be the same for all pages - some search engines might see this as metadata spamming and may penalise you - notwithstanding that I think Google does not rely on metadata because people tell fibs in metadata but not in the page content so

Adult ColdFusion Websites

2010-01-07 Thread Phillip Vector
Does anyone know of a hosting company that allows adult websites (a store) that has ColdFusion and allows cffile and such? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion

Re: Is it possible for a ColdFusion web service method to return an object?

2010-01-07 Thread Ian Skinner
Using some of Leigh's suggestions I am now successfully returning an object as I expected to be able to do. But there is still some minor wierdness. This code is now working mostly as I would expect it to, accept for some strange reason when the nested myObject.cfc is called from the

form.FieldNames

2010-01-07 Thread Chad Gray
How is the order of the elements in #FORM.fieldNames# determined? Could it be different and not well structured? Like if I have a form with text inputs named foo1, foo2, foo3. Will #FORM.fieldNames# always be: Foo1,foo2,foo3? Or could it be ordered different? Thanks, Chad

Re: meta tag location

2010-01-07 Thread Dave Watts
From my research on several large commerce websites I have worked on, Google does not even use the Meta Description, page Title or URL for page rank or position. In my own experience, the title is used for page rank, but I can't tell if it affects relevance. Page rank and relevance are, of

Re: form.FieldNames

2010-01-07 Thread Barney Boisvert
I would expect the order to be the same as the order that the fields are submitted to the server (which, in turn, should be the same as the DOM order of the form elements), but if I wouldn't rely on that behaviour. If you need them in a specific order, best to order them yourself on the server.

RE: meta tag location

2010-01-07 Thread Jacob
The title tag is not a meta tag. Meta tags are meta name= , not title/title. Meta description does nothing for ranking. It helps with click troughs. -Original Message- From: Terry Troxel [mailto:te...@it-werks.com] Sent: Wednesday, January 06, 2010 9:49 PM To: cf-talk Subject:

Re: form.FieldNames

2010-01-07 Thread Qing Xia
Additionally, if your form consists of radio buttons which only exist if users choose something, then your fieldnames list can be out of order when those radio button fields go missing. On Thu, Jan 7, 2010 at 11:23 AM, Barney Boisvert bboisv...@gmail.comwrote: I would expect the order to be

RE: meta tag location

2010-01-07 Thread Jacob
Fresh, unique content and quality backlinks... that is 98% of the battle. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Thursday, January 07, 2010 8:22 AM To: cf-talk Subject: Re: meta tag location From my research on several large commerce websites I have

RE: form.FieldNames

2010-01-07 Thread Chad Gray
Thanks for the insight guys. I will use listSort() before processing the form.FieldNames. This is better than relying on DOMs and such to do the ordering. Chad -Original Message- From: Qing Xia [mailto:txiasum...@gmail.com] Sent: Thursday, January 07, 2010 11:42 AM To: cf-talk

Re: meta tag location

2010-01-07 Thread Jerry Johnson
Google doesn't use the keywords metatag http://googlewebmastercentral.blogspot.com/2009/09/google-does-not-use-keywords-meta-tag.html But... http://googlewebmastercentral.blogspot.com/2007/09/improve-snippets-with-meta-description.html Good explanation on what it does with each meta tag

Re: form.FieldNames

2010-01-07 Thread Dave Watts
How is the order of the elements in #FORM.fieldNames# determined?  Could it be different and not well structured? Like if I have a form with text inputs named foo1, foo2, foo3. Will #FORM.fieldNames# always be: Foo1,foo2,foo3? Or could it be ordered different? Structures are

I am just not understanding how to make a web service.

2010-01-07 Thread Ian Skinner
my web service. cfcomponent cfproperty name=id default=10 type=numeric cfset variables.id = 10 cffunction name=setId access=remote returntype=void cfargument name=id type=numeric required=yes cfset variables.id = arguments.id /cffunction cffunction

jquery javascript coldfusion.navigate cflayout cfdiv

2010-01-07 Thread David Mineer
We cannot get a simple jquery function to work using coldfusion.navigate, cflayout and a cfdiv. One of those 3 or a combination is causing us fits. page 1: checkbox2.cfm -- script src=

Re: I am just not understanding how to make a web service.

2010-01-07 Thread Dave Watts
Both outputs are outputting the same value of 10.  The web service does not seem to be maintaining state from one method call to another. Right! Web service calls don't maintain state by default. You have to manage state yourself. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

Re: jquery javascript coldfusion.navigate cflayout cfdiv

2010-01-07 Thread Martin Franklin
Have you tried including the jQuery library on target page? - Original Message - From: David Mineer min...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: Thursday, January 07, 2010 12:09 PM Subject: ***SPAM*** jquery javascript coldfusion.navigate cflayout cfdiv We cannot get

Re: I am just not understanding how to make a web service.

2010-01-07 Thread Dave Watts
Both outputs are outputting the same value of 10.  The web service does not seem to be maintaining state from one method call to another. Right! Web service calls don't maintain state by default. You have to manage state yourself. To be more specific to my own reply, when you invoke a web

Re: I am just not understanding how to make a web service.

2010-01-07 Thread Ian Skinner
If I am understanding Dave correctly. A web service component does not maintain state natively. Thus information stored in the 'this' and 'variables' scope of a component are not maintained from one call to another. But the web service component can access the other cross request scopes

Re: jquery javascript coldfusion.navigate cflayout cfdiv

2010-01-07 Thread David Mineer
It was on the target page (the page that is called by coldfusion.navigate, checkbox2.cfm) Moving it to the parent page (checkboxtest.cfm) actually gets rid of the error message, but the function does not work. On Thu, Jan 7, 2010 at 12:30 PM, Martin Franklin ma...@assetresearch.comwrote:

Re: jquery javascript coldfusion.navigate cflayout cfdiv

2010-01-07 Thread Qing Xia
I am a jQuery newbie so I definitely feel your pain. One method that has worked for me is to the bottom-up approach. Start with a bare-bone simple form with just the jQuery stuff and then add the other stuff you want in, one by one. Make sure to also strip down your CSS file to just those

Re: I am just not understanding how to make a web service.

2010-01-07 Thread Dave Watts
A web service component does not maintain state natively.  Thus information stored in the 'this' and 'variables' scope of a component are not maintained from one call to another. Right. But the web service component can access the other cross request scopes such as server, application and

CFHTTP wierdness

2010-01-07 Thread Jeff Langevin
So I've got a production and a live server. Both running CF8, Win 2003 Server Standard Ed, IIS6. Both have the same code calling a remote, non-CF-based web service via a cfhttp call to an https URL. We are getting sporadic Connection Failure messages from cfhttp. This clearly isn't the old

Re: jquery javascript coldfusion.navigate cflayout cfdiv

2010-01-07 Thread David Mineer
The answer came from the jedi master himself Ray Camden: if you put the click handler in the root document, and switch it to Live(), then it will work. So changing the event handler to $(#checkboxall).live(click,function() { Makes it work. Even Ray was a little surprised that Live()

Mail directory locked

2010-01-07 Thread Michael Dinowitz
Here's one that was supposed to be solved in earlier versions of ColdFusion. I'm using ColdFusion 8 and every time the system tries to send an email, the following error is generated: An exception occurred when setting up mail server parameters. This exception was caused by:

Re: I am just not understanding how to make a web service.

2010-01-07 Thread Ian Skinner
On 1/7/2010 12:48 PM, Dave Watts wrote: Not necessarily right. Some web service clients will pass cookies properly. I believe that CF does this, so if you have your application set to use cookies with session management, your CF client should work fine. How would this work? Adding a

Re: I am just not understanding how to make a web service.

2010-01-07 Thread Dave Watts
Shows me getting a new session state with each call.  Is there something I need to do so that the session cookies are passed with the web service request? Is the web service in a directory that has session management enabled in Application.cfm/cfc? Dave Watts, CTO, Fig Leaf Software

Re: Mail directory locked

2010-01-07 Thread Dave Watts
Here's one that was supposed to be solved in earlier versions of ColdFusion. I'm using ColdFusion 8 and every time the system tries to send an email, the following error is generated: An exception occurred when setting up mail server parameters. This exception was caused by:

RE: CFHTTP wierdness

2010-01-07 Thread brad
Hmm, it almost sounds like an intermittent network problem. Out of curiosity what if you set up a cfexecute to capture the results of a ping command to the remote server at the time it failed. If it turns out to be something low-level like that you might save some time trouble CFML that is just

RE: Mail directory locked

2010-01-07 Thread brad
I don't have any direct experience with that error, but I can suggest a tool such as filemon (looks like it's been rolled into process monitor now) to try and find what process is holding the locks at least. It might be a bit of a needle in the hay, but it's a start. Also, pulling a full thread

RE: I am just not understanding how to make a web service.

2010-01-07 Thread brad
In my experience CF has not returned cookies to web service calls-- at least when calling them from cfhttp that is. If you can't get createObject or cfinvoke to work, you can check out this post which shows you how to collect and return cookies manually if you are consuming a web service with

RE: Mail directory locked

2010-01-07 Thread brad
Sorry, I forgot to paste the link. http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx ~Brad Original Message Subject: RE: Mail directory locked From: b...@bradwood.com Date: Thu, January 07, 2010 4:49 pm To: cf-talk cf-talk@houseoffusion.com I don't have any

Re: I am just not understanding how to make a web service.

2010-01-07 Thread Ian Skinner
On 1/7/2010 2:13 PM, Dave Watts wrote: Is the web service in a directory that has session management enabled in Application.cfm/cfc? Yes, I have a successful session scope. But the state is not being maintained. Every request from the consuming CFML file is generating a new session

Re: Adult ColdFusion Websites

2010-01-07 Thread Mike Kear
Yes, we do, provided the site meets our TOS (the content is legal in your jurisdiction and also in California, and in Australia, and doesn't breach copyrights of others.)(We campaign for musician's and songwriters royalty rights, so we cant have any of our clients joining the 'other side'.)

CFMEDIAPLAYER Issues

2010-01-07 Thread j...@videotex.net j...@videotex.net
We have upgraded to CF9 and I'm trying to use the CFMEDIAPLAYER rather than the Wimpy Wasp player we have been using on CF8 and earlier. However, it seems like CFMEDIAPLAYER has some major issues and limitations. In IE (versions 8, 7 and 6), for example, it ignores the hidetitle=true which