| > I have httrack-3.30-RC-3.tar.gz
> I then copied the html from the distribution into above
location, and got this:
> ~> webhttrack
> /usr/local/bin/webhttrack(8109): cound not find any
suitable browser
> How can I help find the browser?
> I am using opera 7, in /usr/bin/opera
Opera is not detected by default ;
you can modify the webhttrack script and add opera (for
example before netscape ; all names should be separated by
a space)
See the diff:
--- webhttrack.orig Sat Jun 14 09:26:18 2003
+++ webhttrack Sat Jun 14 09:26:08 2003
@@ -3,7 +3,7 @@
# WebHTTrack launcher script
# Initializes the htsserver GUI frontend and launch the
default browser
BROWSEREXE=
-SRCHBROWSEREXE="x-www-browser www-browser mozilla galeon
konqueror netscape"
+SRCHBROWSEREXE="x-www-browser www-browser mozilla galeon
konqueror opera netscape"
if test -n "${BROWSER}"; then
# sensible-browser will f up if BROWSER is not set
SRCHBROWSEREXE="sensible-browser ${SRCHBROWSEREXE}"
| |