Saturday, November 25, 2006

Set up IIS 7 w/ MySQL and PHP 5

Hey fellas, this is my first Blog Post.
In my posts i'll try to share with you some experiences i've had in the past week during my work as a web developer.

As all of us are talking about the new coming Windows Vista, I decided to dedicate my first post to guide you all on how to setup IIS 7 along with MySQL and PHP 5. Before entering the venture myself, I searched the internet for tutorials on how about to do that, however, the closest i got was to install IIS 7, PHP and MySQL, however, everywhere i looked the PHP didn't work with MySQL.

I decided to go on the ride anyways, hoping to get it to work, and fortunately, i did ;).
Here is how i was about doing that:

First step, IIS 7.

I have Windows Vista RTM 64bits, thus this guide will show all the steps required to set it up on Vista 64bits, however, i will try mention all the steps that 32bit users should accomplish instead.
In order to set IIS 7 up, please go to Start->Control Panel->Programs->Turn Windows features on or off.
see yellow mark on the picture below



Inside the window that popped up, Look in the list for Internet Information Services. and check the box next to it.


Under "Internet Information Services"->"Web Management Tools" check "ISAPI Extensions".



Click ok and wait for it to install IIS 7. When finished close the Control Panel window.

That's it, IIS 7 is all set, in order to confirm that, you can try to go to http://localhost in your favorite browser.


Next step: PHP 5.


Because i was using the 64bit edition of Vista, instead of downloading the regular distribution from php.net i downloaded a 64bit version from http://www.fusionxlan.com/PHPx64.php, Please download the zip package, as of this time, the latest version is 5.2.0

People who are using the 32bit edition of Vista, please download the zip package from http://www.php.net/downloads.php.


Unzip the zip to your drive, i used C:\php. now inside C:\php you will find a file named php.ini-dist.

copy this file to c:\windows\ and rename it to php.ini (erase the -dist part).

Now open the php.ini in notepad.

Inside the file, look for the line ;extension=php_mysql.dll and delete the semi-color (;) from the beginning of the line.






Now save and close the file.

Next, let's copy the dll to the right place...

Go to c:\php\ext and copy the file php_mysql.dll. Now go to C:\Windows\System32 and paste the dll there.

When asked to, Click continue to gain Administrator privilege.

Now let's configure IIS to work with our PHP.

Go to start->run and start InetMgr.exe (IIS Manager).




Inside IIS Manager click on "Handler Mappings".




On the right side of the window, click on "Add Script Map..." (Yellow box in the pic below)


In the window that pops up, fill up the fields with these values:

"Request path:" *.php

"Executable:" C:\php\php5isapi.dll

"Name:" PHP

The window should look like this one when you are done.



Click "Ok", And when the "Add Script Map" dialog pops up, Click "Yes".

Ok, so we have PHP and IIS 7 working together, now it's time to add the last piece to the puzzle, MySQL.

Download MySQL, i used MySQL 5.1 located at: http://dev.mysql.com/downloads/mysql/5.1.html

32bit users, download the 32bit distribution, 64bit, download the 64bit one.

Once you downloaded the MySQL installer, 32bit users, all you have to do is go through the Installer steps (Click next,next next next) and you should be fine.

64bit users, you still got some little work, after installing the MySQL, i had a problem running the configuration wizard, in order to solve that problem, i used the following trick.

I downloaded the 32bit zip package (without installer), inside C:\Program Files\MySQL\MySQL Server 5.1\bin i renamed the file libmySQL.dll to libmySQL64.dll and copied the 32bit file into the directory instead. Then i ran the configuration wizard, and this time it worked.

After the configuration process was completed, delete the 32bit file from the directory and rename the file libmySQL64.dll back to libmySQL.dll.

That's it, you are all set with IIS 7+MySQL+PHP.

In order to make sure that everything is in order, create a file named test.php inside C:\inetpub\wwwroot\ and write inside

Then inside your favorite browser browse to http://localhost/test.php and you should see all the settings of your php installation, if you will scroll down, you should also see MySQL settings which will confirm that MySQL is indeed installed.


A fix for Sessions Issue: Vista seems to have a permission problem with php's session.

Symptom:
Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct () in Unknown on line

Solution:
In order to solve the issue, inside CMD as administrator (Right click on CMD.exe and "Run as administrator"). write these two commands:

icacls %windir%\serviceprofiles\networkservice\AppData\Local\Temp /grant Users:(CI)(S,WD,AD,X)

icacls %windir%\serviceprofiles\networkservice\AppData\Local\Temp /grant "CREATOR OWNER":(OI)(CI)(IO)(F)


Well, i hope that my first Post will assist at least some of you, any comments regarding my writing are welcome. And of course, if you have any questions or you are having any difficulties in the process, don't hesitate to comment and i promise to try and help with every comment.

Till the next time...

154 comments:

Jussi said...

Oh yes! I've been trying to get PHP to work on RTM Vista for few weeks now and now it finally works thanks to your post.

It seems like the only different thing you did was to use the dist ini file as template and copy the mysql.dll into windows\system32 folder. Somehow I haven't been able to reference to the file when it was in "ext" folder even though I've set the "ext" folder property in php.ini.

Thanks again!

Joseph said...

How do you manage to have .php and .html files be parsed with the php-module?

Koen said...

Thx for the tut, got PHP and MySQL working. Only problem with the "session bug". I cant get it to work, tried out your cmd line stuff but it gave me something about ID's.

the code i use is:

C:\Users\admin>icacls C:\Windows\ServiceProfiles\NetworkService\AppData\Local\Te
mp /grant Users:(CI)(S,WD,AD,X)
Users: Er is geen toewijzing uitgevoerd tussen accountnamen en beveiligings-id's (dutch version)

Contrid said...

Thanks for the great article.
I was looking for something useful like this to help me configure PHP on IIS7 Server

Marek said...

i didnt manage to make PHP working with extensions like mysql or openssl, in php.ini is everything set corretly, dlls are copied also to windows\system32

but they are stillnot working, core php works

Melle said...

Koen. If you use a Dutch version, maybe the usernames are also Dutch. Try 'Gebruikers' instead of 'Users'.

Blond R: You're genius... I was also struggling with IIS7 and PHP. Thanks!

Jørgen said...

Thanks! That really helped my get PHP and MySQL to work!

But I got a little problem: It seems like IIS7 don't understand css. There is no styles on the webpages.

Please help!

Thanks again!

Jay said...

You are my personal hero, you just solved the problem microsoft wanted to charge me 300 bucks to answer.... *sigh*

Much thanks, and keep up with all the good work

Jeremy

Emma said...

I found a few things I had to do to make this work:
- set ext dir in php.ini to the php/ext folder
- add computername/users permissions to the top folder of each virtual dir website
- copy libmysql.dll and libey32.dll to windows/system32

Jørgen said...

Thanks Emma! That worked just fine! But still got a CSS-problem. Cant got the stylesheet to work. Somebody help please!

Dustin said...

Awesome, I was trying to get this working and now it does, thanks.

David said...

thanks for the great guide, just to say that if you get errors of the kind "Call to undefined function mysql_connect()" try copying "libmysql.dll" from the main php folder into the system32 folder :) (more info here: http://www.siteinaweek.com/installphp5/howto.php) You can use phpinfo() to check if its picking up the mysql module !

Paulus Haryono said...

Thanks for a great tutorial, make my IIS7 now live with PHP and MySql, but still problem with Sessions Issue, can you inform where to start and the step by step to put the 2 commands.

icacls %windir%\serviceprofiles\networkservice\AppData\Local\Temp /grant Users:(CI)(S,WD,AD,X)

icacls %windir%\serviceprofiles\networkservice\AppData\Local\Temp /grant "CREATOR OWNER":(OI)(CI)(IO)(F)

Thanks.

Admin said...

thx, this really helpful i was looking for how to install php on iis7 and i found ur blog with this nice tutorial

http://thehiddenguide.blogspot.com/

Marchand said...

Gold star for public service to writing this up. Still a problem, though: While command line PHP commands work, referencing PHP pages through a browser -- independent of MySQL hangs the browser. That is, it just keeps spinning and never delivers the page. Any hints?

EG said...

Hey all, for those of you who were still having problem with the Session. here is a more general fix.
create a file inside c:\inetpub\wwwroot and name it test.php
inside the file write
phpinfo(); between php enclosers
access that file through your favorite browser (IE/FF/etc) using http://localhost/test.php

scroll to the bottom to where it says session.save_path
next to it, it should say something like:
C:\Users\user\AppData\Local\Temp\php\session

copy that path until \Temp. ie:
C:\Users\user\AppData\Local\Temp

now start a Privileged Admin CMD window. to do so, click on Start, in the search box type in cmd. it will show you cmd.exe on top, right click on it and 'Run as administrator'. once in. type these two commands, and replace the word path with what you copied earlier from the page (C:\Users\user\AppData\Local\Temp)
icacls path /grant Users:(CI)(S,WD,AD,X)

and the second line

icacls path /grant "CREATOR OWNER":(OI)(CI)(IO)(F)

just replace the word path and you are all set.

Chandrachur said...

Anyone using MYSQL and PHP using APACHE 2.x.x must copy and paste the php_mysql.dll file from the ext directory of you PHP directory and paste it in the PHPext folder of yours. You can check this by enabling the display_startup_errors = On in your php.ini file and restart the server...

mark said...

56

mark said...

Thanks Blond R, this is just what I've been looking for but I cannot get it working despite 4 attempts!

I've followed the instructions to the letter and everything appears to work fine but when I test it phpinfo() it shows all of the php installation settings but no MySQL. Any ideas where it might be going wrong?

I have Vista 32 and installed mysql-essential-5.1.18-beta-win32.msi

Any ideas would be very much appreciated.

Thanks
MarkP

Joseph said...

Hey man,

This guide rocks, thanks heaps for making it! i was starting to freak when i installed longhorn and there was no way to install PHP/MYSQL :)

Tom said...

TO GET MYSQL WORKING:

this guide did everyting EXCEPT install mysql on my server... finally i figured out you have to copy the library file (libmysql.dll) to the system32 folder as well. it should be right inside your c:\php folder

-Tom

arjen said...

Great! spend a whole day trying even with a few other guides. this one did the trick, thank you very much!

firstcolle said...

hi,
i have do all that you say in the first post, but when i using mysql i have this error Fatal error: Call to undefined function mysql_connect()

what can i do??

Kevin J. said...

Excellent. This is exactly what I was looking for. Thank you so much.

Garrick said...

It's odd, I can't seem to write to C:\inetpub. When I check properties, it's set to read-only. I uncheck it, click apply and ok. When I check properties again, it's set to read-only again. I'm the admin too, what should I do?

rubyred93 said...

Thank you VERY much! After looking for ages on how to setup up PHP 5 in Vista Ultimate this post finally helped.
The only question I have is that my page wont navigate to another one within the site - I get a 404 error saying the file cant be found. Is this something to do with the way I have set up the virtual directory?
Any suggestions?
Thanks again

Nastaran said...

I do this work . but every time I active extention php_mysql.dll in php.ini don't work my php

Steven said...

Has anyone figured out the issue of file uploads. I have a basic form that uses the normal file save scripting but it constantly returns a permission denied error anyone got any ideas. My file_uploads are on in php.ini and permissions for all users is set to full control still no joy. I am assuming its an iis 7 issue rather than a PHP 5.2 issue

Michael said...

to those who can't get php and MySQL to be recognized as an extension, copy libmysql.dll from the main folder of php to system32 along with php_mysql.dll. I was trouble shooting for two days straight!!!!

Pushker said...

it's a great tutor.

thanks.

Pushker said...

it's a great tutor.

thanks.

fatwazzer said...

Help! I have followed the above tutorial and checked and tripple checked what I have done and am positively sure I have followed every step. Yet, I still get the following server error:

Server Error in Application "localhost"
HTTP Error 500.0 - Internal Server Error

Description: The page cannot be displayed because an internal server error has occurred.

Error Code: 0x800700c1

Notification: ExecuteRequestHandler

Module: IsapiModule

Requested URL: http://localhost:80/test/phpinfo.php

Physical Path: C:\inetpub\wwwroot\test\phpinfo.php

Logon User: Anonymous

Logon Method: Anonymous

Handler: PHP

Most likely causes:

* IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.
* IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.
* IIS was not able to process configuration for the Web site or application.
* The authenticated user does not have permission to use this DLL.
* The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.

What you can try:

* Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.
* Check the event logs to see if any additional information was logged.
* Verify the permissions for the DLL.
* Install the .NET Extensibility feature if the request is mapped to a managed handler.
* Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.

More Information... This error means that there was a problem while processing the request. The request was received by the Web server, but during processing a fatal error occurred, causing the 500 error.

Microsoft Knowledge Base Articles:

* 294807

Server Version Information: Internet Information Services 7.0.

Has anyone experienced this problem too? I would be grateful of any advice.

Andrew said...

To whoever was having the CSS problem:

In the IIS manager, check if .css is listed under "MIME Types", if not then under "Actions" on the right click "Add...".
File Name Extension: css
MIME Type: text/css

Reg said...

re-installed iis7 on 32 bit vista.
Problems with my admin section now, i click the link and it goes directly to 401 error....invalid credentials. I used to click admin link and the login screen woiuld pop up.....now just directly to the 401......am i missing a module? is it a configuration problem.....
ur help is greatly appreciated.

Thanx
Krashink

saj said...

Thanks, just what I was looking for to get up and running on my new Vista machine.

Cheers pal

John Mulhern @ Pagoalball said...

I am getting the problem of this. I need help

Description: The page you are requesting cannot be served because of the Multipurpose Internet Mail Extensions (MIME) map policy that is configured on the Web server. The page you requested has a file name extension that is not recognized, and is not allowed.

Error Code: 0x80070032

Notification: ExecuteRequestHandler

Module: StaticFileModule

Requested URL: http://localhost:80/test.php

Physical Path: C:\inetpub\wwwroot\test.php
Logon User: Anonymous

Logon Method: Anonymous

Handler: StaticFile

Most likely causes:
Can someone please help me i cant get to the next step from going into Handler Mapping. Please post here or email tornado973@hotmail.com

John Mulhern @ Pagoalball said...

New error someone please help


HTTP Error 500.0 - Internal Server Error
Description: The page cannot be displayed because an internal server error has occurred.

Error Code: 0x800700c1

Notification: ExecuteRequestHandler

Module: IsapiModule

Requested URL: http://localhost:80/test.php

Physical Path: C:\inetpub\wwwroot\test.php

Logon User: Anonymous

Logon Method: Anonymous

Handler: PHP

Most likely causes:

IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.
IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.
IIS was not able to process configuration for the Web site or application.
The authenticated user does not have permission to use this DLL.
The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.
What you can try:

Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.
Check the event logs to see if any additional information was logged.
Verify the permissions for the DLL.
Install the .NET Extensibility feature if the request is mapped to a managed handler.
Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click here.
More Information... This error means that there was a problem while processing the request. The request was received by the Web server, but during processing a fatal error occurred, causing the 500 error.

Microsoft Knowledge Base Articles:

294807

--------------------------------------------------------------------------------
Server Version Information: Internet Information Services 7.0.

Pentagon said...

You are the king! Thenks!

Stephen Belanger said...

I followed your directions exactly for 64-bit installations, but on my installation, every time I try and load a php file, it would give me an error saying the MIME Type wasn't recognized, so I registered the MIME Type and now it tries to open with the file download dialog.

Alxandr said...

I get this:

Warning: session_start() [function.session-start]: open(C:\Windows\SERVIC~2\NETWOR~1\AppData\Local\Temp\\sess_69994a9d4570b5b3984484fde83d59b9, O_RDWR) failed: Permission denied (13) in C:\inetpub\wwwroot\test2.php on line 2

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\inetpub\wwwroot\test2.php:2) in C:\inetpub\wwwroot\test2.php on line 2

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\inetpub\wwwroot\test2.php:2) in C:\inetpub\wwwroot\test2.php on line 2

Warning: Unknown: open(C:\Windows\SERVIC~2\NETWOR~1\AppData\Local\Temp\\sess_69994a9d4570b5b3984484fde83d59b9, O_RDWR) failed: Permission denied (13) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct () in Unknown on line 0

Stephen Belanger said...

Anyone that gets the MIME Type problem, try FastCGI, it worked for me. Here's a link to how to download and install it.

http://www.iis.net/default.aspx?tabid=2&subtabid=25&i=1345

NetMyWay said...

I was able to install and setup the phpmyadmin on Windows Vista with your help. Thank you.
Can you tell me how to install phpmyadmin on Windows 2000.
Because their is no isapi module with Windows 2000, I used the php-cgi.exe as the php handler/application mapping. I am able to use the program but I get
the error message:
Error in my_thread_global_end(): 1 threads didn't exit
at the bottom of every php page in my phpmyadmin application when I view them in my browser.
(It doesn't happen in my other php applications that use mysql.)
I understand what a thread is but I don't understand why I am getting the error message.
Please help

Cecil H said...

Blond R

Thanks a bunch I have been working on a lamp environment since college. But my new laptop is a bit to new to make the switch. I will say that everything worked out fine thank you. Also I will say that this almost and I mean almost as much of pain in ass to set up as php and mysql on a solaris box. But thanks a bunch. saved me some time and headache.

Alxandr said...

I have a problem... I can't load the extensions located in the ext file... When I run the php.exe file (in cmd) i get that it could not load dynamic archive or somthing and than the path it was searching for, the only thing strange is that that file-path is accactly the correct path... What do I do?

jaccess said...

I was wondering if you could answer what should be an easy question, how do I enable mysql in php 5.2.5?

Because there is no extension=php_mysql.dll in the php.ini file:
;extension=php_mysql.dll
To remove the semi-colon:
extension=php_mysql.dll

Thanks for your help!

Graefen said...

You are THE MAN! Vista/IIS7 has some weird issues like this, so I'm glad someone out there has the time to figure stuff like this out!

Chris said...

So I'm running Vista Ultimate 64 and the most recent 64 bit versions of php and mysql are installed, however I can't get any error other than "Call to undefined function mysql_connect()...". I have tried moving the php_mysql/php_mysqli/libmysql, etc files into the system32 folder, to no success.

Is there someone who knows what the problem is? I'm at my wits end for waiting on an official 64bit php version that has updated mysql drivers. I've tried running 32bit php with IIS set to allow 32bit, but that only results in unending server 500 errors.

To recap, I can run php64 with no problems, but not access mysql commands. The mysql64 server is working just fine, so the only problem I can think of is the communication between php and mysql with the driver files. All help would be appreciated!

Tmacster said...

Thanks for the post. I am new to PHP and MYSQL. I also just purchased a windows vista computer. Your post really helped me get everything setup so I can start working with PHP.

end said...

Hey, Thanks!, Gracias!.
Your blog is the only place where someone can find useful information to have installed and running PHP5 and IIS7.

I just have a problem with the test.php file because Im starting on this and couldnt understand.

If it is useful for other users here I write what you have to include inside that file:

#html>
#head>
#title>Ejemplo de PHP#/title>
#/head>
#body>
#?php phpinfo(); ?>
#/body>
#/html>

Just replace "#" with "<" because blogger dont allow to write this code

peterwu291 said...

Thanks for the effort you put into this. I did everythng you said, and no problems there, until I set up test.php, and if i open in IE, it asks me to save it, and its a txt file. know what im doing wrong?

thanks

rkg said...

Thanks for the information, for installing php mysql on iis7.
I have followed as per guidelines.
Iam able to see phpinfo but no information about mysql.
when i set up connection to mysql database, get the error
fatel error:undefined mysql_connect() function.
I have copied php.ini after removing the ; from the extension=php_mysql.dll line in windows folder.
I have copied libmysql.dll and php_mysql.dll in system32 folder.

Dat said...

first run, mysql creates a table.
and i delete this table. Then try to run again but it can not create any more table. no error report
Any help, please.

Andy said...

Well, it's taken me about 6 months to do it but I'm there!

Why is this so hard to do?!

Thanks Blond R

noox said...

To fix the session problem on a German Vista you have to use 'Benutzer' instead of 'Users' and 'ERSTELLER-BESITZER' instead of 'CREATOR OWNER':

icacls %windir%\serviceprofiles\networkservice\AppData\Local\Temp /grant Benutzer:(CI)(S,WD,AD,X)

icacls %windir%\serviceprofiles\networkservice\AppData\Local\Temp /grant "ERSTELLER-BENUTZER":(OI)(CI)(IO)(F)

Blond R said...

Hey guys, sorry for not replying to many of your posts lately, i've been keeping busy. to all of you who are having problems communicating with mysql or not seeing mysql under phpinfo(); make sure that your php.ini file has mysql uncommented. also make sure you are changing the right path. under phpinfo() you will find the exact path of php.ini, make sure you are changing the right now.
please stay tuned for new posts and how-tos. everything from AJAX to PHP to some other cool stuff.

Redd said...

IMPORTANT!


If you have copied the php.ini to Windows directory, edit the following in it:

Search for:
extension_dir =

and change it to :

extension_dir = "./system32"

NOW it'l show up in phpinfo.

Osvaldo Domingo said...

New error someone please help


HTTP Error 404.0 - Internal Server Error
Description: The page cannot be displayed because an internal server error has occurred.

Error Code: 0x800700c1

Notification: ExecuteRequestHandler

Module: IsapiModule

Requested URL: http://localhost:80/test.php

Physical Path: C:\inetpub\wwwroot\test.php

Logon User: Anonymous

Logon Method: Anonymous

Handler: PHP

Most likely causes:

IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.
IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.
IIS was not able to process configuration for the Web site or application.
The authenticated user does not have permission to use this DLL.
The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.
-----------------------
I had Inll Vista Bussines 64, Intel Xeon Quad, and did all for this article, but i had the error... Can I do ?

rkg said...

Thanks for the input on PHP and MYsql on Vista. After following your inputs i am able to install IIs7, PHP and Mysql on the machine. I am failing in setting the link between PHP and Mysql. When I check phpInfo(). It does not show me the installation of MYSQL. I am able to work independently on MySQL. I am not in a postion to resolve the issue. Kindly help me in this matter.
Thanks

Osvaldo Domingo said...

Inside IIS Manager click on "Handler Mappings". you need to add Edit Handler Permissins and click in Execute, for Isapi and cgi, show the content for test.php, I'm trying to finish install, but it is difficult

Blond R said...

Hey guys, just wanted to let you all know that from now on I will be posting new posts on my website's blog. http://www.interiders.com/
I've also reposted this post, and will answer any questions that will be posted there as i get email notifications when comments are posted. so if anyone needs my help, please post your questions over there..
thanks all, cya all on my page.

Lynz N Gaz said...

Hi,

I am new to Vista and just as new to IIS. I have successful installed IIS and PHP as suggested but each time I go to http://localhost/test.html or http://localhost/test.php the page render blank. If I veiw the source code it merely defaults to typical HTML info (hearders, body etc).

I would really appreciate anyone's help here......

cheers
Gaz

Plamen Kasabov said...

First of all see if you web site is runnung now. If it is not the cause maybe is the usage of port 80 by another program - often skype. See this post. I think it will help you
http://w3ka.blogspot.com/search?q=skype

jan said...

Thanks alot ;) Works like a charm, only thing I noticed is that PHP is looking in C:/php5/PEAR for possible extension, so one either wants to change that path or use PHP5 as directory name if you want to work with PEAR modules.

Rahul said...

Just in case you have issues getting extensions working fomr ext directory like i had for PHP_SOAP.dll....i changed following in IIS7....

In the handler mappings window that pops up, fill up the fields with these values:

"Request path:" *.php

"Executable:" C:\php\php5isapi.dll (change to C:\php\php-cgi.exe)

"Name:" PHP

Antonio said...

Thanks so much !
that was very very helpful !

Lou said...

My method for vista 64-bit, which I believe is neater:

1. Install IIS:
Go to "Turn Windows features on or off".
Tick the box by "Internet Information Services" (so that it is half-filled).
Also tick "ISAPI Extensions" under "Internet Information Services" > "World Wide Web Services" > "Application Development Features".
Click OK.

2. Unzip PHP.
Download the most recent zip package under windows binaries from http://www.php.net/downloads.php (currently "PHP 5.2.5 zip package"). Unzip this to C:\php. In this folder, take off the -recommended from php.ini-recommended.

Now we need to add C:\php to the windows Path. Control Panel > System > Advanced System Settings. Under System Variables, choose Path and click Edit. Add ;C:\php to the end (the semicolon seperates the previous entry). Click OK.

3. Set up PHP in IIS.
Add the Handler Mapping as Blond R says to. Now, the PHP version we have unzipped is 32 bit. To get IIS to run it we go to inetmgr > Application Pools. Click DefaultAppPool, then Advanced Settings on the right hand side.
Change "Enable 32-Bit Applications" to True.

All done. 64-bit IIS7 working with standard 32-bit php.

thinking_much said...

Great post! PHP worked well just following your instructions. Thank you for this.

Mahmood said...

Hey!

I was able to run PHP on my Vista Ultimate after quite a lot of tries. Now that it is working I have a new problem. PHP does not see the mySQL Server up and running. Any work arrounds?

I am using Vista Ultimate 64-bit, mySQL 5.045 (64 bit), PHP 5.2.5 using FastCGI for IIS 7.0.

All the localhost stuff is working great ODBC connections are fine, except that PHP built-in setup does not see mySQL.

I installed OSCommerce and it simply says mysql is not installed on the machine.

Any suggestions?

Vinícius said...

php works nearly perfectly but I refused to place the php_mysql.dll in the windows dir so I configured the php.ini to look for extensions in C:\php\ext. Nothing goes wrong until I try to use mysql with phpMyAdmin for an example and I get the folowing message: "PHP has encountered an Access Violation at 01C4A119", and all php pages stop working until I restart IIS. I also tried to leave the php.ini file in the php dir and changed the Path variable to use C:\php but it keeps loading the php.ini file from C:\windows. I had no choice but to move the php.ini file to the windows dir. Anybody knows how to fix these problens?
I´m using Win Vista Ultimate 32-bit

Chris said...

I've been trying for 3 weeks now to get IIS, PHP and MySQL to work under Vista. I can successfully get PHPInfo to display which shows MySQL installed but as soon as I define a connection to the MySQL database with a recordset, displaying the page causes an Error 500 from the isapi module. Inetpub logs just indicate that it was an 'error 0x0 - operation completed successfully' (big help..) I'm at wits end and any help would be appreciated. I can't begin building anything until I figure out why a MySQL connection

sitlo2 said...

The 32 bit trick for vista 64 bit didn't work for me.
I've still got the 1045 error message.
I am still a newbie in this stuff :D

sorin said...

Like a lot of guys from here I get this error 500.0. PHP works fine but not MySql.
Please BLOND R tell us what to do in this situation, if you know the answer.

Peter said...

simply Thanx Blond R.
it works for my Vista and PHP 5
Great Post. Never change.

Yolande said...

I have a error in IE.... HELP
HTTP Error 500.21 Internal Server Error
Handler "PHP" has a bad module "AnonymousAuthenticationModule" in its module list..


Which mosule should I use?

sorin said...

To solve the problem with IIS7 I did what one of my professors said: I installed wamp and I don't have to deal with any error like 500, 400, etc.
Now I have a server and I can test my web sites without using IIS7.

FS said...

I'm sure you get (don't) get tired of hearing this but your instructions saved me a whole day of headaches for php/sql/II7 install.
Others tried and died in their tedious and odious directions!
Kudos to you and others out their who donate their brain cells to the betterment of human-kind!

Fred Myers
www.dizziedesigns.com

News Key said...

Its a great Help, thaanks a lot

News Key said...

Its a great Help, Thaaanks a lot.

News Key said...

Its a great Help, thaanks a lot

Ian said...

Fantastic guide - after trying to do this for 2 days your guide is so simple & straight forward. Many thanks.

headache said...

well I've tried every tutorial I can find and can't get this to work. I am using a new laptop with Vista Business, installed IIS7 and all seemed peachy. added the script map handler and it all went pear shaped (excuse the pun). any advice gratefully recieved.

Gorka said...

Hey man, thanks for taking the time and helping others. Huge bummer here:
Installed IIS7 did step by step to install PHP and after running phpInfo() script I get a 404 error about IIS not recognizing the file extension.
Any ideas?
Help will be much appreciated.
Cheers,
Gorka

News Key said...

As a matter of fact, I formatted my hard disk, then I installed the Appserv from http://www.appservnetwork.com/.
Dont reinstall the IIS.
Download the appserver from the above link and install on ur machine.
The apperv server runs automatically for you the Apache, MYSQL and PHP.
Your local host will be on the appserv folder of your C drive.
Try it and Good luck

Ryan said...

You may referral to this link.
You problem is the php by default is 32 bit, and your Vista is 64 bit, therefore you need enable this in IIS

Application Pools \ DefaultAppPool \ Advanced Settings… \ (General) Enable 32-Bit Applications: True

By default it’s false.

Cheers,

darren said...

hi my friend, i having a major problem now, i have an red "x" during the last party while executing mySQL instance configuration and it says: " Cannot create Windows service for .Error: 0" what should i do now?

KAFLAN said...

> Joseph said...

> How do you manage to have .php and .html files be parsed with the php-module?

Did any1 find solution for this?

I`m very intersted. If u are, plz post solution here or mail me to: dmitry@kaflan.ru, thx a lot!

tty01 said...

Did not worked for me...

First, the only modern 64-bit compatible version of PHP I've found is php-5.3.0alpha2-Win32-VC9-x64.zip
(http://windows.php.net/downloads/qa/). I'm using Vista Business 64-bit SP1.

Second, there is no file php5isapi.dll inside the archive, so I've installed it in IIS as CGI-module.

Third, any PHP-script returns the following:

Fatal error: Unknown: Failed opening required '-' (include_path='.;C:\php5\pear') in Unknown on line 0

Can't really understand, what IIS needs - "Failed opening required '-'", especially "on line 0".

Ben Margolis said...

This worked! Thanks! The additional step for me was to add the script map to Default Web Site.

ชุลีพร สืบสิน said...

I use 32 bit, but it like your tutorial.

Thanks so much.

C DEEPAK said...

thnks a ton dude..

Giridhar S said...

but i get one mistake mycrpt extension failed to load
just take a lool at http://giridharseel.wordpress.com/

Michal &amp; Eli said...

HELP! I did everything you said, my apache works, the phpinfo gives me all the info - I installed iis7 according to all your instructions... My computer doesn't recognize a php program when you click on its icon it flashes the IE page and then a blue box comes up and asks me if I want to open the program or save (choosing open gets you nowhere)

梦中林 said...

When the Wow Gold wolf finally found the Buy Wow Goldhole in the chimney he crawled wow gold cheap down and KERSPLASH right into that kettle of water and that was cheapest wow gold the end of his troubles with the big bad wolf.
The next day the cheap wow gold little pig invited his mother over . She said "You see it is just as mygamegoldI told you. The way to get along in the world is to do world of warcraft gold things as well as you can." Fortunately for that little pig, he buy cheap wow gold learned that lesson. And he just k4gold lived happily ever after!

wowgoldme said...

cheep wow gold,buy wow goldworld of warcrft gold.

coco0610 said...

wholesale jewelry , supply vast kinds of styles handmade jewelry,mainly engage in handmade jewelry wholesale handmade jewelry,such as wholesale pearl wholesale crystalwholesale gemstone,wholesale costume jewelry,also wholesale fashion jewelry like wholesale swarovski crystal,wholesale beads,wholesaleturquoise,wholesale coral,wholesale costume jewelry ,shell jewelrycostume jewelry and discount jewelry, jewelry wholesale, just on AYpearl jewelry store.

梦中林 said...

A slim, wide-eyed mygamegoldwoman almost human in virbanksfeatures eyed agamegold the pair. Her nose was sharp, but very elegant. She had tbcgold a pale, trade4gamebeautiful face the color of ivory, and veryge for hair she wore a wondrous mane of downy feathers. Her gown fluttered as she walked—on two delicate worldofgolds but still sharply-taloned feet. “Awake, awake you are,” she said with a pvp365 slight frown. “You should rest, rest.” Krasus bowed to her. “I am ezmmorpg grateful for your ighey hospitality, mistress, but I am well enough to continue on9a9z now.” She cocked her head as a bird might, giving the mageltk365 a reproving look. “No, no…too soon, toogold4guild soon. Please, sit.” The duo looked around u4game and discovered that two chairs, made in the same ready4game fashion as the nest, waited behind happygolds them. Malfurion waited for Krasus, who finally nodded and sat.

wow gold said...

wow goldwow goldwow accountwow gold

coco0610 said...

wholesale jewelry , supply vast kinds of styles handmade jewelry,mainly engage in handmade jewelry wholesale handmade jewelry,such as wholesale pearl wholesale crystalwholesale gemstone,wholesale costume jewelry,also wholesale fashion jewelry like wholesale swarovski crystal,wholesale beads,wholesaleturquoise,wholesale coral,wholesale costume jewelry ,shell jewelrycostume jewelry and discount jewelry, jewelry wholesale, just on AYpearl jewelry store.

chinaspecial said...

China Highlights
China Highlights
China Tours
China Hotels
China Attractions
Beijing China Travel
Shanghai China Travel
Xi'an China TravelGuilin China TravelYangshuo China Travel
China custom toursChina special toursChina custom TravelChina special travel

belrion16 said...

buy wow goldAsesor ProfessionalUruguayProfessionalbuy wow goldOfficeLinksNotice

筱娅 said...

Have you heared about 9Dragons which you need use 9Dragons gold to play, and you can also borrow 9 Dragons gold from other players? But you can buy 9 Dragons gold, or you will lose the choice if you do not have cheap 9Dragons gold. If you get 9Dragons money, you can continue this game.
Have you heared about 9Dragons which you need use Anarchy credits to play, and you can also borrow Anarchy Online credits from other players? But you can buy AO credits, or you will lose the choice if you do not have Anarchy online gold. If you get Anarchy gold, you can continue this game.

feilin said...
This post has been removed by the author.
feilin said...

I like holic gold very much. Since I entered into this game, I learnt skills to earn holic money. Thanks to holic online gold let me know a lot of friends. It is my habit to buy holic online money, and I get some cheap holic gold from my friends and Internet.
I like to play last chaos, because I like its name, also I like last chaos gold. My friend told me that she would buy lastchaos gold for me, and I was so happy. I do not like to go shopping, because it always spends a lot of money, but I never hesitate to buy last chaos gold. You can buy cheap lastchaos gold; it is so easy and convenient. I believe the future of lastchaos money is bright.

buy wow gold said...

When the Wow Gold wolf finally found the wow gold cheap hole in the chimney he crawled cheap wow gold down and KERSPLASH right into that kettle of water and that was cheapest wow gold the end of his troubles with the big bad wolf.

game4power.
The next day the Buy Wow Goldlittle pig invited hisbuy gold wow mother over . She said "You see it is just as Cheapest wow goldI told you. The way to get along in the world is to do world of warcraft gold things as well as you can." Fortunately for that little pig, he buy cheap wow gold learned that lesson. And he just wow gold lived happily ever after!.

belrion18 said...

buy wow goldbuy wow goldbuy wow accountbuy wow gold

casiyasin said...

pearl jewelry,wholesale pearl

jewelry
,silver jewelry,pearls at http://www.casijewerly.com

cheap wow gold said...

I am glad to talk with you and you give me great help! Thanks for that, I am wonderring if i can contact you via email when i meet problems?.you can buy cheap wow gold,wow account,runescape wow gold on these website jackwalk1985

梦中林 said...

A slim, wide-eyed mygamegoldwoman almost human in virbanksfeatures eyed agamegold the pair. Her nose was sharp, but very elegant. She had tbcgold a pale, trade4gamebeautiful face the color of ivory, and veryge for hair she wore a wondrous mane of downy feathers. Her gown fluttered as she walked—on two delicate worldofgolds but still sharply-taloned feet. “Awake, awake you are,” she said with a pvp365 slight frown. “You should rest, rest.” Krasus bowed to her. “I am ezmmorpg grateful for your ighey hospitality, mistress, but I am well enough to continue on9a9z now.” She cocked her head as a bird might, giving the mageltk365 a reproving look. “No, no…too soon, toogold4guild soon. Please, sit.” The duo looked around u4game and discovered that two chairs, made in the same ready4game fashion as the nest, waited behind happygolds them. Malfurion waited for Krasus, who finally nodded and sat.

game gold said...

To buy rappelz rupees , it is not the aim of the rappelz. It is the game which brings a lot of happiness to me. We buy the rappelz gold together. The beautiful story, we can not be forgotten, buy rupees . You will not regret to have rappelz money . So I will continue to have cheap rappelz rupees , it is a beautiful fairy tale, it looks like my life.

On account of I have rohan crone , I am not afraid of the lonely. At that time I do not know the meaning of it. Later I buy rohan gold . And every time, I have no rohan online crone , I will feel very anxious. Why I buy rohan online gold , please it gives me such a warm place. At the moment, I have rohan money .

jislsnhd said...

I always heard something from my neighbor that he sometimes goes to the internet bar to play the game which will use him some Pirates of the Burning Sea Gold, he usually can win a lot of potbs gold, then he let his friends all have some potbs Doubloon, his friends thank him very much for introducing them the potbs money, they usually buy potbs Doubloon together.
I am so happy to get some ro zeny and the ragnarok zeny is given by my close friend who tells me that the iro zeny is the basis to enter into the game. Therefore, I should cheap zeny with the spare money and I gain some ragnarok online zeny from other players.

陈凯燕 said...

Do you know 2moons dil? I like it.
My brother often goes to the internet bar to buy 2moons gold and play it.
After school, He likes playing games using these 2moon dil with his friend.
I do not like to play it. Because I think that it not only costs much money but also spend much time. One day, he give me many buy 2moons dil and play the game with me.
I came to the bar following him and found cheap 2moons gold was so cheap. After that, I also go to play game with him.


Do you know Asda Story gold? I like it.
My brother often goes to the internet bar to buy Asda Story money and play it.
After school, He likes playing games using these buy Asda Story Gold with his friend.
I do not like to play it. Because I think that it not only costs much money but also spend much time. One day, he give me manycheap Asda Story gold and play the game with me.

jislsnhd said...

I always heard something from my neighbor that he sometimes goes to the internet bar to play the game which will use him some mabinogi gold,he usually can win a lot of cheap mabinogi,then he let his friends all have some mabinogi money,his friends thank him very much for introducing them the buy mabinogi gold,they usually mabinogi online gold together.
I am so happy to get some maple mesos and the mesos is given by my close friend who tells me that the cheap mesos is the basis to enter into the game. Therefore, I should maplestory mesos with the spare money and I gain some maple story mesos from other players.

mei said...

You smart and buy Sword of the New World Vis, you play the game is right, Sword of the New World Gold. you have a wonderful time, buy vis, I have it cheap snw vis, I buy Sword of the New World money.

If you want to buy gold, you can Tibia Gold, because the game nice Tibia coins. Thanks for you buy Tibia money, you will find tibia gp, You are right Tibia Platinum,I am glad to see you.

game gold said...

Buy Rom Gold is the chance. I always have a bad dream when my account was theft, since I buy Rom Gold ; I had not had the bad memory. At present, I want to say thanks to the people who stole my account, if he did not to do that, I would not play game, I would not have Runes of Magic Gold . Although I have little Runes of Magic money , I will on the way of the game for long time. At one time or another, I am a pessimistic person, but when I have cheap Runes of Magic Gold , it changes my attitude of life.

Remembered the first time I played the game and bought wonderland Gold , it is about two years. Since the first day I bought wonderland online Gold , we should know that the day will come sooner or later. And I will not leave my wonderland money . My friends forever, even though I will leave you one day, I will remember you forever. At that time, I was a naive; I must used money to buy wonderland Gold , as that I would not depend on myself. But I was not regret to buy cheap wonderland online Gold . It is just a way bring me to the success.

cheng said...

Do you want to know the magic of online games, and here you can get more knight gold. Do you want to have a try? Come on and knight noah can make you happy. You can change a lot knight online gold for play games. And you can practice your game skill. Playing online games can knight online noah. I often come here and buy it. And you can use the cheap knight gold do what you want to do in the online game.
What do you know requiem gold. And do you want to know? You can get requiem lant here. And welcome to our website, here you can play games, and you will get requiem money to play game. I know cheap requiem lant, and it is very interesting. Do you want a try, come and view our website, and you will learn much about requiem online gold.

feilin said...

My friends and I like to buy habbo credits, because the habbo gold is very useful to upgrade equipment. Only your equipment becomes better, then you can win this game. In habbo coins, you can buy everything you want in this game. Tomorrow will be my birthday, so my friends promise to buy habbo gold as gifts. I am so happy. They understand me so well, cheap habbo credits is my favorite.
I like hero gold very much because it is very useful. In fact at first sight I have fallen in love with hero online gold. So no matter how much I have spent to buy hero gold, I never regret. Because of hero online money, I meet a lot of friends. So I never hesitate to buy hero money.

cheng said...

What do you know aoc gold. And do you want to know? You can get conan gold here. And welcome to view our website, here you can play games, and you will get age of conan gold to play game. I know cheap aoc gold, and it is very interesting. Do you want a try, come and view our website, and you will learn how to aoc money. Come and join with us. We are waiting for your coming.

What do you know FFXI Gil. And do you want to know? You can FFXI gold here. And welcome to our website, here you can play games, and you will get Final Fantasy XI gold to play game. I know buy FFXI Gil, and it is very interesting. I like playing online games. Do you want a try, come and view our website, and you will learn much about cheap Final Fantasy XI Gold. Come and join with us. We are waiting for your coming.

buy wow gold said...

There are several tbcgold races stand up and take the fightakgame to the demons under assault by the Legion. The races are unaligned at character mygamestock start, and can choose to become ttgaming friendly with either Horde or Alliance over the course of their careers. Faction gained belrion with one side eventually live4game causes faction loss with the other, until the character is as much Horde or Alliance as an Orc or mmopawn Human. Each race has awowgoldget starting city with 1-20 zone content.
When you hunt, the enemies you agamegoldkill drop items, and even the most useless ones can be sold to vendors for money. Quests trade4game on the other hand give up rewards in money and items, the money gamersell part is most useful as it is usually a large sum world of warcraft rpg-tradergold. Crafting is also another alternative for earning Gold, you just choose wowpoweronany two professions and use it to gather raw materials or create gamegoodyitems which you can sell to vendors or players. Items sell egrichhigher to players since vendors have a set price and people always want to buy wow gold us ogpalat a lower price than the vendor but sell at a higher price, so there usually is a euwowgoldmiddle price world of warcraft gold. To see what the going ratemymmoshop is, type in "PC" (Price Check) in the Trade Chat window and the item you want to price check and someone should reply with the going-rate for that item

isis said...

When the high elves wow gold are striving for survival against the trolls, violent shock army of lordaeron continent students are facing humanity to consolidate their tribal lands, these primitive tribe attacks of other ethnic groups, no care what honor when settlements and racial solidarity. Finally, a named arathi tribal realize troll has become for humans do not neglect the threat. Hope all the arathi tribe by tribe, so they can now organized a united front against the trolls army.

Resourceful arathi department 6 years of falling YongJi, MouHe force with their opposites beat all the tribes. Every defeat a tribe, arathi tribes are given by the wow gold people to conquer their peaceful life and equal rights, therefore, they won the defeated loyalty. Finally the arathi tribal contain many various tribes, their troops also rapidly growing up. They can be confident in himself to beat the troll army, even 永恒之塔代练 if necessary can beat the isolation of the elves, arathi warlords in lordaeron to build a strong fortress southern city. This is called the rapids city-states became the arathi people -- capital of arathor. With the prosperity of arathor and mainland have all humans everywhere to safe and reliable rapids.

Under the same belief in human solidarity, numerous tribal gradually developed a powerful civilization. King of arathor butyl know north of esomeprazole elves is being troll continuous siege, but he refused to use him as the life of people to help unknown elf risk. wow gold Many months passed, about the elves are prevailing in the gradual spread rumors of lordaeron. When the ambassador to exhaustion quayle salas, solana rapids DingCai realize troll threat is so great.

The elves, tell sola troll army very big, when quayle salas, they were troll to destroy the forces will be down. Despair because of the elves in urgent need of military aid to promise that, the human species was selected to exchange their magic resistance troll troops in to help elves. Although all of any cheap wow gold spell esomeprazole distrust of necessity, but he was promised to support the elves. Soon, a group of elf mage rushed to rapids and began to teach a group of human memory of magic.

The elves found that although mankind in casting appear to compare clumsy, but they still have a magical an amazing talent. One personal learning some very basic elven magic, these aion代练 people just enough to help against the trolls elves. The elves are convinced that they have for the human apprentice aid in combat ready, then left back, and cheap wow gold the rapids powerful army esomeprazole butyl king fought.

buy wow gold said...

There are several tbcgold races stand up and take the fightakgame to the demons under assault by the Legion. The races are unaligned at character mygamestock start, and can choose to become ttgaming friendly with either Horde or Alliance over the course of their careers. Faction gained belrion with one side eventually live4game causes faction loss with the other, until the character is as much Horde or Alliance as an Orc or mmopawn Human. Each race has awowgoldget starting city with 1-20 zone content.
When you hunt, the enemies you agamegoldkill drop items, and even the most useless ones can be sold to vendors for money. Quests trade4game on the other hand give up rewards in money and items, the money gamersell part is most useful as it is usually a large sum world of warcraft rpg-tradergold. Crafting is also another alternative for earning Gold, you just choose wowpoweronany two professions and use it to gather raw materials or create gamegoodyitems which you can sell to vendors or players. Items sell egrichhigher to players since vendors have a set price and people always want to buy wow gold us ogpalat a lower price than the vendor but sell at a higher price, so there usually is a euwowgoldmiddle price world of warcraft gold. To see what the going ratemymmoshop is, type in "PC" (Price Check) in the Trade Chat window and the item you want to price check and someone should reply with the going-rate for that item brogameswagvaultgoldsoonoforuigxethsale

cheap wow gold said...

www.wowgolds.org has the lowest wow gold price in the cheap wow gold market.The store has been dealing with wow gold business for 5 years.Every day thousands of customers come to buy wow gold for its cheaper price.Our store has stored a large number of World of Warcraft Gold. Customers can purchase wow gold of any characters at any time. And we also provide the best services for customers. We can deliver the World of Warcraft Gold in just 30 minutes,and make the whole online transaction of cheap wow gold in only 10 minutes.jackwalk1985

It is so convenient for you to buy wow gold.Our store is the best choice for you to buy the cheapest World of Warcraft gold. What are you waiting for? Come quickly and get the wow gold you want.

To said...

Jewelry MarketKorean Jewelry

kiloi said...

chaussures puma stores offer you the most popular fashion shoes, including the puma basketpuma puma BanXie and shoes. All the puma product factory direct sale, special processing, create the most inexpensive puma stores.National Weather Service Meteorologist Jason puma CAT said this week's temperatures will mirror seasonable averages of highs around 71 and lows about 42 degrees ...

kiloi said...

nike tnEnter the necessary language
translation, up to 200 bytes winter, moves frequently in Chinanike chaussures showing that the deep strategy of the Chinese market. Harvard Business School, tn chaussures according to the relevant survey data show that in recent years the Chinese market three brands, Adidas, Li Ning market share at 21 percent, respectively,

kiloi said...

Puma shoes , Ugg Boots , nike max shoes, NIKE AIR MAX TN ,nike max shoes ,PUMA CHAUSSURES, NIKE SHOX Torch ,puma Ferrari F1 ,PUMA DRIFT CATmens clothing men's sweate, cheap columbia jackets, lacoste sweater, ralph lauren polo shirts,ski clothing. Free Shipping, PayPal Payment. Enjoy your shopping experience on mensclothingstore.Us

kiloi said...

ralph Lauren polo shirts , Lacoste Polo Shirts, Burberry Polo Shirts.wholesale Lacoste polo shirts and ralph Lauren polo shirts with great price. clothingol.com offers lot of 10 lacoste polo shirts and lot of 20 cheap polo shirts. clothingol.com offers classic fit polo shirts. polo clothing All our shirts made in original factory.

kiloi said...

polo shirtsLacoste polo shirtsralph lauren polo shirts chaussure pumachaussure sport chaussure nike ugg boots
cheap ugg boots
black ugg boots

kiloi said...

puma mens shoes
nike air max ltd
NIKE air shoes
ed hardy clothing ed hardy clothes ed hardy shirtsed hardy clothing ed hardy clothesed hardy shirts

梦中林 said...

A slim, wide-eyed mygamegoldwoman almost human in virbanksfeatures eyed agamegold the pair. Her nose was sharp, but very elegant. She had tbcgold a pale, trade4gamebeautiful face the color of ivory, and veryge for hair she wore a wondrous mane of downy feathers. Her gown fluttered as she walked—on two delicate worldofgolds but still sharply-taloned feet. “Awake, awake you are,” she said with a pvp365 slight frown. “You should rest, rest.” Krasus bowed to her. “I am ezmmorpg grateful for your ighey hospitality, mistress, but I am well enough to continue on9a9z now.” She cocked her head as a bird might, giving the mageltk365 a reproving look. “No, no…too soon, toogold4guild soon. Please, sit.” The duo looked around u4game and discovered that two chairs, made in the same ready4game fashion as the nest, waited behind happygolds them. Malfurion waited for Krasus, who finally nodded and sat.
brogameswagvaultgoldsoonoforuigxethsale

ally said...

1 Alli + 2 Alli plus 3 Alli, divided by 2 Alli, gives you 3 AlliHow many Alli do you get if you divide pastila Alli to pastila de slabit Alli?

sky22d said...

polo ralph lauren integrates two types of luxury and leisure style, now more and more popular men’s burberry polos“thin” sense, most designers have sought to perfect the cut with “cutting” polo women clothing a bag of bones polo logo of the body. It is amazing that a tight lacoste polo shirts with pencil pants, full of retro style with a European aristocratic culture of leisure. Color of polo shirts in vogue, including white polo shirt, pink polo shirt, blue polo shirt , and yellow cheappolos , timely reflects the mainstream of men’s summer fashion colors polo fashion.

Siniša said...

Thanks, you're the man.

nike said...

Lacoste polo shirts
north face jackets
cheap handbags
cheap purse
women's nike shoes

J&amp;D said...

米蘭情趣用品,情趣用品,情趣,飛機杯,自慰套,充氣娃娃,AV女優.按摩棒,跳蛋,潤滑液,角色扮演,情趣內衣,自慰器,穿戴蝴蝶,變頻跳蛋,無線跳蛋,電動按摩棒,情趣按摩棒


辣妹視訊,美女視訊,視訊交友網,視訊聊天室,視訊交友,視訊美女,免費視訊,免費視訊聊天,視訊交友90739,免費視訊聊天室,成人聊天室,視訊聊天,視訊交友aooyy
哈啦聊天室,辣妺視訊,A片,色情A片,視訊,080視訊聊天室,視訊美女34c,視訊情人高雄網,視訊交友高雄網,0204貼圖區,sex520免費影片,情色貼圖,視訊ukiss,視訊ggoo,視訊美女ggoo


080苗栗人聊天室,080中部人聊天室ut,ut影音視訊聊天室13077,視訊做愛,kk777視訊俱樂部,上班族聊天室,聊天室找一夜,情色交友,情色貼片,小瓢蟲情色論壇,aio交友愛情館

haitao said...

cheap hair straighteners
chi hair straightener
chi flat iron

new polo shirts
cheap Lacoste polo shirts
cheap Lacoste polo shirts

cheap handbags
cheap bags
puma chaussures
chaussures puma
chaussure puma

Men's North Face
Women's North Face


hair straighteners
sexy lingerie store
cheap ugg boots
tattoo wholesale
men's clothing
women's clothing


2009 nike shoes
new nike shoes
Women's max
Men's max 93
nike shox
Nike air force
Nike air max 2003
nike air max ltd
nike air max tn
Nike air rift
Nike air Yeezy
nike airmax
Nike air max 90
Nike air max 97
nike birds nest shoes
nike dunk
nike RT1 shoes
nike SB
nike shox shoes
Nike shox OZ shoes
Nike shox R2 shoes
Nike shox R3 shoes
Nike shox R4 shoes
Nike shox R5 shoes
Nike shox TL3
nike trainers lovers

tennis rackets
Wilson tennis rackets
HEAD tennis rackets
Babolat tennis rackets

j said...

Burberry polo shirt the steady, solid, so many young girls also love it. Speaking of people of a ralph lauren polo, think it a sign of nobility elegant waving in the horse club.spyder jacket in the cold in your winter activities can be easily.columbia jacket it is expensive, but here you do not need to consider the price of it. the north face jacket one of my favorite money, I do not know how many in this world of its fans.
ed hardy clothing
ed hardy clothes
ed hardy shirts
ed hardy t-shirts
ed hardy sunglasses
ed hardy mens
ed hardy womens
Wholesale Handbags
Cheap Handbags

j said...

ed hardy clothes Highlights of the composition and color-rich design, simple lines so that ed hardy t-shirts has become a pleasure to look at, but the Ed Hardy-rich products, such as, ed hardy clothing people ed hardy sunglasses and look forward to the next ed hardy shirts changing the color of the years. ED HARDY personality patterns in order to attract the ed hardy mens and ed hardy womens .

Womens Handbags is one of most popular designer bags brand all over the world. The following line is available in different nice looking and charming colors, also in favorable price. These knock off designer handbags are designed to cater for fashion and elegant ladies. I very much like the cheap purses, but it is very cheap handbags. Made of high-grade leather, light weight. Wholesale Handbags are the words the overall appearance of the color brown.

milf said...

find air beds in wisconsinbest air beds in wisconsincloud air beds

best cloud inflatable air bedssealy air beds portableportables air bedsrv luggage racksaluminum made rv luggage racksair bed raisedbest form raised air bedsbed air informercialsbest informercials bed airmattress sized air beds

bestair bed mattress antique doorknobsantique doorknob identification tipsdvd player troubleshootingtroubleshooting with the dvd playerflat panel television lcd vs plasmaflat panel lcd television versus plasma pic the bestadjustable bed air foam The best bed air foam

hoof prints antique equestrian printsantique hoof prints equestrian printsBuy air bedadjustablebuy the best adjustable air bedsair beds canadian storesCanadian stores for air beds

migraine causemigraine treatments floridaflorida headache clinicdrying dessicantair drying dessicant

milf said...

black mold exposureblack mold symptoms of exposurewrought iron garden gatesiron garden gates find them herefine thin hair hairstylessearch hair styles for fine thin hairnight vision binocularsbuy night vision binocularslipitor reactionslipitor allergic reactionsluxury beach resort in the philippines

afordable beach resorts in the philippineshomeopathy for eczema.baby eczema.save big with great mineral makeup bargainsmineral makeup wholesalersprodam iphone Apple prodam iphone prahacect iphone manualmanual for P 168 iphonefero 52 binocularsnight vision Fero 52 binocularsThe best night vision binoculars here

night vision binoculars bargainsfree photo albums computer programsfree software to make photo albumsfree tax formsprintable tax forms for free craftmatic air bedcraftmatic air bed adjustable info hereboyd air bedboyd night air bed lowest price

milf said...

new houston house houston house txstains removal dyestains removal clothesstains removalteeth whiteningteeth whiteningbright teeth

jennifer grey nosejennifer nose jobscalebrities nose jobsWomen with Big NosesWomen hairstylesBig Nose Women, hairstyles

milf said...

dessicant air dryerpediatric asthmaasthma specialistasthma children specialistcarpet cleaning dallas txcarpet cleaners dallascarpet cleaning dallas

vero beach vacationvero beach vacationsbeach vacation homes veroms beach vacationsms beach vacationms beach condosmaui beach vacationmaui beach vacationsmaui beach clubbeach vacationsyour beach vacationscheap beach vacations

bob hairstylebob haircutsbob layeredpob hairstylebobbedclassic bobCare for Curly HairTips for Curly Haircurly hair12r 22.5 best pricetires truck bustires 12r 22.5

washington new housenew house houstonnew house san antonionew house ventura

miyuki said...

Bon March¨¦ Chaussure PumaChaussure Sports Shop:baskets pumaChaussure Puma Femme,Chaussure Puma Homme,Chaussure Nike Femme,Chaussure Nike homme,nike shoxChaussure Sport et plus. Livraison Rapide.

miyuki said...

Cheap Brand Jeans ShopMen Jeans - True Religion Jeans, Women JeansGUCCI Jeans, Levi's Jeans, D&G Jeans, RED MONKEY Jeans, Cheap JeansArmani Jeans, Diesel Jeans, Ed hardy Jeans, Evisu Jeans, Jack&Jones Jeans...
gillette razor blades
gillette mach3 razor blades
gillette venus razor blades
gillette fusion blades

fdg said...

http://pumacat0.cocolog-nifty.com/
http://wholesaleol.net/
http://webthink.jugem.jp/
http://community.fox2now.com

花美姬 said...

情趣用品,情趣,按摩棒,跳蛋,充氣娃娃,情人節禮物,美女視訊,辣妹視訊,成人網站,免費視訊,成人電影,成人,情趣用品花美姬,情趣精品,男女情趣用品,台中情趣用品,台北情趣用品,高雄情趣用品,情趣用品.情趣精品

情趣用品,情惑用品性易購,情人花束,情趣用品,情惑用品性易購,情人視訊網,情趣用品,情惑用品性易購,情人視訊網,情趣用品,情侶歡愉用品,視訊交友90739,視訊交友90739,情趣用品,情趣用品,情趣用品,情人視訊高雄網,視訊情人高雄網,視訊交友高雄網,情趣用品,情侶歡愉用品,情趣用品

ivip毛毛賺錢聯盟,ivip毛毛賺錢聯盟,ivip毛毛賺錢聯盟,ivip網路創業須知,ivip能賺多少錢,ivip最佳推薦人,ivip推薦人重要性

. said...

酒店經紀
酒店兼差
酒店小姐
禮服店
酒店上班
酒店兼職
酒店打工
假日打工
台北酒店經紀
童裝批發
童裝批發
童裝
童裝
酒店喝酒
暑假打工
寒假打工
酒店
酒店經紀人
酒店現領
酒店經紀爆米花
酒店上班PRETTY GIRL

lla said...

What prince-o3-tour would be bettre in my opinion would be to remove the wrist straps and the skin, and instead make it a 2 babolat pure drive, 2 stereing wheels, 1 baseball bat and 1 golf club. Still, this package is great value for your money. When my wife informed me that Emporio Armani was now pushing its own signature wilson k six, the EA7, I’ve got to admit, I was intrigued. Italian designres producing tennis rackets? How fashion forward of thstrong. I love it. Head microgel is style and preformance at cheap tennis racquets best. Haute couture meets the hard courts.

lla said...

Anothre set of ralph lauren polo in three colors. Burbrery Polo Shirts come with a graduation of colors on the chest. The new shiki Cheap polo shirts logo is on the chest. Comes in all layres and can be worned tucked in or out wholesale polo shirts.
Also comes with sculpted collar and arm cuffs.Flat knit collar, Contrast placket and half moon, Mothre-of-pearl buttons and tennis tail, Soft double knit piqué,100% cotton ralph lauren polo shirts. If you lend your embroidrere a sample cheap ralph lauren polos that will help you get the closest match to the original embroidreed design. The artwork you provide will sreve as a template for your embroidrey set-up but discount ralph lauren polos can't be used to identify some stitch types, give precise sizing of embroidreed elements and show thread polo clothing colors.

huyuni said...

nike shoes & Puma Shoes Online- tn nike,puma shoes,puma cat, baskets cheap nike shox, air max.cheap nike shox r4 torch, cheap nike air, nike running shoes air max, puma speed and more. Paypal payment.nike running shoes Enjoy your shopping experience on Nike & Puma Shoes Online Store.

goodeda1122 said...

情趣,情趣,視訊交友,情趣用品,情趣用品,飛機杯,自慰套,自慰套,自慰套,自慰器,充氣娃娃,AV,按摩棒,電動按摩棒,情趣按摩棒,按摩棒,跳蛋,跳蛋,跳蛋,男女,潤滑液,SM,情趣內衣,內衣,性感內衣,角色扮演,角色扮演服,吊帶襪,丁字褲

huyuni said...

China Wholesale has been described as the world’s factory. This phenomenom is typified by the rise of buy products wholesalebusiness. Incredible range of products available with wholesale from china“Low Price and High Quality” not only reaches directly to their target clients worldwide but also ensures that China Wholesalers from China means margins you cannot find elsewhere and China Wholesale will skyroket your profits.

huyuni said...

Lacoste Polo Shirts, , Burberry Polo Shirts.wholesale Lacoste polo shirts and cheap polo shirtswith great price. clothingol.com offers lot of 10ralph lauren polo lacoste polo shirts and lot of 20 Burberry Polo Shirts. clothingol.com offers classic fit polo shirts. polo clothingCheap Brand Jeans ShopMen Jeans - True Religion Jeans, burberry polo shirtsGUCCI Jeans, Levi's Jeans, D&G Jeans, RED MONKEY Jeans, Cheap JeansArmani Jeans, Diesel Jeans, Ed hardy Jeans, Evisu Jeans, Women JeansJack&Jones Jeans...

huyuni said...

nike shoes & Puma Shoes Online- tn nike,puma shoes,puma cat, baskets cheap nike shox, air max.cheap nike shox r4 torch, cheap nike air, nike running shoes air max, puma speed and more. Paypal payment.nike running shoes Enjoy your shopping experience on Nike & Puma Shoes Online Store.

huyuni said...

ed hardy shirts pretty ed hardy shirt for men,ed hardy womens in the ed hardy online storedesigned by ed hardy ,many cheap ed hardy shirt ,glasses,caps,trouers ed hardy shirts on sale ,You can go to edhardyshirts.com to have a look ,you may find one of ed hardy clothing fitCharlestoncheap columbia jackets. turned a pair of double plays to do the trick. spyder jacketsThe had at least one runner on in every inning but the first and outhit the RiverDogs by a 12-6 margin Lawal should be a focal point of the Yellow cheap polo shirts along with highly touted newcomer, 6-9 Derrick Favors, rated as the No. 1 power forward on the ESPNU 100. The Yellow JacketsThere are