[PHP] Re: Search engine

2005-01-20 Thread Raj Shekhar
"Rosen" <[EMAIL PROTECTED]> writes: > Hi, > Can someone recommend me a search engine script in PHP for inside one site? If you need to index through static pages phpdig can be useful for you http://www.phpdig.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

[PHP] Re: Search Engine Friendly URLs

2005-01-15 Thread Matthew Weier O'Phinney
* Josh <[EMAIL PROTECTED]>: > I am converting a site to use includes instead of a Dreamweaver template. I > want the URLs to look like this: www.my-site1234.com/contact instead of > www.my-site1234.com/default.php?p=contact. > > I found some tutorials on editing the .htaccess file but where do I f

[PHP] Re: Search engine : build a new one or use an alreadry existing one ?

2004-11-07 Thread Manuel Lemos
Hello, On 11/07/2004 09:10 PM, Robert Mena wrote: > I need to improve my current "search mecanism" but got stuck in a > dilema : build one or use an existing engine? > > My site, that uses php/smarty allows my users to browse products in a > category listing or search. Currently my search only per

Re: [PHP] Re: search engine optimization and php

2004-06-08 Thread Richard Harb
EMAIL PROTECTED] >> Sent: Wednesday, June 09, 2004 2:02 AM >> To: [EMAIL PROTECTED] >> Subject: Re: [PHP] Re: search engine optimization and php >> >> >> Hello, >> >> On 06/08/2004 12:04 PM, Aaron Wolski wrote: >> >>>Just curi

RE: [PHP] Re: search engine optimization and php

2004-06-08 Thread electroteque
On the topic of meta tags, can these be sent via the header or not ?? :\ > -Original Message- > From: Manuel Lemos [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 09, 2004 2:02 AM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Re: search engine optimization and php > &g

Re: [PHP] Re: search engine optimization and php

2004-06-08 Thread Manuel Lemos
Hello, On 06/08/2004 12:04 PM, Aaron Wolski wrote: Just curious as to how people handle search engine optimization when most of the page content is dynically built from the db. Doesn't the bots need to crawl the static pages and match your keywords to actual words in the file? Practically, only Go

RE: [PHP] Re: search engine optimization and php

2004-06-08 Thread Aaron Wolski
> -Original Message- > From: Manuel Lemos [mailto:[EMAIL PROTECTED] > Sent: June 8, 2004 10:54 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Re: search engine optimization and php > > Hello, > > On 06/08/2004 11:20 AM, Edward Peloke wrote: > > Just curio

[PHP] Re: search engine optimization and php

2004-06-08 Thread Manuel Lemos
Hello, On 06/08/2004 11:20 AM, Edward Peloke wrote: Just curious as to how people handle search engine optimization when most of the page content is dynically built from the db. Doesn't the bots need to crawl the static pages and match your keywords to actual words in the file? Practically, only G

Re: [PHP] Re: Search Engine

2003-08-01 Thread John W. Holmes
John W. Holmes wrote: DvDmanDT wrote: I use to write my own search engines... That way they get customized easier... You can write one that spiders like google... Hell, it even found my private server... And there's not a single link ther afaik.. Now, is it for web or site search? If site, just

Re: [PHP] Re: Search Engine

2003-08-01 Thread John W. Holmes
DvDmanDT wrote: I use to write my own search engines... That way they get customized easier... You can write one that spiders like google... Hell, it even found my private server... And there's not a single link ther afaik.. Now, is it for web or site search? If site, just get a MySQL table with a

[PHP] Re: Search Engine

2003-08-01 Thread DvDmanDT
I use to write my own search engines... That way they get customized easier... You can write one that spiders like google... Hell, it even found my private server... And there's not a single link ther afaik.. Now, is it for web or site search? If site, just get a MySQL table with a longtext in it

[PHP] Re: Search engine PHP

2003-02-17 Thread Lord Loh.
See mine... MySQL, PHP http://findmaan.sourceforge.net/ opensource, So you can modify as long as you give me the cridits and comply with the licence... Lord Loh -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE: Search engine PHP

2003-02-17 Thread Uttam
may be browsing through available classes will help you: http://uttam27.users.phpclasses.org/browse.html/class/22.html -Original Message- From: Andrian Ivanov [mailto:[EMAIL PROTECTED]] Sent: Monday, February 17, 2003 16:30 To: [EMAIL PROTECTED] Subject: Search engine PHP Hello, Can so

[PHP] Re: Search Engine

2002-08-15 Thread David Robley
In article <001401c244aa$d31e1b90$ff1ffea9@billsgate>, [EMAIL PROTECTED] says... > Whats wrong with this code? > > $arrSearch = explode(" ", $_REQUEST['string']); > $RSQuery = "SELECT * FROM referenzen_tbl"; > if (strlen($arrSearch) > 0) { // Überhaupt einschränken? > $Query .= " WHERE (";

[PHP] Re: Search Engine

2002-08-15 Thread Dan Koken
Sascha, From just looking at it, the code looks fine. It could be that someone entered a special character in the array like a '%' or something else illegal. Check the code I wrote. I entered a debug statement to see what was generated. This should give you some clue what is wrong with it. Yo

[PHP] Re: search engine indexing and redirects

2002-05-17 Thread Michael Virnstein
> i would have thought that server-side redirects are no problem for crawlers. That's what i would have thought too. mod_rewrite is an alternativ for virtual domains. if you request www.mydomain.com it doesn't matter to the server if you have virtual domains or mod_rewrite. both got redirected to

[PHP] Re: search engine friendly urls

2002-03-21 Thread Henrik Hansen
[EMAIL PROTECTED] (Kelly Meeks) wrote: > Does anyone have any ideas/info (or can you point me to) regarding how > to make dynamic php content more search engine friendly (losing the > '?' when dealing with url variables)? > > As a Cold Fusion convert, you could do something like this: > > ht

[PHP] Re: Search Engine

2002-01-15 Thread Philip Hallstrom
Take a look at htdig and mngosearch (which has a PHP interface). Also take a look at www.devshed.com and search for "search php" and you'll find some how-to articles. On Tue, 15 Jan 2002, Yogesh Mahadnac wrote: > Hi all! I want to develop a search engine in PHP for a portal that I'm working

[PHP] Re: "Search Engine friendly" URLs (/ instead of ? or &) not working in CGI mode

2001-09-13 Thread Richard Lynch
> ScriptAlias /php/ "C:/php/" > AddType application/x-httpd-php .php > Action application/x-httpd-php "/php/php.exe" I'm guessing that this mechanism relies on the / to determine where/when the end of a URL is... Or something like that. You may need to dig deeper into http://apache.org and see