) //--------------------------------------------------------------/ $sInputName = "words22"; //--------------------------------------------------------------/ // $sSearchRootDir: The root directory of the website. // It is the directory on the webserver, NOT the URL path! // // Example: $sSearchRootDir = "/u/web/rippin/image/"; // Example: $sSearchRootDir = "c:/wwwroot/"; // Example: $sSearchRootDir = "/usr/www/johnny/stuff/"; // // $sSearchRootUrlPath: The path in the URL that points to the // same root directory as above. // // Example: $sSearchRootUrlPath = "/image/"; // Example: $sSearchRootUrlPath = "/"; // Example: $sSearchRootUrlPath = "/~johnny/stuff/"; // // Please include the trailing slash. Do not use backslashes. //--------------------------------------------------------------/ $sSearchRootDir = "/u/web/rippin/Images/"; $sSearchRootUrlPath = "/Images/"; //--------------------------------------------------------------/ // Whether or not to search all of the subdirectories of the // root search direcotry. // Example: $bSpanDirs = true; //--------------------------------------------------------------/ $bSpanDirs = true; //--------------------------------------------------------------/ // The full filename of the rubic (the abbreviation listing) and // of the template on the webserver. (Not a URL PATH either!) // // Example: $sRubricFile = "/u/web/rippin/issr_rubric.php"; // Example: $sTemplateFile = "c:/wwwroot/issr_template.php"; // // If have no need for a rubric you may comment that line out. //--------------------------------------------------------------/ $sRubricFile = "/u/web/rippin/issr_rubric.php"; $sTemplateFile = "/u/web/rippin/issr_template.php"; //--------------------------------------------------------------/ // If a rubric is being used, should it translate the search // words to what the rubric specifies, or should it append // the matches in the rubric to the search? // Example: $bRubricAppend = true; //--------------------------------------------------------------/ $bRubricAppend = true; //--------------------------------------------------------------/ // Whether or not to make searches for strings ignore numbers at // the ends of strings. For example if you search for "apple" // and $bIgnoreNumbers is set to true, you will match // "apple3.gif" and if $bIgnoreNumbers is false it would not // match. // // Example: $bIgnoreNumbers = true; //--------------------------------------------------------------/ $bIgnoreNumbers = true; //--------------------------------------------------------------/ // A string of the file types to restrict the search to. // Example: $sSearchFileTypes = "(.gif)|(.jpg)|(.png)"; // // IMPORTANT: Do not put spaces outside of the parenthesis! // Comment the line out to search all file types. //--------------------------------------------------------------/ $sSearchFileTypes = "(.gif)|(.jpg)|(.png)"; //--------------------------------------------------------------/ // $sSearchExcludeBegin: A string with strings in parenthsis // separated by vertical bars "|" which contains the various // strings the search results filenames may NOT begin with. // Example: $aSearchExcludeBegin = "(tn_)|(thumb)"; // // IMPORTANT: Do not put spaces outside of the parenthesis! // // $sPrependText: A string to prepend to the filenames of all // search results. // // You may comment out the lines to disable them. //--------------------------------------------------------------/ $sSearchExcludeBegin = "(tn_)"; $sPrependText = "tn_"; //----------------------------------------------------------------------/ // End of User Customizable Section //======================================================================/ if(!defined('ISSR_LOADED')) die(''); ?>