Confliction caused

Latest version of mediawiki and EasyPHP been installed:

  • C:\Program Files\EasyPHP 2.0b1
  • C:\Program Files\EasyPHP 2.0b1\www\mediawiki-1.9.3

I’ve installed those two packages for customizing skins due to scalability enhancement but the problem is the other services running on IIS server disturbing port 80, despite the port number has changed to 8095. However, Apache doesn’t smash through the port…

EasyPHP enables launching Apache when programs "isidsgp" and "Portal" got turned off on IIS manager, and I put everything back the way they were, so these are running now while applications I have installed are disabled as of today.

EasyPHP of old version(v1.8) installed is working well under same conditions without confliction as the port number changed to 8095. 

Posted: July 21, 2007 Comments (0)

How to shut down program on IIS

  1. Press and hold "Start" button on the right bottom of the screen, and then choose "run"
  2. On the field, type "Inetmgr" then IIS Manager will turn up
  3. On the left pane of IIS manager, click your Computer, then default website, then click the stop button.

        ref:http://support.microsoft.com/kb/185382/en-us

Posted: Comments (0)

How to change the Logo

You can change the Logo of the wiki by altering the $wgLogo variable in LocalSettings.php to the name of the image you want to use as a logo.

Please note that this logo should be placed in the /skins/common/images/ folder.

You can change the icon that is displayed in the address bar of your browser by changing a value in the /includes/Skin.php. Change the line from:

‘href’ => ‘/favicon.ico’ to ‘href’ => ‘/path/to/your/favicon.ico’.

Posted: Comments (0)

How to chage Skins/Templates

You can create a skin all by yourself by following the steps provided below:

  1. Go to your mediawiki directory;
  2. Copy the monobook directory and name it with the name of your skin, e.g: mygepskin;
  3. Copy the MonoBook.php file and name it with the name of your skin, e.g: MyGepSkin.php;
  4. Edit MyGepSkin.php and change the class name to SkinMyGepSkin, e.g: class SkinMyGepSkin extends SkinTemplate;
  5. In MyGepSkin.php, change make the other class to have your skin name together with the word Template, e.g: class MyGepSkinTemplate extends QuickTemplate;
  6. In MyGepSkin.php, make $this->skinname to have a string value of your skin name, e.g: ‘mygepskin’;
  7. In MyGepSkin.php, make $this->stylename to have a string value of your skin name, e.g: ‘mygepskin’;
  8. In MyGepSkin.php, make $this->template to have a string value of your skin name properly capitalised with the word Template, e.g: ‘MyGepSkinTemplate’;
  9. In your mygepskin directory edit the image and CSS files;
  10. Edit and customise MyGepSkin.php as you please;
  11. In LocalSettings.php set $wgDefaultSkin = ‘mygepskin’.

    ref:http://www.ehartwell.com/TechNotes/FrontPageWithMediaWiki.htm

Posted: Comments (0)