This setting in LocalSettings.php;; Is this something that needs to be
updated? I run my mediawiki on a server that is port forwarded using
DHCP settings from another network server The actual server address
sometimes,though rarely, changes; example, now it is 192.168.1.4 on my
NAT array. It seems this does not match the settings below, however I do
not know that as I dont know how the mediawiki installation decided what
to use for this setting. BTW: I have noticed that the server seems
slower to load wiki pages & I don't know exactly what or when this
occured.
> ## Shared memory settings
> $wgMainCacheType = CACHE_MEMCACHED;
> $wgMemCachedServers = array( '127.0.0.1:11211\r\n192.168.1.25:1234' );
>
Thanks!
frosty
Greetings!
Reminder about the MediaWiki Workshops for developers (volunteer and staff): Preparing extensions for MediaWiki 1.19 being held on 13 January, 2012 at 19:00 UTC in IRC (#wikimedia-dev).
This IRC workshop will be an opportunity to find out about changes in MediaWiki 1.19 that may require revisions to extensions or skins. Also an opportunity to ask MediaWiki developers questions regarding extension development.
Everyone is invited to attend. Developers interested in serving as "extensions" or "MediaWiki 1.19" experts are encouraged to signup as participants at: http://www.mediawiki.org/wiki/Project:WikiProject_Extensions/MediaWiki_Work…
More information: http://www.mediawiki.org/wiki/Project:WikiProject_Extensions/MediaWiki_Work…MediaWiki.org's WikiProject SysAdmins will also likely host similar MediaWiki Workshops to help third-party wiki system administrators. Stay tuned for more information, and chime in at: http://www.mediawiki.org/wiki/Project:WikiProject_SysAdmins/Ideas
Look forward to seeing folks! Please feel free to forward this along to any interested folks.
-greg aka varnent
-------
Gregory Varnum
Lead Administrator, WikiQueer
Lead, Aequalitas Project
@GregVarnum
fb.com/GregVarnum
Can anyone help with this?
Besides using robots.txt, I use the meta tags too.
$wgDefaultRobotPolicy = 'noindex,nofollow';
$wgNamespaceRobotPolicies = array( NS_MAIN => 'index,follow', NS_USER =>
'index,follow', NS_Timeline => 'index,follow' );
Actually works quite well, anything in in Category, Template, Special,
Mediawiki, plus edit and history, Property, Forms if you have semantic-wiki
installed, all have the 'noindex,nofollow' tag. You could use noarchive too
if you're trying to get some things out of search engines too. Only the
Main, User and in my case the Timeline namespace will be indexed by Google
and other search engine bots that behave. All other Namespaces show
'noindex,nofollow' in the meta header.
Anyway, I want to add my "My Wiki Name" to the NamespaceRobotPolicies. I
just can't figure out why the namespace is being ignored. I'm starting to think
this it is a bug. Wikipedia, Wikia, ThisWiki, Thatwiki, Anywiki are all one
name wikis. What about the ones with a few names and spaces in between? I have tried:
NS_MY_WIKI_NAME, NS_My_Wiki_Name, 'NS_My Wiki Name' (had to use ' ' to
enclose, 500 error without), and every variation I can think of, but it
still excludes the Wiki's NameSpace. I even tried %20 in between.
I did notice, NS_CATEGORY works, but NS_Category doesn't, however with my
Timeline NS, I had use NS_Timeline because it is the name of the Namespace and
not TIMELINE in my LocalSettings.php.
Ideas appreciated?
Tom
Bonjour Magali,
No, unfortunately it's not possible to have multiple levels of tabs within
Header Tabs. I suppose you could add such a thing to the code, but I think
it would require a fairly big overhaul of the extension. If you do decide
to do such a thing, and it works, I would definitely be interested to see
the code, though.
-Yaron
--
WikiWorks · MediaWiki Consulting · http://wikiworks.com
Dear all,
I don't know if this issue was already discussed (not found on the extension discussion page and I did not manage to query the mailing list archives...).
I'd like to create a page with three sections, each of them containing a distinct tabs view, used to organize my semantic data.
As far as I tried and understood, only one <headertabs/> tag is read so I was not able to create such a page.
Are they solutions allowing to have several tabs views per page? Would I need to modify the extension code ? (thing that I would prefer not to do... :))
Thank for your help,
Magali
My configuration :
MediaWiki 1.16.2 (r35)
Semantic MediaWiki (Version 1.5.5.2)
Semantic Bundle (Version 2011-02-16.20110216)
Skin : GuMaxDD 1.1
AVIS : Ce courrier et ses pieces jointes sont destines a leur seul destinataire et peuvent contenir des informations confidentielles appartenant a bioMerieux. Si vous n'etes pas destinataire, vous etes informe que toute lecture, divulgation, ou reproduction de ce message et des pieces jointes est strictement interdite. Si vous avez recu ce message par erreur merci d'en prevenir l'expediteur et de le detruire, ainsi que ses pieces jointes.
NOTICE: This message and attachments are intended only for the use of their addressee and may contain confidential information belonging to bioMerieux. If you are not the intended recipient, you are hereby notified that any reading, dissemination, distribution, or copying of this message, or any attachment, is strictly prohibited. If you have received this message in error, please notify the original sender immediately and delete this message, along with any attachments.
I am trying to use the PubmedParser extension on my Wiki (1.18) but have not been able to get the jquery.makeCollapsible plugin to work.
Simply adding the class "mw-collapsible" to a page element appeared not to be sufficient for an out-of the box MW 1.18 installation. The manual page for collapsible elements directed me to the "ResourceLoader/Default modules" page on which jquery.makeCollapsible is listed. However there is no jquery.makeCollapsible.js in resources/jquery/. After initially being googled astray (I think) on http://thusa.co.za/blog/gareth-davies/getting-jquery-running-mediawiki (which is outdated), after some reading, and conjecturing, here is what I did:
(A) from SVN -> Resources.php, copied the module definition and manually edited my installed version of Resources.php to include
'jquery.makeCollapsible' => array(
'scripts' => 'resources/jquery/jquery.makeCollapsible.js',
'styles' => 'resources/jquery/jquery.makeCollapsible.css',
'messages' => array( 'collapsible-expand', 'collapsible-collapse' ),
),
(B) from SVN copied jquery.makeCollapsible.js and jquery.makeCollapsible.css and placed them into my resources/jquery/ directory.
However, page code like ...
<div class="toccolours mw-collapsible mw-collapsed">Lorem ipsum dolor sit amet ...</div>
... is toc-coloured but not collapsible.
Is what I described the correct way this plugin is supposed to be installed?
What other (undocumented?) configuration do I need?
Where would I have found the correct instructions?
Thanks!
Boris