2
I couldn't see the page, but I think I know what the problem is. The link in the file: templates/xdir_viewcat.html is hard coded so if you install XOOPS in a subdirectory and not the root - example:
http://www.somebusiness.com/xoopsroot/ it will not work.
To fix this.
replace this line(@ line #7):
<a href="/modules/xdirectory/submit.php">Submit a Listing</a></div>
with this:
<a href="<{$xoops_url}>/modules/xdirectory/submit.php">Submit a Listing</a></div>
THis is an issue I've worked out in the new version as well as some others.
I hope this helps
B