I have been running MediaWiki for some time now and recently when users save edits to a page they get the error:
can't establish a connection to the server at 127.0.0.1
When the edited page is visited I can see that the edits have been applied but the fact that users now get this error makes things kind of undesirable. I have looked through LocalSettings.php but I don't see anything of note. The only other thing that I can think of is my recent attempt to install ImageMagic which was unsuccessful. Any tips would be appreciated.
Thanks
- c
cjw wrote:
I have been running MediaWiki for some time now and recently when users save edits to a page they get the error:
can't establish a connection to the server at 127.0.0.1
MediaWiki is receiving the wrong server name from the web server software, so its redirect links are going to the wrong place.
Fix the web server's configuration so that ServerName is correct, or else set $wgServer manually in your LocalSettings.php such as:
$wgServer = 'http://example.com';
or
$wgServer = 'https://s3kr1t.example.com:12345';
-- brion vibber (brion @ pobox.com)
mediawiki-l@lists.wikimedia.org