Kev4020@aol.com wrote:
Hello experts,
I've got a question about generating breadcrumbs in a mediawiki 1.4. How can I manage that the breadcrumbs show me, where I am? I want to see a string like this: ->Category->Subcategory->Article. Has anyone an idea how to manage this problem? I've already tried the extension "kwBreadCrumbs.php" but there is another idea behind.
You might want to try adding in your LocalSettings.php: $wgUseCategoryBrowser = true;
For an output example, have a look at: http://www.aurevilly.net/mediawiki/index.php/A_man_so_gray
cheers,
Ashar Voultoiz <hashar@...> writes:
Kev4020@... wrote:
Hello experts,
I've got a question about generating breadcrumbs in a mediawiki 1.4. How can I manage that the breadcrumbs show me, where I am? I want to see a string like this: ->Category->Subcategory->Article. Has anyone an idea how to manage this problem? I've already tried the extension "kwBreadCrumbs.php" but there is another idea behind.
You might want to try adding in your LocalSettings.php: $wgUseCategoryBrowser = true;
For an output example, have a look at: http://www.aurevilly.net/mediawiki/index.php/A_man_so_gray
cheers,
Hello all together,
I found some interesting in the web.
http://mail.wikipedia.org/pipermail/mediawiki-cvs/2004-August/003300.html
and
http://mail.wikipedia.org/pipermail/mediawiki-cvs/2005-July/009732.html
but I don't know exactly how to use. Are the numbers the lines where to put in the code???
I hope to hear from you
Kevin
Kevin wrote:
I found some interesting in the web. http://mail.wikipedia.org/pipermail/mediawiki-cvs/2004-August/003300.html and http://mail.wikipedia.org/pipermail/mediawiki-cvs/2005-July/009732.html
but I don't know exactly how to use. Are the numbers the lines where to put in the code???
Links you mentionned are notifications that some code got added in MediaWiki. The category browser is already in MediaWiki since at least 1.4.
Ashar Voultoiz <hashar@...> writes:
Kevin wrote:
I found some interesting in the web. http://mail.wikipedia.org/pipermail/mediawiki-cvs/2004-August/003300.html and http://mail.wikipedia.org/pipermail/mediawiki-cvs/2005-July/009732.html
but I don't know exactly how to use. Are the numbers the lines where to
put in
the code???
Links you mentionned are notifications that some code got added in MediaWiki. The category browser is already in MediaWiki since at least 1.4.
Hello Ashar,
that's what I do not understand completely. I've done as you said - I put $wgUseCategoryBrowser = true; into the LocalSettings.php but as a result I got the error-message: "Fatal error: Non-static method Skin::walkThrough() cannot be called statically in /opt/lampp/htdocs/dewiki/includes/Skin.php on line 512" In my case this is: "$s .= walkThrough($parenttree,$this);" in the function "walkThrough". Do you have an idea what's going wrong here?
Best regards,
Kevin
On 8/18/05, Kevin Kev4020@aol.com wrote:
Ashar Voultoiz <hashar@...> writes:
Kevin wrote:
I found some interesting in the web. http://mail.wikipedia.org/pipermail/mediawiki-cvs/2004-August/003300.html and http://mail.wikipedia.org/pipermail/mediawiki-cvs/2005-July/009732.html
but I don't know exactly how to use. Are the numbers the lines where to
put in
the code???
Links you mentionned are notifications that some code got added in MediaWiki. The category browser is already in MediaWiki since at least 1.4.
Hello Ashar,
that's what I do not understand completely. I've done as you said - I put $wgUseCategoryBrowser = true; into the LocalSettings.php but as a result I got the error-message: "Fatal error: Non-static method Skin::walkThrough() cannot be called statically in /opt/lampp/htdocs/dewiki/includes/Skin.php on line 512" In my case this is: "$s .= walkThrough($parenttree,$this);" in the function "walkThrough". Do you have an idea what's going wrong here?
That line should be $s .= $this->walkThrough ($parenttree, $this); for one thing.
-- Josh
Best regards,
Kevin
MediaWiki-l mailing list MediaWiki-l@Wikimedia.org http://mail.wikipedia.org/mailman/listinfo/mediawiki-l
Joshua Oreman <oremanj@...> writes:
On 8/18/05, Kevin <Kev4020@...> wrote:
Ashar Voultoiz <hashar <at> ...> writes:
Kevin wrote:
I found some interesting in the web.
http://mail.wikipedia.org/pipermail/mediawiki-cvs/2004-August/003300.html
and
http://mail.wikipedia.org/pipermail/mediawiki-cvs/2005-July/009732.html
but I don't know exactly how to use. Are the numbers the lines where
to
put in
the code???
Links you mentionned are notifications that some code got added in MediaWiki. The category browser is already in MediaWiki since at least
1.4.
Hello Ashar,
that's what I do not understand completely. I've done as you said - I put $wgUseCategoryBrowser = true; into the LocalSettings.php but as a result I
got
the error-message: "Fatal error: Non-static method Skin::walkThrough()
cannot
be called statically in /opt/lampp/htdocs/dewiki/includes/Skin.php on line 512" In my case this is: "$s .= walkThrough($parenttree,$this);" in the
function
"walkThrough". Do you have an idea what's going wrong here?
That line should be $s .= $this->walkThrough ($parenttree, $this); for one thing.
Hello Josh,
I've done as you said. Now the error message is: "Fatal error: Call to undefined method SkinMonoBook::walkThrough() in /opt/lampp/htdocs/dewiki/includes/Skin.php on line 512". So can you please give me the rest of your code of the function walkThrough? I think that there is still something wrong with my lines. I'm using MediaWiki 1.4.7, PHP 5.0.4 and MySQL 4.1.12.
Thanks a lot so far.
Best regards, Kevin
On 8/18/05, Kevin Kev4020@aol.com wrote:
Joshua Oreman <oremanj@...> writes:
On 8/18/05, Kevin <Kev4020@...> wrote:
Ashar Voultoiz <hashar <at> ...> writes:
Kevin wrote:
I found some interesting in the web.
http://mail.wikipedia.org/pipermail/mediawiki-cvs/2004-August/003300.html
and
http://mail.wikipedia.org/pipermail/mediawiki-cvs/2005-July/009732.html
but I don't know exactly how to use. Are the numbers the lines where
to
put in
the code???
Links you mentionned are notifications that some code got added in MediaWiki. The category browser is already in MediaWiki since at least
1.4.
Hello Ashar,
that's what I do not understand completely. I've done as you said - I put $wgUseCategoryBrowser = true; into the LocalSettings.php but as a result I
got
the error-message: "Fatal error: Non-static method Skin::walkThrough()
cannot
be called statically in /opt/lampp/htdocs/dewiki/includes/Skin.php on line 512" In my case this is: "$s .= walkThrough($parenttree,$this);" in the
function
"walkThrough". Do you have an idea what's going wrong here?
That line should be $s .= $this->walkThrough ($parenttree, $this); for one thing.
Hello Josh,
I've done as you said. Now the error message is: "Fatal error: Call to undefined method SkinMonoBook::walkThrough() in /opt/lampp/htdocs/dewiki/includes/Skin.php on line 512". So can you please give me the rest of your code of the function walkThrough? I think that there is still something wrong with my lines. I'm using MediaWiki 1.4.7, PHP 5.0.4 and MySQL 4.1.12.
As for that, I have no idea. I didn't actually look at the code; I figured it was just missing a $this->. Try upgrading to MW 1.5, if you can; it works fine for me.
-- Josh
Thanks a lot so far.
Best regards, Kevin
MediaWiki-l mailing list MediaWiki-l@Wikimedia.org http://mail.wikipedia.org/mailman/listinfo/mediawiki-l
Hello everybody.
I've got another problem with my new english installation of mediawiki 1.4.7. In my former German installation it was possible to create a new article while typing the new article's name into the searchfield and then it was possible to click on the "new" link and the edit page opened. But in my English installation this link is missing. But switching to the German interface language the link is visible. Does anybody know what to do here? I know, that it is possible to set a kind of redirect, so that if I search for a non existing article, MediaWiki automatically jumps to the editpage. I've done this in my German installation but I forgot how I've done this. Could anybody help me to remember?
Best regards
Kevin
On 9/7/05, Kevin Kev4020@aol.com wrote:
I've got another problem with my new english installation of mediawiki 1.4.7. In my former German installation it was possible to create a new article while typing the new article's name into the searchfield and then it was possible to click on the "new" link and the edit page opened. But in my English installation this link is missing. But switching to the German interface language the link is visible. Does anybody know what to do here? I know, that it is possible to set a kind of redirect, so that if I search for a non existing article, MediaWiki automatically jumps to the editpage. I've done this in my German installation but I forgot how I've done this. Could anybody help me to remember?
I remember that there is a LocalSettings.php directive which will turn this on.
I couldn't find any mention of it in the documentation though, does anyone remember what the $wg is? http://meta.wikimedia.org/wiki/LocalSettings.php
Hi,
For interested people a new version of this patch is available for 1.5 branch.
http://conseil-recherche-innovation.net/index.php/1974/04/11/41-restrict-pag... On meta : http://meta.wikimedia.org/wiki/Page_access_restriction_with_MediaWiki
It's beta, so still need to be tested !
Read you, jerome
mediawiki-l@lists.wikimedia.org