On one of my wikis the IP address of a unlogged in viewer is displayed at the top of the page.
On a new wiki only 0.0.0.0 appears.
Where should this IP address come from and how do I get it?
The reason I need the IP address "I believe" is that reCaptcha is having a problem identifying the domain.
I believe it is seeing 0.0.0.0 instead of the wiki's IP.
The Domain associated with the IP address has reCaptcha keys and has worked before I started messing
around in LocalSettings.php trying to get email to work (it's working now thanks).
I probable stepped on something in Localsettings.php
Thanks for the help.
Ralph
What turns the display of the logged in users IP address on?
I am sure it is something in LocalSettings.php.
Thanks,
Ralph
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] On Behalf Of Ralph Hulslander Sent: Thursday, April 03, 2008 3:51 PM To: MediaWiki-l@lists.wikimedia.org Subject: [Mediawiki-l] IP address of unlocked in visitor to wiki Main Page
On one of my wikis the IP address of a unlogged in viewer is displayed at the top of the page.
On a new wiki only 0.0.0.0 appears.
Where should this IP address come from and how do I get it?
The reason I need the IP address "I believe" is that reCaptcha is having a problem identifying the domain.
I believe it is seeing 0.0.0.0 instead of the wiki's IP.
The Domain associated with the IP address has reCaptcha keys and has worked before I started messing
around in LocalSettings.php trying to get email to work (it's working now thanks).
I probable stepped on something in Localsettings.php
Thanks for the help.
Ralph
_______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
On 08/04/2008, Ralph Hulslander rph@rovenet.com wrote:
What turns the display of the logged in users IP address on?
I don't think you can for logged in users, for unlogged in users it's $wgShowIPinHeader
Duh, thanks shows ya what I know.
Now how do I turn it on?
Do I just make a entry in LocalSettings.php?
What is the syntax?
Thanks for the reply.
Ralph
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] On Behalf Of Thomas Dalton Sent: Monday, April 07, 2008 7:46 PM To: MediaWiki announcements and site admin list Subject: Re: [Mediawiki-l] IP address of logged in user
On 08/04/2008, Ralph Hulslander rph@rovenet.com wrote:
What turns the display of the logged in users IP address on?
I don't think you can for logged in users, for unlogged in users it's $wgShowIPinHeader
_______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
On 08/04/2008, Ralph Hulslander rph@rovenet.com wrote:
Duh, thanks shows ya what I know.
Now how do I turn it on?
Do I just make a entry in LocalSettings.php?
What is the syntax?
Yeah, just add
$wgShowIPinHeader = true;
to LocalSettings.php (or, more likely, change "$wgShowIPinHeader = false" to that, since I think true is the default, so you must have it explicitly turned off).
This is really strange, I have another wiki that shows the IP address of unlogged in viewers but it has no $wShowIPinHeader entry in LocalSettings.php.
There is also no entry in the new wiki I am trying to setup.
Entering $wgShowIPinHeader = true; has no effect, the IP is still not shown.
This is probable not important, I just do not like 0.0.0.0 appearing and the same is referenced for the confirmation email with new signups.
Thanks for the replies,
Ralph
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] On Behalf Of Thomas Dalton Sent: Monday, April 07, 2008 8:10 PM To: MediaWiki announcements and site admin list Subject: Re: [Mediawiki-l] IP address of logged in user
On 08/04/2008, Ralph Hulslander rph@rovenet.com wrote:
Duh, thanks shows ya what I know.
Now how do I turn it on?
Do I just make a entry in LocalSettings.php?
What is the syntax?
Yeah, just add
$wgShowIPinHeader = true;
to LocalSettings.php (or, more likely, change "$wgShowIPinHeader = false" to that, since I think true is the default, so you must have it explicitly turned off).
_______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
On 08/04/2008, Ralph Hulslander rph@rovenet.com wrote:
This is really strange, I have another wiki that shows the IP address of unlogged in viewers but it has no $wShowIPinHeader entry in LocalSettings.php.
There is also no entry in the new wiki I am trying to setup.
Entering $wgShowIPinHeader = true; has no effect, the IP is still not shown.
This is probable not important, I just do not like 0.0.0.0 appearing and the same is referenced for the confirmation email with new signups.
Thanks for the replies,
Ralph
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] On Behalf Of Thomas Dalton
Sent: Monday, April 07, 2008 8:10 PM To: MediaWiki announcements and site admin list Subject: Re: [Mediawiki-l] IP address of logged in user
On 08/04/2008, Ralph Hulslander rph@rovenet.com wrote:
Duh, thanks shows ya what I know.
Now how do I turn it on?
Do I just make a entry in LocalSettings.php?
What is the syntax?
Yeah, just add
$wgShowIPinHeader = true;
to LocalSettings.php (or, more likely, change "$wgShowIPinHeader = false" to that, since I think true is the default, so you must have it explicitly turned off).
The default values are in includes/DefaultSettings.php. Mine has an entry reading:
$wgShowIPinHeader = true; # For non-logged in users
Check whether that entry is still there. Then, if you have an entry for $wgShowIPinHeader in LocalSettings.php, simply remove the one in LocalSettings.php. Not sure why your override in LocalSettings.php doesn't work. Have you verified that you don't have multiple entries?
Kind regards,
Herta
There was a entry in includes\DefaultSettings.php.
I removed the redundant entry in LocalSettings.php but still no IP, I will try a new wiki (must be a Windows thing, when it doesn't work re-install).
anon users cannot not edit.
Ralph
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] On Behalf Of Herta Van den Eynde Sent: Tuesday, April 08, 2008 9:05 AM To: MediaWiki announcements and site admin list Subject: Re: [Mediawiki-l] IP address of logged in user
On 08/04/2008, Ralph Hulslander rph@rovenet.com wrote:
This is really strange, I have another wiki that shows the IP address of unlogged in viewers but it has no $wShowIPinHeader entry in LocalSettings.php.
There is also no entry in the new wiki I am trying to setup.
Entering $wgShowIPinHeader = true; has no effect, the IP is still not shown.
This is probable not important, I just do not like 0.0.0.0 appearing and the same is referenced for the confirmation email with new signups.
Thanks for the replies,
Ralph
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] On Behalf Of Thomas Dalton
Sent: Monday, April 07, 2008 8:10 PM To: MediaWiki announcements and site admin list Subject: Re: [Mediawiki-l] IP address of logged in user
On 08/04/2008, Ralph Hulslander rph@rovenet.com wrote:
Duh, thanks shows ya what I know.
Now how do I turn it on?
Do I just make a entry in LocalSettings.php?
What is the syntax?
Yeah, just add
$wgShowIPinHeader = true;
to LocalSettings.php (or, more likely, change "$wgShowIPinHeader = false" to that, since I think true is the default, so you must have it explicitly turned off).
The default values are in includes/DefaultSettings.php. Mine has an entry reading:
$wgShowIPinHeader = true; # For non-logged in users
Check whether that entry is still there. Then, if you have an entry for $wgShowIPinHeader in LocalSettings.php, simply remove the one in LocalSettings.php. Not sure why your override in LocalSettings.php doesn't work. Have you verified that you don't have multiple entries?
Kind regards,
Herta
On 08/04/2008, Ralph Hulslander rph@rovenet.com wrote:
This is really strange, I have another wiki that shows the IP address of unlogged in viewers but it has no $wShowIPinHeader entry in LocalSettings.php.
That's correct, showing them is the default.
There is also no entry in the new wiki I am trying to setup.
Entering $wgShowIPinHeader = true; has no effect, the IP is still not shown.
That's strange. Check no-one's been fiddling with DefaultSettings.php as Herta suggests. If that doesn't work, check it's not being hidden by the skin (by a line in [[Mediawiki:Monobook.css]] or something - I'm not good with skins).
This is probable not important, I just do not like 0.0.0.0 appearing and the same is referenced for the confirmation email with new signups.
What happens when anon users edit? Do all the contributions end up on [[Special:Contributions/0.0.0.0]] rather than under their actual IP address? If so, it sounds like a much bigger underlying problem with your server (which someone else will have to help you with - far beyond my skillset).
How does one turn on the Edit toolbar on the Edit pages?
Also how does one get the expanded toolbar?
Thanks,
Ralph
Ralph, one thing to try to get the toolbar workign is to check what $wgScriptPath is getting set to. This should point to where the wikibits.js lives.
Don't know about the expanded one.
Anthony Zepezauer
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l- bounces@lists.wikimedia.org] On Behalf Of Ralph Hulslander Sent: Monday, April 07, 2008 4:47 PM To: 'MediaWiki announcements and site admin list' Subject: [Mediawiki-l] Edit Toolbar
How does one turn on the Edit toolbar on the Edit pages?
Also how does one get the expanded toolbar?
Thanks,
Ralph
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
$wgStylePath is set to $wgScriptPath/skins (this seems strange to be referenced before it is set) $wgStylePath = "$wgScriptPath/skins";
Then $wgScriptPath is set to the wiki ROOT ($wgScriptPath = "/ligreen";)
I searched the wiki folders and found wikibits.js in skins/common
But if I try to set $wgScriptPath to skins/common ($wgScriptPath = "/ligreen/skins/common";) I get a error Path not found.
I am not sure what the syntax should be for the path.
Should I copy wikibits to the ROOT?
Thanks for the replies.
Ralph
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] On Behalf Of Anthony Zepezauer Sent: Tuesday, April 08, 2008 1:41 PM To: MediaWiki announcements and site admin list Subject: Re: [Mediawiki-l] Edit Toolbar
Ralph, one thing to try to get the toolbar workign is to check what $wgScriptPath is getting set to. This should point to where the wikibits.js lives.
Don't know about the expanded one.
Anthony Zepezauer
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l- bounces@lists.wikimedia.org] On Behalf Of Ralph Hulslander Sent: Monday, April 07, 2008 4:47 PM To: 'MediaWiki announcements and site admin list' Subject: [Mediawiki-l] Edit Toolbar
How does one turn on the Edit toolbar on the Edit pages?
Also how does one get the expanded toolbar?
Thanks,
Ralph
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
_______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Well it is working now I have the Edit bar but I haven't the slightest idea why!
I mucked around in LocalSettings.php (nothing worked) and then I deleted all of my changes I had made and now it works!
Thanks so much for your replies.
Ralph
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] On Behalf Of Ralph Hulslander Sent: Wednesday, April 09, 2008 2:01 PM To: 'MediaWiki announcements and site admin list' Subject: Re: [Mediawiki-l] Edit Toolbar
$wgStylePath is set to $wgScriptPath/skins (this seems strange to be referenced before it is set) $wgStylePath = "$wgScriptPath/skins";
Then $wgScriptPath is set to the wiki ROOT ($wgScriptPath = "/ligreen";)
I searched the wiki folders and found wikibits.js in skins/common
But if I try to set $wgScriptPath to skins/common ($wgScriptPath = "/ligreen/skins/common";) I get a error Path not found.
I am not sure what the syntax should be for the path.
Should I copy wikibits to the ROOT?
Thanks for the replies.
Ralph
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] On Behalf Of Anthony Zepezauer Sent: Tuesday, April 08, 2008 1:41 PM To: MediaWiki announcements and site admin list Subject: Re: [Mediawiki-l] Edit Toolbar
Ralph, one thing to try to get the toolbar workign is to check what $wgScriptPath is getting set to. This should point to where the wikibits.js lives.
Don't know about the expanded one.
Anthony Zepezauer
-----Original Message----- From: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l- bounces@lists.wikimedia.org] On Behalf Of Ralph Hulslander Sent: Monday, April 07, 2008 4:47 PM To: 'MediaWiki announcements and site admin list' Subject: [Mediawiki-l] Edit Toolbar
How does one turn on the Edit toolbar on the Edit pages?
Also how does one get the expanded toolbar?
Thanks,
Ralph
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
_______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
_______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
mediawiki-l@lists.wikimedia.org