php hit counter
Server Core + IIS7 + PHP + MySQL - Dennis

Dennis

Server Core + IIS7 + PHP + MySQL

Wow. Take Windows Server 2008 Server Core + PHP + IIS7 + MySQL + WordPress, mix them together, will they blend well and work out as a nice concoction? Matty challenged me to this blend, and guess what, we have a powerful cocktail to offer after all!

I scuffled around to see if anyone had come up with this powerful blend. Surprisingly, no one offered it on Server Core. There are bits and pieces everywhere, but none quite fit the blend we needed. I then decided to take up Matty’s challenge and come up with one.

With my buddy Matty, we decided to take a spin for it (He challenged me to it). The whole ordeal was over in a day and we finally got it working. Thanks to another great pal in the next cube, Chris Ismael (Interop Expert).

Alright, here is the story on my adventure.

The Hardware

Matty brought me his machine for the adventure. A cool looking machine with a red glow. Deserves some mention because he sponsored this equipment to mess with. It is a Dell XPS. But it is more like desktop replacement than a laptop. ;-) It is powered by an Intel Core2DUO 2GHz with 4GB of ram. In this adventure, a Server Core installation took a mere 4 minutes to complete on this beast.

Windows Virtualization

I chose to do my adventure using Virtualization technology. I loaded a Windows 2008 x64 onto the Dell machine and installed the Virtualization server role. Using virtualization allows me to take snap shots in time. This will allow me to revert back to a previous time in seconds. So for example, if I crash and made a grave mistake, I do not have to redo or try figure out what to undo. Windows Server Virtualization is definitely a technology every one serious in optimizing the data centre should take a serious thought about it.

The Ordeal Begins

Alright, let’s get to our stuff and begin our adventure.

I will take you through Server Core, IIS7 with FastCGI, PHP, MySQL and WordPress. The rest are on your own. Seriously, there is nothing else apart from learning how to use WordPress. ;-)

Getting Server Core onto the Network

You will setup Server Core the same way as you setup a typical Windows server, except you select “Core” installation. The first thing Server Core will get you to do is force you to change your admin password.

A Server Core in Windows Server Virtualization (WSV) will not have any network card installed. We will need to install Integration Services into the Virtual Machine (VM). By the way, my tests so far, WSV allows my VMs to run 3 times faster than on Virtual Server 2005 R2.

Here are some tasks you need to get over;

1. Install Integration Services (Skip this if you’re not using WSV)

On the VM Connection Window, Click on Action -> Insert Integration Services Setup Disk or Hit Ctrl+I. This step loads vmguest.iso onto the VM’s DVD Drive and lets you access the ISO contents. In this case, the Integration Services.

Auto run won't happen. So you need to execute “<DRIVE>:\support\x86\ and execute setup.exe
You will be prompted to reboot twice, go ahead.

This will load up the smooth mouse integration, NICs bla bla.. I'll save the details. Let’s move on.

2. Verifying NIC and IPConfig

If you have a DHCP server running on the network, you can skip this unless you want to use static IP configuration

To fix an IP Address;
netsh interface ipv4 set address name=”Local Area Connection” source=static address=<IPADDRESS> mask=<255.255.255.0> gateway=<GatewayIP>

To add a DNS Server entry;
netsh interface ipv4 add dnsserver name="Local Area Connection" address-<IPAddress of DNS>

3. Changing the Computer Name & Joining a Domain if needed

Find out the current hostname: "hostname" (Take note of it)

To change the computer name:
netdom renamecomputer <Current Computer name> /NewName:<NewComputerName>

To join the domain (if you need to, Server Core and be in workgroup mode):
netdom join <ComputerName> /domain:<DomainName> /Userd:<UserName> /passwordd: *

4. Opening an Exception for MySQL

netsh firewall add portopening tcp 3306 "MySQL"

This step prevents a setup error in MySQL later.

You need to reboot at this stage to take effect: shutdown /r /t 0

5. Activation of Windows Server Core

If you are connected to Internet: slmgr.vbs –ato

Else to use phone activation:

slmgr.vbs –dti (Displays the Installation ID to be given to Microsoft)

slmgr.vbs –ato <ConfirmationID> (Activates server using Confirmation ID given by Microsoft)

Loading IIS 7.0 with FastCGI

This is where Microsoft has placed lots of focus on making IIS 7.0 highly secure, highly modular and highly interoperable. For more details on the installation commands, you may visit this web page for installation tips.

For this adventure, I will install the minimum required. I used the following command;

start /w pkgmgr /iu:IIS-WebServerRole;WAS-WindowsActivationService;WAS-ProcessModel;IIS-CGI

To verify the installation, use this command “oclist” and verify the installation.

Loading PHP

Reference: Using Fast CGI to Host PHP Applications on IIS7
Download: Non-Thread Safe PHP 5.2.1

Extract contents of downloaded files onto c:\php\

Updating the PHP.INI File

- Copy c:\php\php.ini-recommended c:\php\php.ini
- Notepad c:\php\php.ini
- Change: extension_dir=”c:\php\ext”
- Uncomment: extension=php_mysql.dll
- Add: Extension=php_gd.dll
- Save the file php.ini and exit notepad

Creating PHP Handler in IIS 7.0

Reference: Using Fast-CGI to Host PHP Applications on IIS7

appcmd set config /section:system.webServer/fastCGI /+[fullPath='c:\php\php-cgi.exe']

appcmd set config /section:system.webServer/handlers /+[name='PHP-FastCGI',path='*.php',verb='*',modules='FastCgiModule',scriptProcessor='c:\php\php-cgi.exe',resourceType='Either']

Setting Default Document to index.php

appcmd set config "Default web site" /section:defaultDocument /enabled:true

appcmd set config "Default Web Site" /section:defaultDocument /+files.[value='index.php']

Loading MySQL

Download: MySQL 5.0.45

This is the only section where you will encounter a GUI setup. ;-) Enjoy.

Running the Setup:
Execute the file, mysql-essential-5.0.45-win32.msi
At Welcome, Click next
Select Typical, Click next
Click Install, Next all the way and Finish.

Instance Configuration will now begin:
At Welcome, Click next
Select Standard Configuration, Click next
Select Install as Windows Service, Click next
Specify the root password and Click next
Click Execute and Finish

Creating a MySQL Database

Reference: PHP on IIS7.0 Wordpress
Execute “c:\Program Files\MySQL\MySQL Server 5.0\bin\mysql.exe –u root –p
Key in your root password specified earlier.

mysql> create database wordpress;

mysql> grant all privileges on wordpress.* to ‘wordpress’@’%’ identified by ‘password’;

Loading Wordpress

Reference: PHP Applications on IIS7 - Wordpress
Download: WordPress

Extract the download file’s contents into c:\inetpub\wwwroot\wordpress\

Next make a copy of the WordPress Configuration Sample file;
cd c:\inetpub\wwwroot\wordpress
copy wp-config-sample.php wp-config.php

Edit wp-config.php

We need to modify the wp-config.php to reflect the right UserID, Password, MySQL Database Name and server. So we need to modify these 4 attributes to reflect what we have setup so far; DB_NAME, DB_USER, DB_PASSWORD, DB_HOST

// ** MySQL settings ** //
define('DB_NAME', 'wordpress');    // The name of the database
define('DB_USER', 'wordpress');     // Your MySQL username
define('DB_PASSWORD', 'password'); // ...and password
define('DB_HOST', 'localhost');    // Change this to IP address of your database

We are done. Open a browser from a client that can see this server we have setup. Browse to http://<Server>/wordpress/wp-admin/install.php and start configuring the WordPress application.

Conclusion

We now have a running Web Server (on Server Core) with PHP enabled running the WordPress application. In essence, we have pieced together the following technologies; Windows 2008 Server Core + PHP + MySQL + IIS 7.0 + WordPress.

Off my mind, there are many aspects which are compelling;

- Small foot print - Server Core is light in foot print. Much lesser binary. Takes about 1/4 to 1/5 the footprint of a full install. Disk storage is less demanding.
- Small surface attack area - Less binaries, less requirements to update the binaries if a vulnerability is discovered
- Requires less resources to run
- Concentrated workload
- Fast and speed server provisioning

I had fun in this adventure and thanks to Matty and Chris. We are looking out for more fun and will share with you what we have. If you have an idea or would like to know more, contact me or Matty anytime. Drop us an email today.

BTW, this is a support scenario in IT Pro Momentum. So if you like to give Server Core running IIS7 a try in your environment and receive a free 1 year TechNet+ Subscription, wait no further, drop me an email now.

/Dennis

Comments

vutlvnkyvir said:

AJYQaB  <a href="bmavlvpowcrl.com/.../a>, [url=http://aushrnkbhanf.com/]aushrnkbhanf[/url], [link=http://jhjlqubayqqp.com/]jhjlqubayqqp[/link], http://fytjatjnmcvz.com/

# June 23, 2008 6:47 AM

stephens said:

[url=xxx2.weebly.com/index.html]adele stephens[/url] <a href=" xxx2.weebly.com/index.html ">adele stephens</a>

[url=xxx2.weebly.com/adrianna-costa.html]adrianna costa[/url] <a href=" xxx2.weebly.com/adrianna-costa.html ">adrianna costa</a>

[url=xxx2.weebly.com/adrienne-barbeau.html]adrienne barbeau[/url] <a href=" xxx2.weebly.com/adrienne-barbeau.html ">adrienne barbeau</a>

[url=xxx2.weebly.com/aiko-tanaka.html]aiko tanaka[/url] <a href=" xxx2.weebly.com/aiko-tanaka.html ">aiko tanaka</a>

[url=xxx2.weebly.com/aimee-sweet.html]aimee sweet[/url] <a href=" xxx2.weebly.com/aimee-sweet.html ">aimee sweet</a>

# July 12, 2008 7:25 PM

alana-evans said:

[url=xxx2.weebly.com/alana-evans.html]alana evans[/url] <a href=" xxx2.weebly.com/alana-evans.html ">alana evans</a>

[url=xxx2.weebly.com/alektra-blue.html]alektra blue[/url] <a href=" xxx2.weebly.com/alektra-blue.html ">alektra blue</a>

[url=xxx2.weebly.com/hot-webcam-girl-alexa.html]hot webcam girl alexa[/url] <a href=" xxx2.weebly.com/hot-webcam-girl-alexa.html ">hot webcam girl alexa</a>

[url=xxx2.weebly.com/alexa-rae.html]alexa rae[/url] <a href=" xxx2.weebly.com/alexa-rae.html ">alexa rae</a>

[url=xxx2.weebly.com/alexis-amore.html]alexis amore[/url] <a href=" xxx2.weebly.com/alexis-amore.html ">alexis amore</a>

# July 12, 2008 8:53 PM

alexis-bledel said:

[url=xxx2.weebly.com/alexis-bledel.html]alexis bledel[/url] <a href=" xxx2.weebly.com/alexis-bledel.html ">alexis bledel</a>

[url=xxx2.weebly.com/alexis-love.html]alexis love[/url] <a href=" xxx2.weebly.com/alexis-love.html ">alexis love</a>

[url=xxx2.weebly.com/ali-landry.html]ali landry[/url] <a href=" xxx2.weebly.com/ali-landry.html ">ali landry</a>

[url=xxx2.weebly.com/ali-larter.html]ali larter[/url] <a href=" xxx2.weebly.com/ali-larter.html ">ali larter</a>

[url=xxx2.weebly.com/alicia-rhodes.html]alicia rhodes[/url] <a href=" xxx2.weebly.com/alicia-rhodes.html ">alicia rhodes</a>

# July 12, 2008 10:14 PM

alicia-machado said:

[url=xxx2.weebly.com/alicia-machado.html]alicia machado[/url] <a href=" xxx2.weebly.com/alicia-machado.html ">alicia machado</a>

[url=xxx2.weebly.com/alisha-klass.html]alisha klass[/url] <a href=" xxx2.weebly.com/alisha-klass.html ">alisha klass</a>

[url=xxx2.weebly.com/alison-angel.html]alison angel[/url] <a href=" xxx2.weebly.com/alison-angel.html ">alison angel</a>

[url=xxx2.weebly.com/alley-baggett.html]alley baggett[/url] <a href=" xxx2.weebly.com/alley-baggett.html ">alley baggett</a>

[url=xxx2.weebly.com/naughty-allie.html]naughty allie[/url] <a href=" xxx2.weebly.com/naughty-allie.html ">naughty allie</a>

# July 12, 2008 11:41 PM

allison-stokke said:

[url=xxx2.weebly.com/allison-stokke.html]allison stokke[/url] <a href=" xxx2.weebly.com/allison-stokke.html ">allison stokke</a>

[url=xxx2.weebly.com/alyssa-milano.html]alyssa milano[/url] <a href=" xxx2.weebly.com/alyssa-milano.html ">alyssa milano</a>

[url=xxx2.weebly.com/alyssa-alps.html]alyssa alps[/url] <a href=" xxx2.weebly.com/alyssa-alps.html ">alyssa alps</a>

[url=xxx2.weebly.com/alyssa-lies.html]alyssa lies[/url] <a href=" xxx2.weebly.com/alyssa-lies.html ">alyssa lies</a>

[url=xxx2.weebly.com/amanda-beard.html]amanda beard[/url] <a href=" xxx2.weebly.com/amanda-beard.html ">amanda beard</a>

# July 13, 2008 1:07 AM

il-amber said:

[url=xxx2.weebly.com/lil-amber.html]lil amber[/url] <a href=" xxx2.weebly.com/lil-amber.html ">lil amber</a>

[url=xxx2.weebly.com/amber-michaels.html]amber michaels[/url] <a href=" xxx2.weebly.com/amber-michaels.html ">amber michaels</a>

[url=xxx2.weebly.com/amber-lynn.html]amber lynn[/url] <a href=" xxx2.weebly.com/amber-lynn.html ">amber lynn</a>

[url=xxx2.weebly.com/tiffany-amber-thiessen.html]tiffany amber thiessen[/url] <a href=" xxx2.weebly.com/tiffany-amber-thiessen.html ">tiffany amber thiessen</a>

[url=xxx2.weebly.com/amber-pacific.html]amber pacific[/url] <a href=" xxx2.weebly.com/amber-pacific.html ">amber pacific</a>

# July 13, 2008 3:43 AM

oral-amber said:

[url=xxx2.weebly.com/oral-amber.html]oral amber[/url] <a href=" xxx2.weebly.com/oral-amber.html ">oral amber</a>

[url=xxx2.weebly.com/amy-polumbo.html]amy polumbo[/url] <a href=" xxx2.weebly.com/amy-polumbo.html ">amy polumbo</a>

[url=xxx2.weebly.com/amy-jacobson.html]amy jacobson[/url] <a href=" xxx2.weebly.com/amy-jacobson.html ">amy jacobson</a>

[url=xxx2.weebly.com/amy-lee.html]amy lee[/url] <a href=" xxx2.weebly.com/amy-lee.html ">amy lee</a>

[url=xxx2.weebly.com/amy-smart.html]amy smart[/url] <a href=" xxx2.weebly.com/amy-smart.html ">amy smart</a>

# July 13, 2008 5:27 AM

amy-dumas said:

[url=xxx2.weebly.com/amy-dumas.html]amy dumas[/url] <a href=" xxx2.weebly.com/amy-dumas.html ">amy dumas</a>

[url=xxx2.weebly.com/amy-fisher.html]amy fisher[/url] <a href=" xxx2.weebly.com/amy-fisher.html ">amy fisher</a>

[url=xxx2.weebly.com/amy-miller.html]amy miller[/url] <a href=" xxx2.weebly.com/amy-miller.html ">amy miller</a>

[url=xxx2.weebly.com/amy-jo-johnson.html]amy jo johnson[/url] <a href=" xxx2.weebly.com/amy-jo-johnson.html ">amy jo johnson</a>

[url=xxx2.weebly.com/andi-pink.html]andi pink[/url] <a href=" xxx2.weebly.com/andi-pink.html ">andi pink</a>

# July 13, 2008 6:48 AM

andy-gibb said:

[url=xxx2.weebly.com/andy-gibb.html]andy gibb[/url] <a href=" xxx2.weebly.com/andy-gibb.html ">andy gibb</a>

[url=xxx2.weebly.com/anetta-keys.html]anetta keys[/url] <a href=" xxx2.weebly.com/anetta-keys.html ">anetta keys</a>

[url=xxx2.weebly.com/anette-dawn.html]anette dawn[/url] <a href=" xxx2.weebly.com/anette-dawn.html ">anette dawn</a>

[url=xxx2.weebly.com/angel-blade.html]angel blade[/url] <a href=" xxx2.weebly.com/angel-blade.html ">angel blade</a>

[url=xxx2.weebly.com/ayana-angel.html]ayana angel[/url] <a href=" xxx2.weebly.com/ayana-angel.html ">ayana angel</a>

# July 13, 2008 9:26 AM

angie-dickinson said:

[url=xxx2.weebly.com/angie-dickinson.html]angie dickinson[/url] <a href=" xxx2.weebly.com/angie-dickinson.html ">angie dickinson</a>

[url=xxx2.weebly.com/anita-blonde.html]anita blonde[/url] <a href=" xxx2.weebly.com/anita-blonde.html ">anita blonde</a>

[url=xxx2.weebly.com/anka-romensky.html]anka romensky[/url] <a href=" xxx2.weebly.com/anka-romensky.html ">anka romensky</a>

[url=xxx2.weebly.com/lisa-ann.html]lisa ann[/url] <a href=" xxx2.weebly.com/lisa-ann.html ">lisa ann</a>

[url=xxx2.weebly.com/julia-ann.html]julia ann[/url] <a href=" xxx2.weebly.com/julia-ann.html ">julia ann</a>

# July 13, 2008 12:15 PM

ann-margaret said:

[url=xxx2.weebly.com/ann-margaret.html]ann margaret[/url] <a href=" xxx2.weebly.com/ann-margaret.html ">ann margaret</a>

[url=xxx2.weebly.com/anna-nicole-smith.html]anna nicole smith[/url] <a href=" xxx2.weebly.com/anna-nicole-smith.html ">anna nicole smith</a>

[url=xxx2.weebly.com/anna-ohura.html]anna ohura[/url] <a href=" xxx2.weebly.com/anna-ohura.html ">anna ohura</a>

[url=xxx2.weebly.com/anna-faris.html]anna faris[/url] <a href=" xxx2.weebly.com/anna-faris.html ">anna faris</a>

[url=xxx2.weebly.com/dicke-anna.html]dicke anna[/url] <a href=" xxx2.weebly.com/dicke-anna.html ">dicke anna</a>

# July 13, 2008 1:36 PM

anna-malle said:

[url=xxx2.weebly.com/anna-malle.html]anna malle[/url] <a href=" xxx2.weebly.com/anna-malle.html ">anna malle</a>

[url=xxx2.weebly.com/april-arikssen.html]april arikssen[/url] <a href=" xxx2.weebly.com/april-arikssen.html ">april arikssen</a>

[url=xxx2.weebly.com/april-chest.html]april chest[/url] <a href=" xxx2.weebly.com/april-chest.html ">april chest</a>

[url=xxx2.weebly.com/april-summers.html]april summers[/url] <a href=" xxx2.weebly.com/april-summers.html ">april summers</a>

[url=xxx2.weebly.com/aria-giovanni.html]aria giovanni[/url] <a href=" xxx2.weebly.com/aria-giovanni.html ">aria giovanni</a>

# July 13, 2008 2:54 PM

ariel-rebel said:

[url=xxx2.weebly.com/ariel-rebel.html]ariel rebel[/url] <a href=" xxx2.weebly.com/ariel-rebel.html ">ariel rebel</a>

[url=xxx2.weebly.com/ariel-hentai.html]ariel hentai[/url] <a href=" xxx2.weebly.com/ariel-hentai.html ">ariel hentai</a>

[url=xxx2.weebly.com/ashley-madison.html]ashley madison[/url] <a href=" xxx2.weebly.com/ashley-madison.html ">ashley madison</a>

[url=xxx2.weebly.com/ashley-blue.html]ashley blue[/url] <a href=" xxx2.weebly.com/ashley-blue.html ">ashley blue</a>

[url=xxx2.weebly.com/ashley-juggs.html]ashley juggs[/url] <a href=" xxx2.weebly.com/ashley-juggs.html ">ashley juggs</a>

# July 13, 2008 4:48 PM

ashley-gellar said:

[url=xxx2.weebly.com/ashley-gellar.html]ashley gellar[/url] <a href=" xxx2.weebly.com/ashley-gellar.html ">ashley gellar</a>

[url=xxx2.weebly.com/ashley-parker-angel.html]ashley parker angel[/url] <a href=" xxx2.weebly.com/ashley-parker-angel.html ">ashley parker angel</a>

[url=xxx2.weebly.com/melissa-ashley.html]melissa ashley[/url] <a href=" xxx2.weebly.com/melissa-ashley.html ">melissa ashley</a>

[url=xxx2.weebly.com/ashlyn-gere.html]ashlyn gere[/url] <a href=" xxx2.weebly.com/ashlyn-gere.html ">ashlyn gere</a>

[url=xxx2.weebly.com/ashton-moore.html]ashton moore[/url] <a href=" xxx2.weebly.com/ashton-moore.html ">ashton moore</a>

# July 13, 2008 7:28 PM

asia-carrera said:

[url=xxx2.weebly.com/asia-carrera.html]asia carrera[/url] <a href=" xxx2.weebly.com/asia-carrera.html ">asia carrera</a>

[url=xxx2.weebly.com/audra-lynn.html]audra lynn[/url] <a href=" xxx2.weebly.com/audra-lynn.html ">audra lynn</a>

[url=xxx2.weebly.com/audra-mitchell.html]audra mitchell[/url] <a href=" xxx2.weebly.com/audra-mitchell.html ">audra mitchell</a>

[url=xxx2.weebly.com/audrey-bitoni.html]audrey bitoni[/url] <a href=" xxx2.weebly.com/audrey-bitoni.html ">audrey bitoni</a>

[url=xxx2.weebly.com/audrey-hollander.html]audrey hollander[/url] <a href=" xxx2.weebly.com/audrey-hollander.html ">audrey hollander</a>

# July 13, 2008 8:49 PM

aurora-snow said:

[url=xxx2.weebly.com/aurora-snow.html]aurora snow[/url] <a href=" xxx2.weebly.com/aurora-snow.html ">aurora snow</a>

[url=xxx2.weebly.com/aurora-jolie.html]aurora jolie[/url] <a href=" xxx2.weebly.com/aurora-jolie.html ">aurora jolie</a>

[url=xxx2.weebly.com/larissa-aurora.html]larissa aurora[/url] <a href=" xxx2.weebly.com/larissa-aurora.html ">larissa aurora</a>

[url=xxx2.weebly.com/ava-devine.html]ava devine[/url] <a href=" xxx2.weebly.com/ava-devine.html ">ava devine</a>

[url=xxx2.weebly.com/ava-lauren.html]ava lauren[/url] <a href=" xxx2.weebly.com/ava-lauren.html ">ava lauren</a>

# July 13, 2008 10:13 PM

ava-gardner said:

[url=xxx2.weebly.com/ava-gardner.html]ava gardner[/url] <a href=" xxx2.weebly.com/ava-gardner.html ">ava gardner</a>

[url=xxx2.weebly.com/avena-lee.html]avena lee[/url] <a href=" xxx2.weebly.com/avena-lee.html ">avena lee</a>

[url=xxx2.weebly.com/avy-lee-roth.html]avy lee roth[/url] <a href=" xxx2.weebly.com/avy-lee-roth.html ">avy lee roth</a>

[url=xxx2.weebly.com/gemma-atkinson.html]gemma atkinson[/url] <a href=" xxx2.weebly.com/gemma-atkinson.html ">gemma atkinson</a>

[url=xxx2.weebly.com/bambi-woods.html]bambi woods[/url] <a href=" xxx2.weebly.com/bambi-woods.html ">bambi woods</a>

# July 13, 2008 11:33 PM

christine-dolce said:

[url=xxx2.weebly.com/christine-dolce.html]christine dolce[/url] <a href=" xxx2.weebly.com/christine-dolce.html ">christine dolce</a>

[url=xxx2.weebly.com/barbara-eden.html]barbara eden[/url] <a href=" xxx2.weebly.com/barbara-eden.html ">barbara eden</a>

[url=xxx2.weebly.com/barbara-dare.html]barbara dare[/url] <a href=" xxx2.weebly.com/barbara-dare.html ">barbara dare</a>

[url=xxx2.weebly.com/shemar-moore.html]shemar moore[/url] <a href=" xxx2.weebly.com/shemar-moore.html ">shemar moore</a>

[url=xxx2.weebly.com/carmel-moore.html]carmel moore[/url] <a href=" xxx2.weebly.com/carmel-moore.html ">carmel moore</a>

# July 14, 2008 1:00 AM

barbie-bridges said:

[url=xxx2.weebly.com/barbie-bridges.html]barbie bridges[/url] <a href=" xxx2.weebly.com/barbie-bridges.html ">barbie bridges</a>

[url=xxx2.weebly.com/brandi-belle.html]brandi belle[/url] <a href=" xxx2.weebly.com/brandi-belle.html ">brandi belle</a>

[url=xxx2.weebly.com/haley-bennett.html]haley bennett[/url] <a href=" xxx2.weebly.com/haley-bennett.html ">haley bennett</a>

[url=xxx2.weebly.com/bea-flora.html]bea flora[/url] <a href=" xxx2.weebly.com/bea-flora.html ">bea flora</a>

[url=xxx2.weebly.com/ash-webcam-girl.html]ash webcam girl[/url] <a href=" xxx2.weebly.com/ash-webcam-girl.html ">ash webcam girl</a>

# July 14, 2008 3:54 AM

bettie-ballhaus said:

[url=xxx2.weebly.com/bettie-ballhaus.html]bettie ballhaus[/url] <a href=" xxx2.weebly.com/bettie-ballhaus.html ">bettie ballhaus</a>

[url=xxx2.weebly.com/trump-quits.html]trump quits[/url] <a href=" xxx2.weebly.com/trump-quits.html ">trump quits</a>

[url=xxx2.weebly.com/penelope-black-diamond.html]penelope black diamond[/url] <a href=" xxx2.weebly.com/penelope-black-diamond.html ">penelope black diamond</a>

[url=xxx2.weebly.com/penelope-jimenez.html]penelope jimenez[/url] <a href=" xxx2.weebly.com/penelope-jimenez.html ">penelope jimenez</a>

[url=xxx2.weebly.com/bobbi-billard.html]bobbi billard[/url] <a href=" xxx2.weebly.com/bobbi-billard.html ">bobbi billard</a>

# July 14, 2008 5:13 AM

emma-starr said:

[url=xxx2.weebly.com/emma-starr.html]emma starr[/url] <a href=" xxx2.weebly.com/emma-starr.html ">emma starr</a>

[url=xxx2.weebly.com/rachel-starr.html]rachel starr[/url] <a href=" xxx2.weebly.com/rachel-starr.html ">rachel starr</a>

[url=xxx2.weebly.com/allanah-starr.html]allanah starr[/url] <a href=" xxx2.weebly.com/allanah-starr.html ">allanah starr</a>

[url=xxx2.weebly.com/bobby-lashley.html]bobby lashley[/url] <a href=" xxx2.weebly.com/bobby-lashley.html ">bobby lashley</a>

[url=xxx2.weebly.com/brande-roderick-gallery.html]brande roderick gallery[/url] <a href=" xxx2.weebly.com/brande-roderick-gallery.html ">brande roderick gallery</a>

# July 14, 2008 6:33 AM

brandi-love said:

[url=xxx2.weebly.com/brandi-love.html]brandi love[/url] <a href=" xxx2.weebly.com/brandi-love.html ">brandi love</a>

[url=xxx2.weebly.com/katie-morgan.html]katie morgan[/url] <a href=" xxx2.weebly.com/katie-morgan.html ">katie morgan</a>

[url=xxx2.weebly.com/brandy-talore.html]brandy talore[/url] <a href=" xxx2.weebly.com/brandy-talore.html ">brandy talore</a>

[url=xxx2.weebly.com/brandy-dahl.html]brandy dahl[/url] <a href=" xxx2.weebly.com/brandy-dahl.html ">brandy dahl</a>

[url=xxx2.weebly.com/ginger-lynn.html]ginger lynn[/url] <a href=" xxx2.weebly.com/ginger-lynn.html ">ginger lynn</a>

# July 14, 2008 7:54 AM

cassandra-lynn said:

[url=xxx2.weebly.com/cassandra-lynn.html]cassandra lynn[/url] <a href=" xxx2.weebly.com/cassandra-lynn.html ">cassandra lynn</a>

[url=xxx2.weebly.com/mandy-lynn.html]mandy lynn[/url] <a href=" xxx2.weebly.com/mandy-lynn.html ">mandy lynn</a>

[url=xxx2.weebly.com/bree-olsen.html]bree olsen[/url] <a href=" xxx2.weebly.com/bree-olsen.html ">bree olsen</a>

[url=xxx2.weebly.com/jennifer-lynn-jackson.html]jennifer lynn jackson[/url] <a href=" xxx2.weebly.com/jennifer-lynn-jackson.html ">jennifer lynn jackson</a>

[url=xxx2.weebly.com/bree-olson.html]bree olson[/url] <a href=" xxx2.weebly.com/bree-olson.html ">bree olson</a>

# July 14, 2008 9:16 AM

briana-banks said:

[url=xxx2.weebly.com/briana-banks.html]briana banks[/url] <a href=" xxx2.weebly.com/briana-banks.html ">briana banks</a>

[url=xxx2.weebly.com/bridgette-kerkove.html]bridgette kerkove[/url] <a href=" xxx2.weebly.com/bridgette-kerkove.html ">bridgette kerkove</a>

[url=xxx2.weebly.com/brittany-daniel.html]brittany daniel[/url] <a href=" xxx2.weebly.com/brittany-daniel.html ">brittany daniel</a>

[url=xxx2.weebly.com/brittany-binger.html]brittany binger[/url] <a href=" xxx2.weebly.com/brittany-binger.html ">brittany binger</a>

[url=xxx2.weebly.com/brooke-berry.html]brooke berry[/url] <a href=" xxx2.weebly.com/brooke-berry.html ">brooke berry</a>

# July 14, 2008 10:38 AM

brooke-haven said:

[url=xxx2.weebly.com/brooke-haven.html]brooke haven[/url] <a href=" xxx2.weebly.com/brooke-haven.html ">brooke haven</a>

[url=xxx2.weebly.com/brooke-mueller.html]brooke mueller[/url] <a href=" xxx2.weebly.com/brooke-mueller.html ">brooke mueller</a>

[url=xxx2.weebly.com/brooke-richards.html]brooke richards[/url] <a href=" xxx2.weebly.com/brooke-richards.html ">brooke richards</a>

[url=xxx2.weebly.com/brooke-marks.html]brooke marks[/url] <a href=" xxx2.weebly.com/brooke-marks.html ">brooke marks</a>

[url=xxx2.weebly.com/buffy-tyler.html]buffy tyler[/url] <a href=" xxx2.weebly.com/buffy-tyler.html ">buffy tyler</a>

# July 14, 2008 12:02 PM

brooke-banx said:

[url=xxx2.weebly.com/brooke-banx.html]brooke banx[/url] <a href=" xxx2.weebly.com/brooke-banx.html ">brooke banx</a>

[url=xxx2.weebly.com/buffy-the-body.html]buffy the body[/url] <a href=" xxx2.weebly.com/buffy-the-body.html ">buffy the body</a>

[url=xxx2.weebly.com/lola-bunny.html]lola bunny[/url] <a href=" xxx2.weebly.com/lola-bunny.html ">lola bunny</a>

[url=xxx2.weebly.com/marie-luv.html]marie luv[/url] <a href=" xxx2.weebly.com/marie-luv.html ">marie luv</a>

[url=xxx2.weebly.com/leah-luv.html]leah luv[/url] <a href=" xxx2.weebly.com/leah-luv.html ">leah luv</a>

# July 14, 2008 1:22 PM

xavier-naidoo-mp said:

[url=xxx2.weebly.com/xavier-naidoo-mp3.html]xavier naidoo mp3[/url] <a href=" xxx2.weebly.com/xavier-naidoo-mp3.html ">xavier naidoo mp3</a>

[url=xxx2.weebly.com/calli-cox.html]calli cox[/url] <a href=" xxx2.weebly.com/calli-cox.html ">calli cox</a>

[url=xxx2.weebly.com/monica-leigh.html]monica leigh[/url] <a href=" xxx2.weebly.com/monica-leigh.html ">monica leigh</a>

[url=xxx2.weebly.com/chyler-leigh.html]chyler leigh[/url] <a href=" xxx2.weebly.com/chyler-leigh.html ">chyler leigh</a>

[url=xxx2.weebly.com/ken-medlock.html]ken medlock[/url] <a href=" xxx2.weebly.com/ken-medlock.html ">ken medlock</a>

# July 14, 2008 2:47 PM

ken-ryker said:

[url=xxx2.weebly.com/ken-ryker.html]ken ryker[/url] <a href=" xxx2.weebly.com/ken-ryker.html ">ken ryker</a>

[url=xxx2.weebly.com/hubert-von-goisern.html]hubert von goisern[/url] <a href=" xxx2.weebly.com/hubert-von-goisern.html ">hubert von goisern</a>

[url=xxx2.weebly.com/candice-michelle.html]candice michelle[/url] <a href=" xxx2.weebly.com/candice-michelle.html ">candice michelle</a>

[url=xxx2.weebly.com/candy-loving.html]candy loving[/url] <a href=" xxx2.weebly.com/candy-loving.html ">candy loving</a>

[url=xxx2.weebly.com/candy-manson.html]candy manson[/url] <a href=" xxx2.weebly.com/candy-manson.html ">candy manson</a>

# July 14, 2008 4:07 PM

oxy-cotton said:

[url=xxx2.weebly.com/oxy-cotton.html]oxy cotton[/url] <a href=" xxx2.weebly.com/oxy-cotton.html ">oxy cotton</a>

[url=xxx2.weebly.com/sung-hi-lee.html]sung hi lee[/url] <a href=" xxx2.weebly.com/sung-hi-lee.html ">sung hi lee</a>

[url=xxx2.weebly.com/miko-lee.html]miko lee[/url] <a href=" xxx2.weebly.com/miko-lee.html ">miko lee</a>

[url=xxx2.weebly.com/lucy-lee.html]lucy lee[/url] <a href=" xxx2.weebly.com/lucy-lee.html ">lucy lee</a>

[url=xxx2.weebly.com/cara-zavaleta.html]cara zavaleta[/url] <a href=" xxx2.weebly.com/cara-zavaleta.html ">cara zavaleta</a>

# July 14, 2008 6:06 PM

cara-wakelin said:

[url=xxx2.weebly.com/cara-wakelin.html]cara wakelin[/url] <a href="xxx2.weebly.com/cara-wakelin.html">cara wakelin</a>

[url=xxx2.weebly.com/carli-banks.html]carli banks[/url] <a href="xxx2.weebly.com/carli-banks.html">carli banks</a>

[url=xxx2.weebly.com/squirting-carly.html]squirting carly[/url] <a href="xxx2.weebly.com/squirting-carly.html">squirting carly</a>

[url=xxx2.weebly.com/carly-parker.html]carly parker[/url] <a href="xxx2.weebly.com/carly-parker.html">carly parker</a>

[url=xxx2.weebly.com/carmella-bing.html]carmella bing[/url] <a href="xxx2.weebly.com/carmella-bing.html">carmella bing</a>

# July 14, 2008 7:30 PM

carol-vorderman said:

[url=xxx2.weebly.com/carol-vorderman.html]carol vorderman[/url] <a href=" xxx2.weebly.com/carol-vorderman.html ">carol vorderman</a>

[url=xxx2.weebly.com/sheryl-crow.html]sheryl crow[/url] <a href=" xxx2.weebly.com/sheryl-crow.html ">sheryl crow</a>

[url=xxx2.weebly.com/carrie-westcott.html]carrie westcott[/url] <a href=" xxx2.weebly.com/carrie-westcott.html ">carrie westcott</a>

[url=xxx2.weebly.com/casey-parker.html]casey parker[/url] <a href=" xxx2.weebly.com/casey-parker.html ">casey parker</a>

[url=xxx2.weebly.com/cassandra-peterson.html]cassandra peterson[/url] <a href=" xxx2.weebly.com/cassandra-peterson.html ">cassandra peterson</a>

# July 14, 2008 8:32 PM

riley-mason said:

[url=xxx2.weebly.com/riley-mason.html]riley mason[/url] <a href=" xxx2.weebly.com/riley-mason.html ">riley mason</a>

[url=xxx2.weebly.com/cassidy-webcam-girl.html]cassidy webcam girl[/url] <a href=" xxx2.weebly.com/cassidy-webcam-girl.html ">cassidy webcam girl</a>

[url=xxx2.weebly.com/cassie-young.html]cassie young[/url] <a href=" xxx2.weebly.com/cassie-young.html ">cassie young</a>

[url=xxx2.weebly.com/young-cutie.html]young cutie[/url] <a href=" xxx2.weebly.com/young-cutie.html ">young cutie</a>

[url=xxx2.weebly.com/young-leafs.html]young leafs[/url] <a href=" xxx2.weebly.com/young-leafs.html ">young leafs</a>

# July 14, 2008 10:25 PM

sabrina said:

<a href=" xll.weebly.com/index.html ">sabrina sabrok</a>

<a href=" xll.weebly.com/celebrity-feet.html ">celebrity feet</a>

<a href=" xll.weebly.com/kelly-monaco.html ">kelly monaco</a>

<a href=" xll.weebly.com/kat-young.html ">kat young</a>

<a href=" xll.weebly.com/susana-spears.html ">susana spears</a>

<a href=" xll.weebly.com/denise-milani.html ">denise milani</a>

<a href=" xll.weebly.com/jill-nicolini.html ">jill nicolini</a>

<a href=" xll.weebly.com/in-bed-with-faith.html ">in bed with faith</a>

<a href=" xll.weebly.com/dream-kelly.html ">dream kelly</a>

<a href=" xll.weebly.com/tawny-roberts.html ">tawny roberts</a>

# July 14, 2008 11:22 PM

tylene-buck said:

<a href=" xll.weebly.com/tylene-buck.html ">tylene buck</a>

<a href=" xll.weebly.com/lela-star.html ">lela star</a>

<a href=" xll.weebly.com/melissa-midwest.html ">melissa midwest</a>

<a href=" xll.weebly.com/denise-masino.html ">denise masino</a>

<a href=" xll.weebly.com/samantha-38g.html ">samantha 38g</a>

<a href=" xll.weebly.com/danielle-lloyd.html ">danielle lloyd</a>

<a href=" xll.weebly.com/mayra-veronica.html ">mayra veronica</a>

<a href=" xll.weebly.com/jessica-jaymes.html ">jessica jaymes</a>

<a href=" xll.weebly.com/justine-joli.html ">justine joli</a>

<a href=" xll.weebly.com/kerry-marie.html ">kerry marie</a>

# July 15, 2008 12:17 AM

melissa-doll said:

<a href=" xll.weebly.com/melissa-doll.html ">melissa doll</a>

<a href=" xll.weebly.com/avy-scott.html ">avy scott</a>

<a href=" xll.weebly.com/andie-valentino.html ">andie valentino</a>

<a href=" xll.weebly.com/katie-fey.html ">katie fey</a>

<a href=" xll.weebly.com/amy-rose.html ">amy rose</a>

<a href=" xll.weebly.com/lil-kim.html ">lil kim</a>

<a href=" xll.weebly.com/melissa-puente.html ">melissa puente</a>

<a href=" xll.weebly.com/justine-greiner.html ">justine greiner</a>

<a href=" xll.weebly.com/jenna-lewis.html ">jenna lewis</a>

<a href=" xll.weebly.com/bobby-valentino.html ">bobby valentino</a>

# July 15, 2008 1:14 AM

jada-fire said:

<a href=" xll.weebly.com/jada-fire.html ">jada fire</a>

<a href=" xll.weebly.com/randy-blue.html ">randy blue</a>

<a href=" xll.weebly.com/gang-fights.html ">gang fights</a>

<a href=" xll.weebly.com/pure-dee.html ">pure dee</a>

<a href=" xll.weebly.com/codi-milo.html ">codi milo</a>

<a href=" xll.weebly.com/lena-headey.html ">lena headey</a>

<a href=" xll.weebly.com/silver-daddies.html ">silver daddies</a>

<a href=" xll.weebly.com/rate-my-wife.html ">rate my wife</a>

<a href=" xll.weebly.com/crista-nicole.html ">crista nicole</a>

<a href=" xll.weebly.com/taylor-little.html ">taylor little</a>

# July 15, 2008 2:13 AM

la-fea-mas-bella said:

<a href=" xll.weebly.com/la-fea-mas-bella.html ">la fea mas bella</a>

<a href=" xll.weebly.com/allison-angel.html ">allison angel</a>

<a href=" xll.weebly.com/puma-swede.html ">puma swede</a>

<a href=" xll.weebly.com/tiny-angels.html ">tiny angels</a>

<a href=" xll.weebly.com/lil-boosie.html ">lil boosie</a>

<a href=" xll.weebly.com/jeffree-star.html ">jeffree star</a>

<a href=" xll.weebly.com/ice-la-fox.html ">ice la fox</a>

<a href=" xll.weebly.com/fergie-glamorous.html ">fergie glamorous</a>

<a href=" xll.weebly.com/kay-parker.html ">kay parker</a>

<a href=" xll.weebly.com/mary-carey.html ">mary carey</a>

# July 15, 2008 3:08 AM

kari-sweets said:

<a href=" xll.weebly.com/kari-sweets.html ">kari sweets</a>

<a href=" xll.weebly.com/mad-thumbs.html ">mad thumbs</a>

<a href=" xll.weebly.com/soulja-boy.html ">soulja boy</a>

<a href=" xll.weebly.com/mickie-james.html ">mickie james</a>

<a href=" xll.weebly.com/disney-channel-games.html ">disney channel games</a>

<a href=" xll.weebly.com/peanut-butter-jelly-time.html ">peanut butter jelly time</a>

<a href=" xll.weebly.com/paris-exposed.html ">paris exposed</a>

<a href=" xll.weebly.com/eve-lawrence.html ">eve lawrence</a>

<a href=" xll.weebly.com/amy-reid.html ">amy reid</a>

<a href=" xll.weebly.com/jonas-brothers.html ">jonas brothers</a>

# July 15, 2008 5:03 AM

ann-angel said:

<a href=" xll.weebly.com/ann-angel.html ">ann angel</a>

<a href=" xll.weebly.com/sleep-assault.html ">sleep assault</a>

<a href=" xll.weebly.com/kristina-fey.html ">kristina fey</a>

<a href=" xll.weebly.com/emily-procter.html ">emily procter</a>

<a href=" xll.weebly.com/danny-phantom.html ">danny phantom</a>

<a href=" xll.weebly.com/sunny-lane.html ">sunny lane</a>

<a href=" xll.weebly.com/cody-lane.html ">cody lane</a>

<a href=" xll.weebly.com/josh-hutcherson.html ">josh hutcherson</a>

<a href=" xll.weebly.com/randy-orton.html ">randy orton</a>

<a href=" xll.weebly.com/akira-lane.html ">akira lane</a>

# July 15, 2008 6:01 AM

daydreams said:

<a href=" xll.weebly.com/american-daydreams.html ">american daydreams</a>

<a href=" xll.weebly.com/julia-bond.html ">julia bond</a>

<a href=" xll.weebly.com/chris-geary.html ">chris geary</a>

<a href=" xll.weebly.com/call-kelly.html ">call kelly</a>

<a href=" xll.weebly.com/ls-models.html ">ls models</a>

<a href=" xll.weebly.com/antonella-barbara.html ">antonella barbara</a>

<a href=" xll.weebly.com/katie-reese.html ">katie reese</a>

<a href=" xll.weebly.com/addison-rose.html ">addison rose</a>

<a href=" xll.weebly.com/brendon-urie.html ">brendon urie</a>

<a href=" xll.weebly.com/take-a-look-at-my-girlfriend.html ">take a look at my girlfriend</a>

# July 15, 2008 6:57 AM

reedom-bbs said:

<a href=" xll.weebly.com/freedom-bbs.html ">freedom bbs</a>

<a href=" xll.weebly.com/raven-riley.html ">raven riley</a>

<a href=" xll.weebly.com/funny-free-monologues.html ">funny free monologues</a>

<a href=" xll.weebly.com/outta-my-system.html ">outta my system</a>

<a href=" xll.weebly.com/my-best-friends-mom.html ">my best friends mom</a>

<a href=" xll.weebly.com/prehistoric-shark.html ">prehistoric shark</a>

<a href=" xll.weebly.com/brittney-skye.html ">brittney skye</a>

<a href=" xll.weebly.com/star-tattoos.html ">star tattoos</a>

<a href=" xll.weebly.com/pop-goes-my-heart.html ">pop goes my heart</a>

<a href=" xll.weebly.com/eden-mor.html ">eden mor</a>

# July 15, 2008 7:59 AM

thong-dreams said:

<a href=" xll.weebly.com/thong-dreams.html ">thong dreams</a>

<a href=" xll.weebly.com/kiana-tom.html ">kiana tom</a>

<a href=" xll.weebly.com/tyra-moore.html ">tyra moore</a>

<a href=" xll.weebly.com/party-like-a-rockstar.html ">party like a rockstar</a>

<a href=" xll.weebly.com/jean-louisa-kelly.html ">jean louisa kelly</a>

<a href=" xll.weebly.com/mugen-characters.html ">mugen characters</a>

<a href=" xll.weebly.com/avril-lavigne-girlfriend.html ">avril lavigne girlfriend</a>

<a href=" xll.weebly.com/jackie-guerrido.html ">jackie guerrido</a>

<a href=" xll.weebly.com/janet-lupo.html ">janet lupo</a>

<a href=" xll.weebly.com/naruto-mp3.html ">naruto mp3</a>

# July 15, 2008 8:57 AM

megan-good said:

<a href=" xll.weebly.com/megan-good.html ">megan good</a>

<a href=" xll.weebly.com/jesse-jane.html ">jesse jane</a>

<a href=" xll.weebly.com/pop-lock-and-drop-it.html ">pop lock and drop it</a>

<a href=" xll.weebly.com/doctors-excuse.html ">doctors excuse</a>

<a href=" xll.weebly.com/flower-tucci.html ">flower tucci</a>

<a href=" xll.weebly.com/crazy-frog.html ">crazy frog</a>

<a href=" xll.weebly.com/mia-matures.html ">mia matures</a>

<a href=" xll.weebly.com/winx-club.html ">winx club</a>

<a href=&q