1. Do I have to manually hard code a link to the forum? I cannot see where visitors can click to get to it.
2. None of the images were appearing. I have checked that they all exist on the server.
Looking at "threadlist.tpl" (for example) I found on line 8:
Code: Select all
<img src="{$relpath}/img/new_thread.png" border="0" />Code: Select all
<img src="Serendipity/plugins/serendipity_event_forum//img/new_thread.png" border="0" />Other Relative Paths in this plugin were also failing eg in "editform.tpl" line 44:
Code: Select all
<script type="text/javascript" language="JavaScript" src="{$relpath}/include/ColorPicker2.js"></script>
replaced with
<script type="text/javascript" language="JavaScript" src="http://wwwdomain.com/Serendipity/plugins/serendipity_event_forum/include/ColorPicker2.js"></script>Is there a simpler way to correct the relative path error?