View Full Version : Isilo 4.2 crashes
peterostermann
03-03-2005, 02:52 AM
I have compiled a big HTML-Dokument (60.000 Sites) with ISiloX V4.2.
The target file size is 190 MB.
ISilo V4.2 crashes by sites over 44148 on windows and on Pocket-PC.
Any suggestions??
Thanks,
Peter
iSilo
03-03-2005, 10:55 AM
Would you be able to post the .ixl file for generating the .pdb file so that we can try to reproduce the problem?
peterostermann
03-09-2005, 02:54 AM
enclosed the ixl file for you.
peterostermann
03-15-2005, 03:53 AM
hello,
I need help for my problem!!!!!
iSilo
03-15-2005, 08:12 AM
It sounded like this issue was the same as the one you posted in the other thread. But if not, the .ixl file refers to source files on your hard drive and we would need those files in order to reproduce the problem to determine the cause. Are you able to zip the source files and place them somewhere for us to download?
peterostermann
06-01-2005, 03:11 AM
Hello,
i have created two Documents to analyse iSilo.
The Documents have 64000 HTML-Pages.
The Text-Size and the number of links are different.
Here the results:
Number of Folders/Number of Files in Folder/Text-Size/Extra Links/Sum of Links
32/2000/5000/0/2175968 -> OK
32/2000/6000/0/2175968 -> Error
Go to the Last Page then you can see the Problem.
I hope, the Large-Documents help you, to analyse the Problems and it help you to make iSilio much better then other programs!
# And here is the Perl-Programm to reproduce the errors
#
# LargeDocument.pl is a simpl perl-program to analyse the erros by large documents
$DestinationFolder="LargeBook";
$NumFolder =32;
$NumFilesFolder =2000;
$SizeText =6000; # 100,1000,5000 No problems
# Error >=6000
$ExtraLinks =0;
$CalcLinks=$NumFolder*($NumFilesFolder*($NumFolder +2))-$NumFolder;
printf "Calc Links : %d\n",$CalcLinks ;
printf "Number of Folders : %d\n",$NumFolder ;
printf "Number of Files : %d\n",$NumFilesFolder*$NumFolder;
printf "Text size : %d\n",$SizeText ;
printf "Number of extra Links : %d\n",$ExtraLinks ;
mkdir($DestinationFolder);
for($a=1;$a<=$NumFolder;$a++) {
$folder=sprintf "$DestinationFolder/%03d",$a;
if ( ! -d $folder ) {
mkdir($folder) || die "Canīt create folder $folder\n";;
}
# Protocol
$|=1; printf "%05d\r",$a; $|=0;
for($b=1;$b<=$NumFilesFolder;$b++) {
# File open
$file=sprintf "%s/%03d.html",$folder,$b;
open(D,">$file") || die "Canīt create file $file\n";
print D "<html><head></head><body>\n<center><b>$file</b></center>\n";
$FileCounter++;
# create link files
for($c=1;$c<=$NumFilesFolder;$c++) {
printf D "<BR><a href=\"%03d.html\">%3d</a>\n",$c,$c if ($b==1 || $c==1 || --$ExtraLinks >0);
$LinkCounter++ if ($b==1 || $c==1 || $ExtraLinks >0);
}
print D "<P>\n";
# create link files
# for($c=1;$c<=$NumFilesFolder;$c++) {
# ($b==1 || $c==1)?printf D "<BR><a href=\"%03d.html\">%3d</a>\n",$c,$c : printf D "<BR>$c\n";
# $LinkZaehler++;
# }
# print D "<P>\n";
# create link folders
for($c=1;$c<=$NumFolder;$c++) {
$link=sprintf "../%03d/%03d.html",$c,1;
printf D "<BR><a href=\"../%03d/%03d.html\">*%03d</a>\n",$c,1,$c;
$LinkCounter++;
}
print D "<P>\n";
# create text
for($c=1;$c<=int($SizeText/32);$c++) {
printf D "<BR><b>%08d</b> :-) :-) :-)\n",$c;
}
print D "</body></html>\n";
# File close
close(D);
}
}
printf "\n";
printf "Count Links: %d\n",$LinkCounter;
printf "Count Files: %d\n",$FileCounter;
__END__
iSilo
06-02-2005, 09:45 AM
Thanks for the script for generating the files for reproducing the problem. The problem happens when the text size exceeds about 250 megabytes and will be fixed in the next update. On a related note, just fyi, the text size has a maximum limit of about 1 gigabyte.
peterostermann
06-29-2005, 08:40 AM
I am waiting for the next version!!!
I am also waiting for changing the limit of 64.000 pages!
Bye
Peter
iSilo
06-29-2005, 09:43 AM
It is currently in beta (http://www.iSiloX.com/info/beta/index.htm) if you want to try it.
vBulletin® v3.7.4, Copyright ©2000-2008, Jelsoft Enterprises Ltd.