searching a website - including all new added pages

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Advo

    searching a website - including all new added pages

    Hi

    Basically, i need to write a php search function which will search all
    our pages in the directory depending on user keywords..

    the thing is, this could be difficult as we may have 8000+ dynamic
    pages (these would also need searching) plus we will be adding more and
    more of these dynamic pages (so wont have a list of page names).

    Any ideas please?

  • Jerry Stuckle

    #2
    Re: searching a website - including all new added pages

    Advo wrote:
    Hi
    >
    Basically, i need to write a php search function which will search all
    our pages in the directory depending on user keywords..
    >
    the thing is, this could be difficult as we may have 8000+ dynamic
    pages (these would also need searching) plus we will be adding more and
    more of these dynamic pages (so wont have a list of page names).
    >
    Any ideas please?
    >
    Why not just use google site search?

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • Advo

      #3
      Re: searching a website - including all new added pages


      Jerry Stuckle wrote:
      Advo wrote:
      Hi

      Basically, i need to write a php search function which will search all
      our pages in the directory depending on user keywords..

      the thing is, this could be difficult as we may have 8000+ dynamic
      pages (these would also need searching) plus we will be adding more and
      more of these dynamic pages (so wont have a list of page names).

      Any ideas please?
      >
      Why not just use google site search?
      >
      --
      =============== ===
      Remove the "x" from my email address
      Jerry Stuckle
      JDS Computer Training Corp.
      jstucklex@attgl obal.net
      =============== ===
      Well, we'd rather have our own one if possible really

      Comment

      • Jerry Stuckle

        #4
        Re: searching a website - including all new added pages

        Advo wrote:
        Jerry Stuckle wrote:
        >
        >>Advo wrote:
        >>
        >>>Hi
        >>>
        >>>Basically, i need to write a php search function which will search all
        >>>our pages in the directory depending on user keywords..
        >>>
        >>>the thing is, this could be difficult as we may have 8000+ dynamic
        >>>pages (these would also need searching) plus we will be adding more and
        >>>more of these dynamic pages (so wont have a list of page names).
        >>>
        >>>Any ideas please?
        >>>
        >>
        >>Why not just use google site search?
        >>
        >>--
        >>============= =====
        >>Remove the "x" from my email address
        >>Jerry Stuckle
        >>JDS Computer Training Corp.
        >>jstucklex@att global.net
        >>============= =====
        >
        >
        Well, we'd rather have our own one if possible really
        >
        That's really doing it the hard way.

        --
        =============== ===
        Remove the "x" from my email address
        Jerry Stuckle
        JDS Computer Training Corp.
        jstucklex@attgl obal.net
        =============== ===

        Comment

        • Karl Groves

          #5
          Re: searching a website - including all new added pages

          "Advo" <max_mischief@h otmail.comwrote in
          news:1156845997 .335826.139750@ b28g2000cwb.goo glegroups.com:
          >
          Jerry Stuckle wrote:
          >Advo wrote:
          Hi
          >
          Basically, i need to write a php search function which will search
          all our pages in the directory depending on user keywords..
          >
          the thing is, this could be difficult as we may have 8000+ dynamic
          pages (these would also need searching) plus we will be adding more
          and more of these dynamic pages (so wont have a list of page
          names).
          >
          Any ideas please?
          >
          >>
          >Why not just use google site search?
          >>
          >--
          >============== ====
          >Remove the "x" from my email address
          >Jerry Stuckle
          >JDS Computer Training Corp.
          >jstucklex@attgl obal.net
          >============== ====
          >
          Well, we'd rather have our own one if possible really
          >
          If your organization has 8000+ dynamic pages, you can probably afford a
          custom solution. If I was you, I'd look into Google Mini, or Verity
          Ultraseek



          --
          Karl Groves

          Comment

          • gbbulldog@googlemail.com

            #6
            Re: searching a website - including all new added pages

            Karl Groves wrote:
            "Advo" <max_mischief@h otmail.comwrote in
            news:1156845997 .335826.139750@ b28g2000cwb.goo glegroups.com:
            >

            Jerry Stuckle wrote:
            Advo wrote:
            Hi

            Basically, i need to write a php search function which will search
            all our pages in the directory depending on user keywords..

            the thing is, this could be difficult as we may have 8000+ dynamic
            pages (these would also need searching) plus we will be adding more
            and more of these dynamic pages (so wont have a list of page
            names).

            Any ideas please?

            >
            Why not just use google site search?
            >
            --
            =============== ===
            Remove the "x" from my email address
            Jerry Stuckle
            JDS Computer Training Corp.
            jstucklex@attgl obal.net
            =============== ===
            Well, we'd rather have our own one if possible really
            >
            If your organization has 8000+ dynamic pages, you can probably afford a
            custom solution. If I was you, I'd look into Google Mini, or Verity
            Ultraseek
            >
            >
            >
            --
            Karl Groves
            www.karlcore.com
            How're the pages stored? Are they flat files, generated by some sort of
            CMS, or is the content pulled out of a database by a "shared" php file?

            Comment

            • NC

              #7
              Re: searching a website - including all new added pages

              Advo wrote:
              >
              i need to write a php search function which will search all
              our pages in the directory depending on user keywords..
              Er, no. You need to write a search engine, with actual search being
              the easy part.

              A search engine consists of three subsystems:

              1. The crawler (aka the search bot) indexes the site (goes to the home
              page, records its contents into a storage facility, usually in both the
              original form and plain text, follows every link it can find and
              records all the pages it can reach). Usually, the crawler is written
              in a compiled language; often, it is implemented as a daemon (on Unix)
              or a service (on Windows), so it works continuously.

              2. The storage facility can be a database or a flat-file archive with a
              full-text search utility.

              3. The front end (what the uninitiated mistake for the search engine)
              takes search queries from users and searches the storage facility based
              on the search queries.

              It is considered a good practice to deploy the search engine on a
              separate physical machine optimized for this line of work. Google
              actually makes those. Google Mini in its most basic version supports
              up to 50,000 documents and costs $1,995:


              the thing is, this could be difficult as we may have
              8000+ dynamic pages (these would also need
              searching) plus we will be adding more and more
              of these dynamic pages (so wont have a list of
              page names).
              >
              Any ideas please?
              Buy a Google Mini; it's probably going to be less of a headache than
              developing your own search engine. Alternatively, try mnoGoSearch or
              phpDig (they are free, but you will still need dedicated hardware):




              Cheers,
              NC

              Comment

              Working...