Hi again,
I think I've found the reason, why it wouldn't work for me before.
It seems that mediawiki uses a different definition of relative or absolut paths
than I knew.
For example in my installation $wgScriptPath is set to "/_fhbwiki".
Afaik normally (in html, shellscripts or programming-languages) that's an
absolut path and points to a directory or file directly beneath the root-node of
a linux-system. It seems that here this path points to a directory beneath the
document-root of the same linux-system (whereever that may be).
If one sets the path for $wgLogo like this
$wgLogo = "/_fhbwiki/skins/common/images/fhbwiki2.jpg";
it works, but
$wgLogo = "/opt/lampp/htdocs/_fhbwiki/skins/common/images/fhbwiki2.jpg";
doesn't.
In
http://www.mediawiki.org/wiki/Manual:%24wgScriptPath the value for
§wgScriptPath is defined as a relative path but the example shows /wiki, which
to me was an absolut path (until now).
Is this something unique to mediawiki or is it a "feature" of PHP?
Greetings
Kate