Hello Experts,
I
am new to Zope. I have Zope2.5.1 installed on my win2000 machine. I have made a
Page Template object which has the following code(example
from ZopeBook).
<html>
<body>
The URL is <b tal:content="request/URL"
>URL</b>
<table width="100%" border="1">
<tr>
<th>S.No</th>
<th>ID</th>
<th>MetaType</th>
<th>Title</th>
</tr>
<tr tal:repeat="item container/objectValues">
<td
tal:content="repeat/item/number">#</td>
<td
tal:content="item/getId">Id</td>
<td
tal:content="item/meta_type">Meta-Type</td>
<td tal:content="item/title">title</td>
</tr>
</table>
</body>
</html>
When I try to test this PageTemplate with ZopeManagement
Interface-àTest Tab, I am
prompted to Login with userid and password. I don't understand why this
happens since I am already logged in as role Manager and own this PageTemplate
Object.
Even after giving the userid and password I get an access denied error message. I am not able to understand why
this happens.
Please help me..
Warm Regards,
Yaser