Re: [PHP] Search engines and cookies

2008-04-07 Thread tedd
At 3:29 PM +0200 4/7/08, Emil Edeholt wrote: Hi, Do you guys how search engines like cookies? One site I'm working on now requires the user to select which region he/she is from on the start page. That value is stored in a cookie. So without cookies you can't get past the start page. Does thi

Re: [PHP] Search engines and cookies

2008-04-07 Thread Evert Lammerts
Search engines won't come past that page. How about setting a default region when a user enters a different page then your main page? Daniel Brown wrote: On Mon, Apr 7, 2008 at 9:29 AM, Emil Edeholt <[EMAIL PROTECTED]> wrote: Hi, Do you guys how search engines like cookies? One site I'm w

Re: [PHP] Search engines and cookies

2008-04-07 Thread Daniel Brown
On Mon, Apr 7, 2008 at 9:29 AM, Emil Edeholt <[EMAIL PROTECTED]> wrote: > Hi, > > Do you guys how search engines like cookies? One site I'm working on now > requires the user to select which region he/she is from on the start page. > That value is stored in a cookie. So without cookies you can't g

[PHP] Search engines and cookies

2008-04-07 Thread Emil Edeholt
Hi, Do you guys how search engines like cookies? One site I'm working on now requires the user to select which region he/she is from on the start page. That value is stored in a cookie. So without cookies you can't get past the start page. Does this leave the search engines at the start page?

Re: [PHP] Search Engines and Last-Modified Header

2003-05-29 Thread Manuel Lemos
Hello, On 05/28/2003 11:48 PM, Olinux wrote: To make sure that google re-indexes every month. I have thought of sending a last modified header using year/month/day of article and a random hour/minute/second. but if this random hour/month/second is "earlier" than the one already indexed it does not

Re: [PHP] Search Engines and Last-Modified Header (was: Variables don't pass...)

2003-05-29 Thread olinux
I think this is very important for dynamic site developers to understand. I'm very interested in learning more about this and I think we could all benefit from anyone with solid search engine experience. I run a site with about 18,000 news articles. They are stored in database and dynamically gene

[PHP] Search Engines and Last-Modified Header (was: Variables don't pass...)

2003-05-29 Thread Wendell Brown
On Wed, 28 May 2003 09:31:11 -0500, Jay Blanchard wrote: >I wouldn't go as far as using the auto_prepend_file. Neither would I in this case Jay.It was simply an example of what could be done, not necessarily what SHOULD be done. I did however, use auto_prepend_file in a .htaccess file for a

RE: [PHP] PHP search engines

2002-11-17 Thread Khalid El-Kary
hi, It depends on the data storage system you use, and the more you get deeper with it the more you get it more customized for your own site, i mean that when you do it with the natural PHP APIs it's better rather than obtaining a ready-made search system, however if you want to use a ready-mad

RE: [PHP] PHP search engines

2002-11-17 Thread Richard Pijnenburg
11:59 AM > To: [EMAIL PROTECTED] > Subject: [PHP] PHP search engines > > So I would like to make a search engine for my site. Can you use PHP to > do this? Or is another language/application/whatever more appropriate?? > If so, can you give me links to where I can find

Re: [PHP] PHP search engines

2002-11-17 Thread [EMAIL PROTECTED]
Hello! PS> So I would like to make a search engine for my site. Can you use PHP to PS> do this? Or is another language/application/whatever more appropriate?? PS> If so, can you give me links to where I can find information on this PS> topic. http://php.net/mnogo http://mnogosearch.org ===

[PHP] PHP search engines

2002-11-17 Thread Phil Schwarzmann
So I would like to make a search engine for my site. Can you use PHP to do this? Or is another language/application/whatever more appropriate?? If so, can you give me links to where I can find information on this topic. Thanks!!

RE: [PHP] Search Engines

2001-09-23 Thread Don Read
On 23-Sep-2001 Heidi Belal wrote: > Hi All, > this may be a bit off topic, but i need/advise on > where and how i can register a site in the top search > engines. I know there are all these sites where you > can do it but do you have recommendations? > My other question is, why do we have to pa

Re: [PHP] Search Engines

2001-08-06 Thread rm
One of best tutorials around can be found at: http://www.northernwebs.com/set/ rm __ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/ -- PHP General Mailing List (http://www.php.

Re: [PHP] Search Engines

2001-08-06 Thread Tim
The web site http://www.searchenginewatch.com is highly recommended. :) I believe that some search engines may not grok .php files properly, but that may be old information, given the amount of PHP out there these days. All of my clients sites that I run use .html as a PHP extension, so that's n

[PHP] Search Engines

2001-08-06 Thread Tom Carter
Hi All, Does anyone have any experience with registering sites on the major search engines? I have a number of questions I hope to find help with (and please do excuse that not all of them are directly PHP related) -Do search engines treat .html and .php files differently in caching etc? -I inc

[PHP] search engines

2001-07-28 Thread Jon Yaggie
it is common now that search engines use xml respondses to affiliate requests for information. this is fine in that i can process the xml. my concern is the sending and recieving of data. how is is done? the current project i have to parse a gigantic url with xml in it and send this. but h

Re: [PHP] Search engines and mod_rewrite

2001-05-13 Thread Steve
Tom, I can't be sure, since I'm not too knowledgeable with this, but I would think this would work just fine. The search engine should be seeing the URL just as the user would. Further, a site I know does a similar trick (though I'm not sure they use mod_rewrite) where /users/username is conver

[PHP] Search engines and mod_rewrite

2001-05-13 Thread Tom Carter
hi all, On one of my sites we make extensive use of variable passed through the url, particullarly for browsing the main content of the site which is organised into main and sub categories, eg browse.php?maincat=Weather&subcat=sunny kind of thing. I understand from colleagues who know much on th

[PHP] Search Engines

2001-04-02 Thread Geoff Caplan
Steve, You clearly know your stuff about search engines. I was planning to use the header: header("Expires: " . gmdate("D, d M Y H:i:s") . " GMT"); to ensure that pages are not cached in the client. But reading your excellent contribution, I was wondering whether a search bot would see this a

Re: [PHP] Search Engines

2001-04-01 Thread Steve Werby
"Joe Montiel" <[EMAIL PROTECTED]> wrote: > I am new to the list and to php...I would like to know how php does with the > major search engines. Do I need to do something extra to make it work? Will > it index if I am pulling my content from text files? PHP produces HTML output which is sent to a

Re: [PHP] Search Engines

2001-04-01 Thread Matt Friedman
- From: "Joe Montiel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, April 01, 2001 8:52 PM Subject: [PHP] Search Engines > Hello, > > I am new to the list and to php...I would like to know how php does with the > major search engines. Do I need to

[PHP] Search Engines

2001-04-01 Thread Joe Montiel
Hello, I am new to the list and to php...I would like to know how php does with the major search engines. Do I need to do something extra to make it work? Will it index if I am pulling my content from text files? (If this is in an archive somewhere, point me to it). Thank you! Joe -- PHP Gen

[PHP] Search Engines?

2001-03-15 Thread Wee Chua
Hi everyone, Could any one tell me what is the search engine you always use? Thank. Calvin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] Search Engines and PHP

2001-02-15 Thread Mark Maggelet
On Tue, 23 Jan 2001 13:33:00 +0100, Sander Pilon ([EMAIL PROTECTED]) wrote: >> >> >If you want to be totally searchengine-safe, do not use variables >>on the >> >url, do not rely on cookies and do not rely on POST variables >> for the pages >> >you want to have the searchengine spider. >> >> How t

Re: [PHP] Search Engines and PHP

2001-01-23 Thread Joe Stump
You might want to look at Jeremy Brands VERY useful "variables from uri" function that can be found at http://www.nirvani.net/software/ I use this religiously and am quite pleased with it. --Joe On Tue, Jan 23, 2001 at 02:19:46PM -0500, Kristofer Widholm wrote: > At 13.33 +0100 01-01-23, Sande

RE: [PHP] Search Engines and PHP

2001-01-23 Thread Kristofer Widholm
At 13.33 +0100 01-01-23, Sander Pilon poked the keyboard as follows: > > >> >If you want to be totally searchengine-safe, do not use variables on the >> >url, do not rely on cookies and do not rely on POST variables >> for the pages >> >you want to have the searchengine spider. >> >> How the

RE: [PHP] Search Engines and PHP

2001-01-23 Thread Sander Pilon
> > >If you want to be totally searchengine-safe, do not use variables on the > >url, do not rely on cookies and do not rely on POST variables > for the pages > >you want to have the searchengine spider. > > How the heck do you build a dynamic site without URL variables, > cookies, or POST variabl

Re: [PHP] Search Engines and PHP

2001-01-23 Thread Christian Reiniger
On Tuesday 23 January 2001 09:23, Kristofer Widholm wrote: > >If you want to be totally searchengine-safe, do not use variables on > > the url, do not rely on cookies and do not rely on POST variables for > > the pages you want to have the searchengine spider. > > How the heck do you build a dynam

RE: [PHP] Search Engines and PHP

2001-01-23 Thread Ernest E Vogelsinger
At 09:23 23.01.2001, Kristofer Widholm said: [snip] >>If you want to be totally searchengine-safe, do not use variables on the >>url, do not rely on cookies and do not rely on POST variables for the pages >>you want to have the searchengine spider. > >How th

RE: [PHP] Search Engines and PHP

2001-01-23 Thread Kristofer Widholm
>If you want to be totally searchengine-safe, do not use variables on the >url, do not rely on cookies and do not rely on POST variables for the pages >you want to have the searchengine spider. How the heck do you build a dynamic site without URL variables, cookies, or POST variables? Kristofer

RE: [PHP] Search Engines and PHP

2001-01-22 Thread Sam Leibowitz
Sam -Original Message- From: Sander Pilon [mailto:[EMAIL PROTECTED]] Sent: Monday, January 22, 2001 9:51 AM To: Jamie; [EMAIL PROTECTED] Subject: RE: [PHP] Search Engines and PHP > > I was wondering if anyone can enlighten me about the ability of search > engines to read and list PHP

RE: [PHP] Search Engines and PHP

2001-01-22 Thread Sander Pilon
> > I was wondering if anyone can enlighten me about the ability of search > engines to read and list PHP pages. I have been told that because PHP > produces a dynamic html page (i.e. one that possibly outputs > different HTML > for each hit or request) that they are not easily added to search en

[PHP] Search Engines and PHP

2001-01-22 Thread Jamie
I was wondering if anyone can enlighten me about the ability of search engines to read and list PHP pages. I have been told that because PHP produces a dynamic html page (i.e. one that possibly outputs different HTML for each hit or request) that they are not easily added to search engines (if th