IntraSITE Search™ Installation

Please Note: We recommend you have a good working knowledge of HTML before attempting to set up the IntraSITE Search engine. If you have trouble, please contact your webmaster or a local web services company for assistance.

After downloading and unzipping the IntraSITE Search package, complete the following steps:

1. Open up intrasite_search.php and set the following variables:

2. Open up intrasite_search.js and set the following variables:

3. Include the following on every page that you want IntraSITE Search to appear:

  1. Add the script reference for intrasite_search.js to your HTML header. e.g.:

    <head>
    <script src="/intrasite_search.js" type="text/javascript"></script>
    </head>

    NOTE: Make sure this path is correct! It should be relative to your server root. e.g.: "/subfolder1/intrasite_search.js"

  2. Add the "intrasite_style.css" style sheet to your HTML header: e.g.:

    <head>
    <link href="/intrasite_styles.css" rel="stylesheet" type="text/css" />
    </head>

    NOTE: Make sure your path is correct! It should be relative to your server root. e.g.: "/subfolder1/intrasite_styles.css"

  3. Include an input box on your page. Make sure the input box is not between form tags. Match the id of the search box to the id you set in step 2.

    <input type="text" id="search_box" />

4. Adjust intrasite_styles.css to place the search results where you want on your page.

So, for example:
.ajaxsearch_container{
position: absolute;
top: 50px;
left: 50px;
width: 400px;
height: 500px;
text-align: left;
border: 1px solid #0b548e;
z-index: 9999;
}

Might change to:

.ajaxsearch_container{
position: absolute;
top: 100px;
left: 100px;
width: 400px;
height: 500px;
text-align: left;
border: 1px solid #0b548e;
z-index: 9999;
}

 

5. Upload everything to your server. This should generally include the following files:

IntraSITE Search should now be working!