Quote:
The instruction "renice" is either wrongly written or could not not be found (linie 80).
|
For the above, go to the renice line and try commenting it out.
Quote:
<b>Fatal error</b>: Call to undefined function: phpdigprnmsg() in <b>D:\InetPub\wwwroot\web\phpdig\admin\spider.php</b> on line <b>110</b><br />
|
From the above error, this is what looks to be happening. The function phpdigPrnMsg is the first function called from the include files in spider.php and so the include files are not being found.
In the
admin files, try $relative_script_path = '..'; (two dots) and leave $relative_script_path = '.'; (one dot) in the main search index file. One dot means go into the same directory, and two dots mean go back one directory.
If that doesn't work, try forcing the path by setting $relative_script_path = 'd:/InetPub/wwwroot/web/phpdig';
The win command you're using is working fine, as the fatal error happens when spider.php tries to call the phpdigPrnMsg function.