| while downlaoding a large website using the modified example(command line),
httrack will halt at some uncertain point, no response to user except Ctrl-C,
and doese not display any message any more.
OS: Windows 2000.
Parameters as below:
_argv[][256]={
"httrack",
"-qwC0%P0s2I0%I0p7T30R0b0H0Q#f",
"-F",
"Mozilla/4.5 (compatible; Windows 98)", //my IDD
"-%F",
"<!--Mirrored by httrack-->",
"-%l",
"\"cs,en,*\"", // use english
"127.0.0.1", //pesudo address, will be replaced by user's parameter
"-O",
"\"d:\\pppp\",\"d:\\pppp\"", // pesudo saving address
"-#L1000000", // large web site have so much urls
"+*.css",
"+*.js",
"+*.asp",
"-*.gif", // refuse any imamge files
"-*.jpg",
"-*.jpeg",
"-*.bmp",
"-*.tif",
"-*.zip",
"-*.exe",
"-*.txt",
"-*.rar",
"-*.doc",
"-*.swf", // do not save flash data
""
};
What's the reason? | |