Help I have a template which I've been working on and it generates fine for one of my workmates but I keep getting
Templating Error Page
Error building workarea browser tree.
datacapture.cfg
<?xml version="1.0" standalone="no"?>
<!DOCTYPE datacapture SYSTEM "datacapture5.0.dtd">
<data-capture-requirements type="content" name="Prefered Travel">
<ruleset name="preferred">
<description>
Please complete appropriate information for the documents to upload.
</description>
<item name="Documents">
<label>Categories</label>
<replicant min="0" max="100" default="0">
<item name="Categories">
<select multiple="f" required="t" size="1">
<inline command="E:/Interwoven/iw-home/iw-perl/bin/iwperl.exe E:/Interwoven/iw-home/local/config/wft/beckmancoulter/scripts/InlineListDir.ipl" />
</select>
</item>
<item name="Options">
<label>Documents</label>
<replicant min="0" max="100" default="0">
<item name="Title">
<text required="t" maxlength="200" size="75"/>
</item>
<item name="Audience">
<select size="4" required="f" multiple="t">
<inline command="E:/Interwoven/iw-home/iw-perl/bin/iwperl E:/Interwoven/iw-home/local/bin/get_audience.ipl Audience" />
</select>
</item>
<item name="Upload">
<description>Upload a document to the page.</description>
<browser maxlength="255" size="50">
<cgi-callout url="/iw-bin/load_docs.ipl?Htdocs/services/travel/Category/" label="Upload" window-features="width=320,height=200,resizable=yes,toolbar=no,scrollbars=yes"/>
</browser>
</item>
</replicant>
</item>
</replicant>
</item>
</ruleset>
</data-capture-requirements>
default.tpl
<?xml version="1.0" encoding="UTF-8"?>
<iw_pt name="Preferred Travel">
<html>
<head>
<title>Preferred Travel</title>
</head>
<body>
<!-- #include virtual="include/se_tr_settings.inc" -->
<!--------------- Begin Page Content Below ----------------->
<table cellspacing="5" cellpadding="0" border="0" width="600">
<tr>
<td>
<div align="left">
<table border="0" cellpadding="0" cellspacing="0" width="576" bgcolor="#FFFFFF">
<tr>
<td height="41" colspan="2"><img border="0" src="images/banner.gif" alt="Travel Services" width="377" height="41"%gt;</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
<iw_perl><![CDATA[
my
@Categories = iwpt_dcr_list('dcr.Documents');
foreach (
@Categories) {
my $cat = iwpt_dcr_value('$_.Categories');
my
@options = iwpt_dcr_list('$_.Options');
iwpt_output("$cat<br/>");
iwpt_output("<ul><br/>");
my $count = 0;
foreach my $op (
@options) {
$count++;
my $title = iwpt_dcr_value('$op.Title');
my $upload = iwpt_dcr_value('$op.Upload');
iwpt_output(" <li>$count <a href=\"$upload\"> $title</a></li><br/>");
}
iwpt_output("</ul><br>");
}
]]>
</iw_perl>
<!---------------------- Begin Footer Include --------------------->
<!-- #include virtual="/include/footer.inc" -->
<!---------------------- End Footer Include ----------------------->
</body>
</html>
</iw_pt>