I change the start_url to look at a file
start_url: ${/opt/www/htdig/conf}/start.url
But keep on receiving error message of htmerge: Unable to open word list file '/opt/www/htdig/db/db.wordlist'
If you want to provide start_url a file containing URLs, you need to use backticks (`). Your configuration file entry should look something like the following.
start_url: `/opt/www/htdig/conf/start.url`
The $ and curly brackets should not appear in the start_url unless you are using them to represent a variable (e.g. ${common_dir}).
If your start_url file is in fact in the common directory and named start.url, then you can use the sample start_url that is provided in the default configuration file.
start_url: `${common_dir}/start.url`
Jim
------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ ht://Dig general mailing list: <[EMAIL PROTECTED]> ht://Dig FAQ: http://htdig.sourceforge.net/FAQ.html List information (subscribe/unsubscribe, etc.) https://lists.sourceforge.net/lists/listinfo/htdig-general

