Daniela Lentge wrote:
Now, we want to restrict access to our mediawiki from this salesform platform via ip-restriction only. Does anyone know, if this ist possible and how to do it? Could you please point me to further information on it?
You can do this in the web server's configuration. For example, in Apache, you can use something like:
<Directory "/Path/to/wiki"> Order deny,allow Deny from all Allow from 192.168.1.1 </Directory>
in the virtual host specification for the wiki. See the documentation for your web server for details.
Mike