Re: [PHP] PHP site search broken?

2012-12-05 Thread Daniel Brown
On Tue, Dec 4, 2012 at 3:56 PM, Paul M Foster pa...@quillandmouse.com wrote:
 Is it just me, or is the search feature on php.net broken?

 When I enter a full search term (known good function name) and then hit
 the arrow, it brings me back to the generic search page. If I enter a
 partial search term and then click on one of the suggested
 completions, it usually (not always) does the same thing. Etc.

It's probably a legitimate issue.  I made some changes last week
to the DNS and fundamental server functionality to speed things up.
We're now using a service named myracloud[1] to help with traffic and
server load for the primary web box (the main php.net / www.php.net
system), as well as static.php.net, which handles graphics and other
media.  Unfortunately, as with any major changes, there are a few
hiccups here and there for some users.  Primarily, these are in the
form of HTTP 301's; when the server issues a redirect order, sometimes
the data isn't being sent along with it.  We're working to resolve the
issues; I just made one moderately-sized commit to hopefully repair a
lot of the issues, and will be making at least one more shortly.

If you or anyone else reading this continue to experience issues,
please submit them as bugs at https://bugs.php.net/ and zip me a quick
email to bring it to my attention.

^1: https://myracloud.com/en/?_locale=en

-- 
/Daniel P. Brown
Network Infrastructure Manager
http://www.php.net/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] PHP site search broken?

2012-12-04 Thread Paul M Foster
Is it just me, or is the search feature on php.net broken?

When I enter a full search term (known good function name) and then hit
the arrow, it brings me back to the generic search page. If I enter a
partial search term and then click on one of the suggested
completions, it usually (not always) does the same thing. Etc.

Paul

-- 
Paul M. Foster
http://noferblatz.com
http://quillandmouse.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] PHP site search broken?

2012-12-04 Thread Jim Lucas

On 12/04/2012 01:03 PM, Sebastian Krebs wrote:

2012/12/4 Paul M Fosterpa...@quillandmouse.com


Is it just me, or is the search feature on php.net broken?

When I enter a full search term (known good function name) and then hit
the arrow, it brings me back to the generic search page. If I enter a
partial search term and then click on one of the suggested
completions, it usually (not always) does the same thing. Etc.



Hi,

Works fine here. You could try a different mirror?


or a different browser?



Regards,
Sebastian


Paul

--
Paul M. Foster
http://noferblatz.com
http://quillandmouse.com



--
Jim Lucas

http://www.cmsws.com/
http://www.cmsws.com/examples/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Site Search for website

2004-10-18 Thread Rahul S. Johari
Ave,

I¹m working on creating a site search for our company¹s website, and am
looking for some tips. Creating the search code and the results doesn¹t seem
to be a big challenge... Indexing is something I have no clue to. I don¹t
know how to create the Index and how the keywords, summary and link is
generated automatically and goes into the database. I know there are paid
software out there which do the same, but I¹m inclined to believe there has
to be a way for PHP to read keywords off the pages in a folder and index
them. Or I may be wrong.

Any guidance appreciated.

Rahul S. Johari



Re: [PHP] Site Search for website

2004-10-18 Thread John Nichel
Rahul S. Johari wrote:
Ave,
I¹m working on creating a site search for our company¹s website, and am
looking for some tips. Creating the search code and the results doesn¹t seem
to be a big challenge... Indexing is something I have no clue to. I don¹t
know how to create the Index and how the keywords, summary and link is
generated automatically and goes into the database. I know there are paid
software out there which do the same, but I¹m inclined to believe there has
to be a way for PHP to read keywords off the pages in a folder and index
them. Or I may be wrong.
Any guidance appreciated.
Rahul S. Johari

http://us4.php.net/mnogosearch
http://www.mnogosearch.org/
--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Site Search for website

2004-10-18 Thread Greg Donald
On Mon, 18 Oct 2004 13:31:40 -0400, Rahul S. Johari
[EMAIL PROTECTED] wrote:
 I¹m working on creating a site search for our company¹s website, and am
 looking for some tips. Creating the search code and the results doesn¹t seem
 to be a big challenge... Indexing is something I have no clue to. I don¹t
 know how to create the Index and how the keywords, summary and link is
 generated automatically and goes into the database. I know there are paid
 software out there which do the same, but I¹m inclined to believe there has
 to be a way for PHP to read keywords off the pages in a folder and index
 them. Or I may be wrong.
 
 Any guidance appreciated.

You can use htdig for indexing the site:
http://www.htdig.org/

Then build a PHP wrapper around the results for display:
http://www.devshed.com/c/a/PHP/Search-This/


-- 
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] site search engine.. not dynamic

2004-05-13 Thread Marek Kilimajer
Aaron Wolski wrote:
Hi all,
 
Can anyone point me in the direction of a site search engine that reads
files in a directory find relevant results for an search term that a
person might enter on a site?
 
I need to build a site search engine but the problem is. the site isn't
dynamic (yet) so I need to read actual files to pull things together.
 
Anything out there?
 
Thanks!
 
Aaron
I recomend you use some soft like htdig for this task

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP] site search engine.. not dynamic

2004-05-13 Thread James Tusini
you could try php dig as well as htdig

-Original Message-
From: Aaron Wolski [mailto:[EMAIL PROTECTED]
Sent: 13 May 2004 01:25
To: 'PHP-General'
Subject: [PHP] site search engine.. not dynamic


Hi all,
 
Can anyone point me in the direction of a site search engine that reads
files in a directory find relevant results for an search term that a
person might enter on a site?
 
I need to build a site search engine but the problem is. the site isn't
dynamic (yet) so I need to read actual files to pull things together.
 
Anything out there?
 
Thanks!
 
Aaron
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] site search engine.. not dynamic

2004-05-12 Thread Aaron Wolski
Hi all,
 
Can anyone point me in the direction of a site search engine that reads
files in a directory find relevant results for an search term that a
person might enter on a site?
 
I need to build a site search engine but the problem is. the site isn't
dynamic (yet) so I need to read actual files to pull things together.
 
Anything out there?
 
Thanks!
 
Aaron
 


[PHP] Site Search

2002-07-28 Thread Michael Hall


I'm wondering what is a good general approach to enabling site-wide
searches on any topic on a 100% PHP-powered portal-type site for a
tertiary institution (yet to be built). Most if not all content will be
contained in a database, spread across potentially many different
tables. 

How can all this stuff be searched efficiently and effectively to
hopefully find the punter what they're looking for? Searching the
sometimes lengthy main content fields (eg. an academic paper) in every
table of the entire database for every search doesn't seem like the way to
go. But apart from attempting to add some kind of subjective search
term fields to the data, I can't see how else it can be done.

TIA


MICHAEL HALL Web Development Officer
Batchelor Institute of Indigenous Tertiary Education
Work: [EMAIL PROTECTED] (08) 8951 8314
Home: [EMAIL PROTECTED] (08) 8953 1442



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Site Search

2001-09-24 Thread Sheridan Saint-Michel

I posted an example Site Search program to zend.
You can view it here
http://www.zend.com/codex.php?id=452single=1

Sheridan Saint-Michel
Website Administrator
FoxJet, an ITW Company
www.foxjet.com


- Original Message -
From: vishal khialani [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, September 21, 2001 11:14 PM
Subject: [PHP] Site Search


 Hi,
   I need to have a search on my site and was about to start working on it.
 Can anyone pls send their code if they have made one allready ?
 Thanks,
 Vishal

 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


 --
 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]


-- 
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]




[PHP] Site Search

2001-09-21 Thread vishal khialani

Hi,
  I need to have a search on my site and was about to start working on it. 
Can anyone pls send their code if they have made one allready ?
Thanks,
Vishal

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


-- 
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] Site search engine suggestion.

2001-05-23 Thread ~~~i LeoNid ~~

On 20 May 2001 09:54:53 -0700 impersonator of [EMAIL PROTECTED] (Manuel
Lemos) planted I saw in php.general:

Hello elias,

On 12-May-01 04:04:26, you wrote:

Hello guys,

I need that badly! I need a suggestion, advise, solution or whatever that
might help!

I need a Site Search script for a page that mostly have .PHP files some are
dynamic and some are not.
Basically i was using WebGlimpse but whenever I search using it, It shows
the source code of the PHP files!
So for example if i search echo , WebGlimpse displays the .PHP file source
code!

Actually, as I saw in a process of testing my by link indexer, some of
your pages have com`ments tags ?-- -- being dinamicaly created.
Thats interfere with your commenting of whole block of script. I doubt,
any (well, lets talk a opinions:) search engine is smart enough to process
such source, without being a script interpreters themself. (I don't use
_by the book_ definition of comments, as it it is practicaly not followed
by most, but your case wouldn't fit any definition) Well, since browsers
switch to script interpreter mode its begining, it'll not mix up here..

Any suggestion for a better site search program?

What I would suggest is to break your comments at the statements, creating
comments, so that these statements are non-commented, and, for search
engines, allowing that (like mine:) - exclude the mentioned statements
words from indexing.

Regards, Leonid.

PS. BTW, I run through to create you full index (with a source:( Because
there were no exclusion, it(indexer) diged a lot of unnesesary work, for
relatively small indexes. (Have to enFast my algoritm:). In case you
change your mind reg. search, I 'll keep the produced files for some days.
(And it[I] does use mySql, nor intend to [for a time being] atleast:)
Security? Are there full`y trusted maintainers?:)

-- 
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] Site search engine suggestion.

2001-05-23 Thread ~~~i LeoNid ~~

On 20 May 2001 10:17:29 -0700 impersonator of [EMAIL PROTECTED] (Alok K.
Dhir) planted I saw in php.general:

The best open source search engines I've seen/used are:

   ASPSeek http://www.aspseek.org
   Mnogoseach  http://mnogosearch.org/
   ht://dighttp://www.htdig.org

I've found that I prefer ASPseek to both mnogo and htdig...

Interesting tool, according to their description, especialy, in regard to
indexing abilities and ideas. (Although, I couldn't find description in
detiles, unlike Mnogo, which explains stuff). And some stuff there
(searching part) is  inferior to mine - although, of course - mine is not
nearly as universal, and will no became such in the nearest futer, nor
will it support databases. But for local-site-oriented indexes - the
simplicity with out too much extras could be a plus. (And outside indexing
is being developed also) It can produce data for searches right now as
well (by_links and as a test). If someone is interested the url is:
http://leo.portland.co.uk/outsource.shtml  LeoNid.

-- 
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] Site search engine suggestion.

2001-05-20 Thread Manuel Lemos

Hello elias,

On 12-May-01 04:04:26, you wrote:

Hello guys,

I need that badly! I need a suggestion, advise, solution or whatever that
might help!

I need a Site Search script for a page that mostly have .PHP files some are
dynamic and some are not.
Basically i was using WebGlimpse but whenever I search using it, It shows
the source code of the PHP files!
So for example if i search echo , WebGlimpse displays the .PHP file source
code!

Any suggestion for a better site search program?

Try HTDig with this PHP interface class:

http://phpclasses.UpperDesign.com/browse.html/package/26


Regards,
Manuel Lemos

Web Programming Components using PHP Classes.
Look at: http://phpclasses.UpperDesign.com/?[EMAIL PROTECTED]
--
E-mail: [EMAIL PROTECTED]
URL: http://www.mlemos.e-na.net/
PGP key: http://www.mlemos.e-na.net/ManuelLemos.pgp
--


-- 
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] Site search engine suggestion.

2001-05-20 Thread Alok K. Dhir

The best open source search engines I've seen/used are:

ASPSeek http://www.aspseek.org
Mnogoseach  http://mnogosearch.org/
ht://dighttp://www.htdig.org

I've found that I prefer ASPseek to both mnogo and htdig...

 -Original Message-
 From: 
 [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED].
net] On Behalf Of Manuel Lemos
 Sent: Sunday, May 20, 2001 12:53 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [PHP] Site search engine suggestion.
 
 
 Hello elias,
 
 On 12-May-01 04:04:26, you wrote:
 
 Hello guys,
 
 I need that badly! I need a suggestion, advise, solution or whatever 
 that might help!
 
 I need a Site Search script for a page that mostly have .PHP 
 files some 
 are dynamic and some are not. Basically i was using WebGlimpse but 
 whenever I search using it, It shows the source code of the 
 PHP files!
 So for example if i search echo , WebGlimpse displays the 
 .PHP file source
 code!
 
 Any suggestion for a better site search program?
 
 Try HTDig with this PHP interface class:
 
http://phpclasses.UpperDesign.com/browse.html/package/26


Regards,
Manuel Lemos

Web Programming Components using PHP Classes.
Look at: http://phpclasses.UpperDesign.com/?[EMAIL PROTECTED]
--
E-mail: [EMAIL PROTECTED]
URL: http://www.mlemos.e-na.net/
PGP key: http://www.mlemos.e-na.net/ManuelLemos.pgp
--


-- 
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]



-- 
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]




[PHP] Site search engine suggestion.

2001-05-12 Thread elias

Hello guys,

I need that badly! I need a suggestion, advise, solution or whatever that
might help!

I need a Site Search script for a page that mostly have .PHP files some are
dynamic and some are not.
Basically i was using WebGlimpse but whenever I search using it, It shows
the source code of the PHP files!
So for example if i search echo , WebGlimpse displays the .PHP file source
code!

Any suggestion for a better site search program?

-elias



-- 
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] Site search engine suggestion.

2001-05-12 Thread Ryan W. Zajicek

I use mnoGoSearch http://search.mnogo.ru/ it works great for me and I've
been using it for about a year.

Thank You

Ryan
mailto:[EMAIL PROTECTED]


-Original Message-
From: elias [mailto:[EMAIL PROTECTED]]
Sent: Saturday, May 12, 2001 12:19 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Site search engine suggestion.


Hello guys,

I need that badly! I need a suggestion, advise, solution or whatever that
might help!

I need a Site Search script for a page that mostly have .PHP files some are
dynamic and some are not.
Basically i was using WebGlimpse but whenever I search using it, It shows
the source code of the PHP files!
So for example if i search echo , WebGlimpse displays the .PHP file source
code!

Any suggestion for a better site search program?

-elias



--
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]



-- 
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] Site search engine suggestion.

2001-05-12 Thread B. van Ouwerkerk


Any suggestion for a better site search program?

I know quite a few people who really love htdig. Don't know if it's better.

Not sure how good it is handling .php files.

You could give it a try.

THink I remember a search PHP script at php.net.. or was it freshmeat.. not 
sure about name of location.

Bye,


B.


-- 
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] Site search engine suggestion.

2001-05-12 Thread Ethan Schroeder

I use udmsearch and love it.  If you want php pages searchable it does
actual http requests, so it doesn't give source code.  If you don't want php
searchable, you can configure it to ignore any file extensions you want.  It
comes with a php interface built in, also.

Ethan Schroeder
- Original Message -
From: elias [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, May 12, 2001 10:18 AM
Subject: [PHP] Site search engine suggestion.


 Hello guys,

 I need that badly! I need a suggestion, advise, solution or whatever that
 might help!

 I need a Site Search script for a page that mostly have .PHP files some
are
 dynamic and some are not.
 Basically i was using WebGlimpse but whenever I search using it, It shows
 the source code of the PHP files!
 So for example if i search echo , WebGlimpse displays the .PHP file
source
 code!

 Any suggestion for a better site search program?

 -elias



 --
 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]



-- 
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] Site search engine suggestion.

2001-05-12 Thread ~~~i LeoNid ~~

On 12 May 2001 00:04:26 -0700 impersonator of [EMAIL PROTECTED]
(elias) planted I saw in php.general:

Hello guys,I need that badly! 

Hello. 

If you wouldn't mind disclosing your site address, and the server will
allow it, I may try my php-indexer-by-links. And we will see if it'll
work. No garantee, of course, (and i didn't index .php for myself) and no
deadline promised, (4 now atleast) but if works, it could be to our mutual
benefit (testing 4 me; and index+ searcher script .php 2 you). And you
won't loose anything beside innocence (who needs it for this case:) of you
hidden site-address. 

See, how searcher works at http://leo.portland.co.uk/srch/srch.php

Leon id.

-- 
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] Site search engine suggestion.

2001-05-12 Thread Ryan W. Zajicek

Just a side not here... :)

udmSearch is now mnoGoSearch (http://search.mnogo.ru/)

Thank You

Ryan
mailto:[EMAIL PROTECTED]


-Original Message-
From: Ethan Schroeder [mailto:[EMAIL PROTECTED]]
Sent: Saturday, May 12, 2001 2:25 PM
To: elias
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] Site search engine suggestion.


I use udmsearch and love it.  If you want php pages searchable it does
actual http requests, so it doesn't give source code.  If you don't want php
searchable, you can configure it to ignore any file extensions you want.  It
comes with a php interface built in, also.

Ethan Schroeder
- Original Message -
From: elias [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, May 12, 2001 10:18 AM
Subject: [PHP] Site search engine suggestion.


 Hello guys,

 I need that badly! I need a suggestion, advise, solution or whatever that
 might help!

 I need a Site Search script for a page that mostly have .PHP files some
are
 dynamic and some are not.
 Basically i was using WebGlimpse but whenever I search using it, It shows
 the source code of the PHP files!
 So for example if i search echo , WebGlimpse displays the .PHP file
source
 code!

 Any suggestion for a better site search program?

 -elias



 --
 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]



--
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]



-- 
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] Site search engine suggestion.

2001-05-12 Thread Ethan Schroeder

Wow, thanks for the heads up =)

Ethan Schroeder

- Original Message -
From: Ryan W. Zajicek [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, May 12, 2001 12:50 PM
Subject: RE: [PHP] Site search engine suggestion.


 Just a side not here... :)

 udmSearch is now mnoGoSearch (http://search.mnogo.ru/)

 Thank You

 Ryan
 mailto:[EMAIL PROTECTED]


 -Original Message-
 From: Ethan Schroeder [mailto:[EMAIL PROTECTED]]
 Sent: Saturday, May 12, 2001 2:25 PM
 To: elias
 Cc: [EMAIL PROTECTED]
 Subject: Re: [PHP] Site search engine suggestion.


 I use udmsearch and love it.  If you want php pages searchable it does
 actual http requests, so it doesn't give source code.  If you don't want
php
 searchable, you can configure it to ignore any file extensions you want.
It
 comes with a php interface built in, also.

 Ethan Schroeder
 - Original Message -
 From: elias [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Saturday, May 12, 2001 10:18 AM
 Subject: [PHP] Site search engine suggestion.


  Hello guys,
 
  I need that badly! I need a suggestion, advise, solution or whatever
that
  might help!
 
  I need a Site Search script for a page that mostly have .PHP files some
 are
  dynamic and some are not.
  Basically i was using WebGlimpse but whenever I search using it, It
shows
  the source code of the PHP files!
  So for example if i search echo , WebGlimpse displays the .PHP file
 source
  code!
 
  Any suggestion for a better site search program?
 
  -elias
 
 
 
  --
  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]
 


 --
 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]



 --
 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]



-- 
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] Site search engine suggestion.

2001-05-12 Thread Philip Olson

You may also find this interesting :

  http://php.net/manual/en/ref.mnogo.php
  
From php changelog 4.0.5 :

  Added mnoGoSearch extension - http://search.mnogo.ru. (Sergey K)

regards,
philip



On Sat, 12 May 2001, Ethan Schroeder wrote:

 Wow, thanks for the heads up =)
 
 Ethan Schroeder
 
 - Original Message -
 From: Ryan W. Zajicek [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Saturday, May 12, 2001 12:50 PM
 Subject: RE: [PHP] Site search engine suggestion.
 
 
  Just a side not here... :)
 
  udmSearch is now mnoGoSearch (http://search.mnogo.ru/)
 
  Thank You
 
  Ryan
  mailto:[EMAIL PROTECTED]
 
 
  -Original Message-
  From: Ethan Schroeder [mailto:[EMAIL PROTECTED]]
  Sent: Saturday, May 12, 2001 2:25 PM
  To: elias
  Cc: [EMAIL PROTECTED]
  Subject: Re: [PHP] Site search engine suggestion.
 
 
  I use udmsearch and love it.  If you want php pages searchable it does
  actual http requests, so it doesn't give source code.  If you don't want
 php
  searchable, you can configure it to ignore any file extensions you want.
 It
  comes with a php interface built in, also.
 
  Ethan Schroeder
  - Original Message -
  From: elias [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Saturday, May 12, 2001 10:18 AM
  Subject: [PHP] Site search engine suggestion.
 
 
   Hello guys,
  
   I need that badly! I need a suggestion, advise, solution or whatever
 that
   might help!
  
   I need a Site Search script for a page that mostly have .PHP files some
  are
   dynamic and some are not.
   Basically i was using WebGlimpse but whenever I search using it, It
 shows
   the source code of the PHP files!
   So for example if i search echo , WebGlimpse displays the .PHP file
  source
   code!
  
   Any suggestion for a better site search program?
  
   -elias
  
  
  
   --
   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]
  
 
 
  --
  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]
 
 
 
  --
  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]
 
 
 
 -- 
 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]
 


-- 
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]




[PHP] Site Search Engine

2001-05-11 Thread elias

Hello.

I'm looking for a good Site Searching program or script..
I'm currently using http://WebGlimpse.org
But it is looking inside  my PHP files and showing their source!
ie: i search for: echo Hello
and WebGlimpse show search result as:
?
blah
blah
echo hello
.
.

basically i need something in PHP rather in whatever WebGlimpse is written
in...

-elias
http://www.eassoft.cjb.net




-- 
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]