Hi,
interesting - the problem is that if TWG would create this directories they would have different user rights.
I have checked my whole code - I don't create this folders.
But I asked google! This are folders created by frontpage - maybe frontpage extensions are running on this host!
The problem is that TWG does detect these directories and does think that they are normal directories. And accessing them fails and TWG is stuck - you have to close the browser.
now it's how to solve this
.
easy - you can tell TWG which folder it should ignore!
in the config.php you find a setting called:
$exclude_directories=array("CVS","thumbs","data.pxp");
extend this to:
$exclude_directories=array("CVS","thumbs","data.pxp","_vti_cnf");
would work. BUT you should set this my_config.php! (for easier update of TWG)
if you put it in config.php or in the TWG Admin simply use:
$exclude_directories[]="_vti_cnf";
This adds this dir to the exclude array
.
I have added this directory to my local build too - it will be in the exclude list in the next build.
/Michael