Posts Tagged Windows Vista

Microsoft Vista SP2 Released

Microsoft released the new service pack for Windows Vista and Windows 2008 over night.

Microsoft Vista Service Pack 2 includes improvements to windows media center, windows search 4 and removes the limit of 10 half open outbound TCP connections amoung many other improvements.

You can download SP2 for the 32-bit version here and the 64-bit version here

Tags: , , , , ,

No Comments

Install PHP 5 with IIS 7 (Windows Vista)

PHP

I had to get my hands dirty today and get a look at some code we’re developing. Having not developed personally in quite some time, I had no reason to have IIS installed, nevermind PHP!

So I set off on the task of installing PHP 5.2 on my Windows Vista machine. And here’s how I did it.

  1. Install IIS7
    Control Panel > Programs and features > Turn Windows features on or off
    From here I selected Internet Information Service. I dug a little deeper into Worldwide Web Services and turned on the ISAPI extensions.
  2. Download & Install PHP
    Download PHP http://www.php.net/downloads.php – for simple set up, get the zip package.
    Unzip your files to your preferred location, mine is C:\PHP
    Copy the php.ini-dist file into your windows folder. (C:\windows\php.ini)
  3. Open IIS Manager
    From your start menu, type iis and hit return to open IIS Manager.
    Select “default web site” and double click, “Handler Mappings”.
    On the right hand side – select “Add Script Map”In the dialogue that opens enter the following:
    Request Path: *.php
    Executable: C:\PHP\php5isapi.dll (*NOTE*: if this is where you’ve stored the unzipped files)
    Name: PHPClick OK. Then you will be asked “Would you like to enable the ISAPI extension”, choose Yes.
  4. That’s It!
    You might want to check it with a phpinfo file.
    e.g. Create a text file and type <? phpinfo(); ?>. Save this file as phpinfo.php, copy it into your C:\inetpub\wwwroot. Go to your browser and open http://localhost/phpinfo.php

Enjoy! :)

Tags: , , ,

7 Comments

The requested operation requires elevation (Windows Vista)

Windows Vista wallpaper (by Microsoft)
Image by Stijn Vogels via Flickr

We had a problem today in the office with a new laptop that is running windows vista.

Whenever we tried “ipconfig /release” or “ipconfig /renew” - we would get an error “The requested operation requires elevation”.

We finally found the solution, instead of simply opening a command prompt like before, we now need to run the command prompt as administrator.

To do this, all you need to do is go to:
All Programs > Accessories > right click Command Prompt and click Run as administrator!

I hope this helps you !

Tags: , ,

49 Comments