Introduction :: Installation :: System requirements :: Performance :: Query language :: License :: Users :: FAQ

Troubleshooting

  Installation   Tuning   Troubleshooting

      RiSearch uses only standard functions, however, sometimes you may experience problems with it.

      1. In some Perl versions for Windows isn't implemented function times. In such case you may delete one strings from "search.pl".

($search_time,undef,undef,undef) = times;

      2. You may have some problems, if you use IIS webserver. When you run CGI script, most webservers set working directory for this process to the directory, where this script is located. However, IIS may work in different way. It set working directory for this script to the root directory of your webserver. Therefore, script could not find necessary files. In such case you should correct path to files used by script (config.pl and all indexfiles), i.e. edit one strings in "search.pl":

require './config.pl';

and

$HASH = "db/0_hash";
$HASHWORDS = "db/0_hashwords";
$FINFO = "db/0_finfo";
$SITEWORDS = "db/0_sitewords";
$WORD_IND = "db/0_word_ind";

in "config.pl".



http://risearch.org S.Tarasov, © 2000-2001