I've discovered another problem with integrating SMF and Pligg.
On my Pligg website, I created a column in the sidebar to show the latest topics from the SMF forum.
I used the SSI.php features to do this, and added the line
PHP Code:
require('/home/test/public_html/forum/SSI.php');
to Smarty.class.php so that it will be called from every page.
I also created a new sidebar module under templates\yget\sidebar_modules calling the code
PHP Code:
<?php ssi_recentTopics(); ?>
Now I find that when I try to login, nothing happens. It just refreshes the page as though I did not log in. If I remove this code it works fine. There must be a clash somewhere... does anyone know how I can fix this?