MediaWiki fresh install (a few questions...) v1.12

Hi all,

We have a registered virtual appliance (VMware type).
The environnement:
* Jumbox 1.1.0/1.1.165
* MediaWiki v1.12

My IT collegues installed the product and gave me a web browser acces with the admin's password. I also created a Mediawiki account with SYSOP/BOT/BUREAUCRAT privileges. I have acces to SSH ans SCP (secure shell and secure copy) using Bitvise's Tunnelier product. Can only read files (what I see...) and write in my /home directory.

Problems:

P1)
Can't see any MediaWiki files on the server (logged in as admin).
Only see two empty folders in /jumpbox/application_portal/applications/mediawiki
(scripts and setup). Need Root access? Need SUDO (am not a Linux expert)? Have sudo examples?

P2)
Can't manually append special pages syntax to URL. Get an error message (404 not found)
ex.: http://172.19.11.1/Mediawiki:Mainpage
ex.: http://172.19.11.1/index.php/Special:Permissions

P3)
Can't edit a page!!! System normally closed? I guess I need access to LocalSettings.php...

P4)
When I access a Special Page I don't see the address bar changing (no echo of my command in the address bar)

Miscellaneaous questions

Q1)
Is there a way to have Root access?
Q2)
Access to the graphical Ubuntu interface? X-Windows stuff?
Q3)
Documentation on SSL (when you check, "It just works feature")?

Thanks for any pointers!

MediaWiki fresh install (a few questions...) v1.12

Answer to Q1)

Yes, assuming you are using the admin user login, use sudo before the command you want to run as root, you will be asked for the admin users password. See FAQ: How to access a JumpBox as root.

Answer to Q2)

Xwindows and other GUI components are not installed on any JumpBox by default for space reasons.

Answer to Q3)

Good point, I guess we may not have adequately documented that in the README.txt. A self signed SSL certificate is generated the first time you boot the JumpBox. If you choose the "it just works" setting, it will use this certificate and make the application available on the SSL port (443) in addition to the HTTP port (80). We do not force traffic onto one or the other (though may in the future or add an additional option) so it is up to the users to use http or https (or someone to make a manual web server change, this has been done somewhere in the forums). This self signed cert is an OK, though not perfect SSL solution for internal type usage but definitely NOT appropriate for financial type or other sensitive transactions.

Now for your problems ....

P1)

The files are in /var/data/mediawiki and I think writable by the admin user, if not you would use sudo to start the nano text editor on a file like this:

sudo nano /var/data/mediawiki/LocalSettings.php

P2) I do not understand. Are you saying you are typing it in the URL bar? Have you reviewed the Mediawiki Documentation for what you are trying to do?

P3) Also not sure what you mean, by default the pages are editable for even unauthenticated users (unless a recent version has changed) if not then they are certainly editable if you log into mediawiki as the admin user (using the same password set at setup and used to SSH in).

P4) If you are using a registered JumpBox (which if you have shell access you presumably are), you can disable the JumpBox navigation bar at the top by following the Disable Navigation Bar instructions.

Good luck and I hope this helps,
Austin

It's working!

Thanks Austin, I was wondering If we had a VMware time bomb problem!

But the answer is sometimes simple...

For P1) you gave me the correct path. Instead of SUDOing I SFTPed the LocalSettings.php file and edited it with Dreamweaver (PHP code enabled). (logged in as admin)

I disabled anonymous editing by adding this piece of code:
$wgGroupPermissions['*']['edit'] = false

For P2) and P3) the workaround is to use the correct syntax:
http://172.19.11.1/mediawiki/index.php/(new page or special page stuff ).

The «mediawiki» key word was missing...

Thanks and keep up the good work!
---