= Description =

## Please read this page. Lines prefixed with ## such as this one are comments,
## you can remove them (except for those after the "Plan" section.)
## Please follow the instructions given in those comments and the text.
## After creating the bug page, please subscribe to it! We may have questions
## that only you can answer, and if you get email when your bug changes it'll
## be much faster to get it fixed since you can answer the questions!

I want to have the Standalone-Server accessible from other computers. According to the comments in {{{wikiserverconfig.py}}}, I changed:
{{{#!Python numbers=disable
class LocalConfig(DefaultConfig):
    interface = 'localhost'
}}}
to
{{{#!Python numbers=disable
class LocalConfig(DefaultConfig):
    interface = ''
}}}

Access from another computer is still not possible after this change.

== Steps to reproduce ==
## Describe the steps needed to reproduce the bug. If we can't reproduce it, we  probably can't fix it.
 1. Configure a Standalone MoinMoinWiki using '''interface = ""''' and try to access it from a machine different to localhost.

== Example ==
##Add URL that show the bug, screenshot or test wiki markup that fail...

##URL: 

##{{attachment:screenshot.png}}

##{{{
##Example wiki markup that fail
##}}}

== Component selection ==

## Where you think is this bug happening ? (general, plugin [plugin name], theme [theme name], ...

 * in {{{site-packages/MoinMoin/script/server/standalone.py}}}
  * The ''class Default{{{}}}Config(object)'' is defined using only the variable ''hostname'' (NOT ''interface''). Therefore defining a variable ''interface'' in the {{{wikiserverconfig.py}}} does not change it.

== Details ==

## If you got a traceback, please save the traceback page as html and attach here:
## [[attachment:traceback.html]]

## if the bug is in this wiki, just kill the table and write: This Wiki.

## If a traceback is not available, please fill in the details here:
|| '''!MoinMoin Version''' || 1.9.3 [Revision release] ||
|| '''OS and Version''' || Debian 4.1.1-21 ||
|| '''Python Version''' || 2.6.2 ||
|| '''Server Setup''' || Standalone ||
|| '''Server Details''' || ||
|| '''Language you are using the wiki in''' (set in the browser/UserPreferences) || ||

== Workaround ==
## How to deal with the bug until it is fixed

Two possibilities:

 a. Use the variable ''hostname'' instead of ''interface'' in {{{wikiserverconfig.py}}}
 a. Use the option on the command line, e.g.,
 {{{
moin server standalone --interface=""
}}}

= Discussion =

I would just change the comment in {{{wikiserverconfig.py}}} so that everybody knows that the variable is now called ''hostname''

= Plan =
## This part is for Moin``Moin developers:

 * Priority: 
 * Assigned to:
 * Status: fixed by http://hg.moinmo.in/moin/1.9/rev/5b262b81c236

----
## If you are a moin core developer, replace the category to Category* in these cases:
## Category MoinMoinNoBug - if this is not a bug.
## Category MoinMoinBugConfirmed - if you can confirm the bug on current code.
## Category MoinMoinBugFixed - after the bug is fixed in current code.
CategoryMoinMoinBugFixed