A complete search system for a WEB site.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Carlos Eduardo Peralta

    A complete search system for a WEB site.

    Hello PHP friends:

    I must to "tell you": i earn money with a php script. I have made a
    site: "www.irrigacion .gov.ar" that have a search system base on a
    series of php scripts call "phpdig plus". This search system just can
    search for a word or couples of that words.... but not for a prashe.

    I want to know if you know a search system that can search for a
    prashe like google: "this is the prashe that i search" and think like
    that...

    I another way, a search system that can make an index without make the
    HTTPD (APACHE) "go to the moon".


    Thank you in advance.
    P.S.: SWING?
  • jerry gitomer

    #2
    Re: A complete search system for a WEB site.

    Carlos Eduardo Peralta wrote:[color=blue]
    > Hello PHP friends:
    >
    > I must to "tell you": i earn money with a php script. I have made a
    > site: "www.irrigacion .gov.ar" that have a search system base on a
    > series of php scripts call "phpdig plus". This search system just can
    > search for a word or couples of that words.... but not for a prashe.
    >
    > I want to know if you know a search system that can search for a
    > prashe like google: "this is the prashe that i search" and think like
    > that...
    >
    > I another way, a search system that can make an index without make the
    > HTTPD (APACHE) "go to the moon".
    >
    >
    > Thank you in advance.
    > P.S.: SWING?[/color]

    Look into the unix grep command. It can do searches such as

    grep "find this phrase" [file-list]

    You can find the source code for the open source version and
    extract the actual search from the code.

    HTH
    Jerry

    Comment

    • Peter Albertsson

      #3
      Re: A complete search system for a WEB site.

      You can have google to index your site, and than let your search engine use
      google as backend.

      // Peter


      "Carlos Eduardo Peralta" <ceperaltamza@h otmail.com> wrote in message
      news:5cb19df8.0 503190013.7c877 9e2@posting.goo gle.com...[color=blue]
      > Hello PHP friends:
      >
      > I must to "tell you": i earn money with a php script. I have made a
      > site: "www.irrigacion .gov.ar" that have a search system base on a
      > series of php scripts call "phpdig plus". This search system just can
      > search for a word or couples of that words.... but not for a prashe.
      >
      > I want to know if you know a search system that can search for a
      > prashe like google: "this is the prashe that i search" and think like
      > that...
      >
      > I another way, a search system that can make an index without make the
      > HTTPD (APACHE) "go to the moon".
      >
      >
      > Thank you in advance.
      > P.S.: SWING?[/color]


      Comment

      Working...