Re: Query Results sent from search engines CGI variable?

2010-06-01 Thread Wil Genovese
Try using cfdump to output the CGI scope. Then you will be able to see all the CGI variable available to you. http://www.uxbinternet.com > > > > > > > > ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.co

Re: Query Results sent from search engines CGI variable?

2010-06-01 Thread Barney Boisvert
g the requested page present a list of other items > from their site matching an internal search result using that criteria. > > I know that many search engines send the original search query over to the > website I am assuming in the header because I can obtain that information > from

RE: Query Results sent from search engines CGI variable?

2010-06-01 Thread Justin Scott
> What I don't know is if it is available in > the CGI variables Cold Fusion can get from IIS6. The few times I've had to do this I parsed out the original query from the CGI.HTTP_Referer variable (URL string of the page that linked to yours). The format is slightly different depending on which e

RE: Query Results sent from search engines CGI variable?

2010-06-01 Thread Che Vilnonis
o: cf-talk Subject: Query Results sent from search engines CGI variable? I have a client who wants to make their site more user friendly when someone is sent to them from a search engine. What they want is when someone comes from a search engine link that we obtain the original search query (if

Query Results sent from search engines CGI variable?

2010-06-01 Thread UXB Internet
other items from their site matching an internal search result using that criteria. I know that many search engines send the original search query over to the website I am assuming in the header because I can obtain that information from the web-server log reports. What I don't know is if

Anyone using CF for ranking websites on search engines?

2010-01-08 Thread Rick Faircloth
Hi, all. I've been using Advanced Web Ranking for a few years, and while it works well, I'd like to expand on its capabilities, well, its output, anyway. I was wondering if anyone has been using CF to rank websites according to keywords/keyphrases, particularly on Google, Yahoo, and MSN/

application.log, search engines, and variables

2007-10-24 Thread Mike Appenzellar
I am having some instability issues with my coldFusion server. What I think is happening is that search enginge bots are going through pages that require a variable for example but being it doesn't have it, it creates an error that say ID isn't defined for example. This fills up application.log

application.log, search engines and url variables...

2007-10-24 Thread Mike Appenzellar
I am having some instability issues with my coldFusion server. What I think is happening is that search enginge bots are going through pages that require a variable for example but being it doesn't have it, it creates an error that say ID isn't defined for example. This fills up application.loga

application.log, search engines and url variables...

2007-10-24 Thread Michael Appenzellar
I am having some instability issues with my coldFusion server. What I think is happening is that search enginge bots are going through pages that require a variable for example but being it doesn't have it, it creates an error that say ID isn't defined for example. This fills up application.log

Re: OT: Search Engines & the indexing of javascript popup windows

2007-01-05 Thread James Holmes
You would have to do it in Javascript, detecting if the page has an opener. On 1/6/07, Che Vilnonis <[EMAIL PROTECTED]> wrote: > Is there logic that can determine whether a page is rendered as a Javascript > popup window (with no page controls) vs. a regular html page? Perhaps that > would work??

RE: Search Engines & the indexing of javascript popup windows

2007-01-05 Thread Che Vilnonis
PROTECTED] Sent: Friday, January 05, 2007 5:01 PM To: CF-Talk Subject: RE: Search Engines & the indexing of javascript popup windows > Nope. Oh well, it seems to work in all browsers except IE. This will work in both IE7 and Firefox: if (window.opener == null || window.opener == undefined) ..

RE: Search Engines & the indexing of javascript popup windows

2007-01-05 Thread Dave Watts
> Nope. Oh well, it seems to work in all browsers except IE. This will work in both IE7 and Firefox: if (window.opener == null || window.opener == undefined) ... Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instructi

RE: Search Engines & the indexing of javascript popup windows

2007-01-05 Thread Che Vilnonis
Nope. Oh well, it seems to work in all browsers except IE. That's better than where I was before. Thanks for your help. ~Che -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, January 05, 2007 4:21 PM To: CF-Talk Subject: RE: Search Engines & the in

RE: Search Engines & the indexing of javascript popup windows

2007-01-05 Thread Dave Watts
> The problem is that in IE, I still get the Close Window > button on the indexed popup page that comes from Google > instead of getting the hyperlink to purchase it from > 'MyDomain.com'. I'll try removing the escape slashes. An explicit comparison would probably work in both, then: if (windo

RE: Search Engines & the indexing of javascript popup windows

2007-01-05 Thread Che Vilnonis
ng to you. http://www.shaftek.org/blog/archives/000300.html ~Che -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, January 05, 2007 3:57 PM To: CF-Talk Subject: RE: Search Engines & the indexing of javascript popup windows > Dave, using your code, what I have below w

RE: Search Engines & the indexing of javascript popup windows

2007-01-05 Thread Dave Watts
> Dave, using your code, what I have below works in Firefox, > but not IE. Any ideas? Thanks a bunch, Che. > >