A couple of errors for you that I encountered today...
1) The same header not found as mentioned in this post:
www.kunena.com/forum?func=view&catid=81&id=12766
. This error only occurred on themes other than the default_ex theme. I think this may have something to do with the next error I found...
2) Upon default installation (which was straight forward, good work!) - the image paths were broken. The URLs on images were:
/default_ex/images/english%5
and should have been
/default_ex/images/english/
Hacked Fix
In class.kuena.php, around line 255, I did this:
Code:
#if (is_dir(KUNENA_ABSTMPLTMAINIMGPATH . '/images/' . KUNENA_LANGUAGE)) {
# define('KUNENA_URLIMAGESPATH', KUNENA_TMPLTMAINIMGURL . '/images/' . KUNENA_LANGUAGE .DS);
# }
#else {
define('KUNENA_URLIMAGESPATH', KUNENA_TMPLTMAINIMGURL . '/images/english/');
# }
Yes, forced it to use the maually specified english path. Im not great with php, but looking at this suggests that your DS function may not be functioning properly.
If the image paths were broken by concatenating DS, then I can only think that this may be causing file path issues all over the place.
Good luck with it.
Spanka.