Thanks for replying. Yes, I'm still using the old 4.5 'php includes' (which I reverted to after seeing that the new Dreamweaver MOS extensions didn't work for me yet).
My templates work well with all the text/ graphics/ modules/ components. But trouble begins when users click on interactive functions like Frontend editing (toolbars, but no htmlarea) or Mamblog (no editing/uploading area)
However, when I use a free template like 'teamwork', the abovementioned functions/components work just fine.
I compared the php tags of both my templates and the free templates and everything looks the same, down to the semicolon. Obviously, there's somewhere I haven't looked, though I haven't the foggiest notion where.
I hope I find a solution out there, because I don't want be told to upgrade to MOS 4.5.1 yet!

___
Aha! Found the bugger... it was this tag:
Quote:
if (0) {
include ("editor/editor.php");
initEditor();
}
?>
|
which should be:
Quote:
if ($my->id) {
include ("editor/editor.php");
initEditor();
}
?>
|
Such a basic oversight would not have been a problem for regular php-speakers, which I'm not!
