<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>WinBlogs.... &#187; video tutorial</title>
	<atom:link href="http://www.winblogs.net/index.php/tag/video-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.winblogs.net</link>
	<description>Just another Windows geek blog...</description>
	<lastBuildDate>Thu, 27 Oct 2011 21:56:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Setuping a server for web hosting – part 4: Installing PHP</title>
		<link>http://www.winblogs.net/index.php/2010/04/14/setuping-a-server-for-web-hosting-part-4-installing-php/</link>
		<comments>http://www.winblogs.net/index.php/2010/04/14/setuping-a-server-for-web-hosting-part-4-installing-php/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 03:17:05 +0000</pubDate>
		<dc:creator>Alesandro Slepčević</dc:creator>
				<category><![CDATA[IIS server]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows and Powershell]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[fopen]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[installing php]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[register globals]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[server setup]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[web platform installer]]></category>
		<category><![CDATA[windows 2008]]></category>
		<guid isPermaLink="false">http://www.winblogs.net/?p=280</guid>
		<description><![CDATA[Hello after a very long pause . Continuing the &#8220;Setuping a server for web hosting&#8221; series with the new smashing video of how to install PHP on your machine! AWESOME right? In the very begining of the post, lets learn what PHP is exactly. So, Wikipedia says ( and I add that I agree with [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Hello after a very long pause <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . Continuing the &#8220;Setuping a server for web hosting&#8221; series with the new smashing video of how to install PHP on your machine! AWESOME right? <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>In the very begining of the post, lets learn what PHP is exactly.</p>
<p>So, Wikipedia says ( and I add that I agree with her <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  :</p>
<p><strong>PHP: Hypertext Preprocessor</strong> is a widely used, general-purpose scripting language that was originally designed for web development to produce dynamic web pages. For this purpose, PHP code is embedded into  the HTML source document and interpreted by a web  server with a PHP processor module, which generates the web page document. As a general-purpose programming language, PHP code is  processed by an interpreter application in command-line mode performing desired operating  system operations and producing program output on its standard output  channel. It may also function as a graphical application. PHP is  available as a processor for most modern web servers and as standalone  interpreter on most operating systems and computing platforms.<br />
<span id="more-280"></span><br />
PHP was originally created by Rasmus Lerdorf in 1995 and has been in continuous development ever since. The main  implementation of PHP is now produced by The PHP Group and serves as the  <em>de facto</em><a title="De  facto standard" href="http://en.wikipedia.org/wiki/De_facto_standard"> standard</a> for PHP as there is no formal specification.PHP is free software released under the PHP  License.</p>
<p>So, now when we know what PHP is, lets check the basic PHP syntax:</p>
<ul><code> </code></p>
<pre>&lt;?php
    echo "Hello World";
   /* echo("Hello World"); works as well, although echo isn't a
    function (it's a language construct). In some cases, such
    as when multiple parameters are passed to echo, parameters
    cannot be enclosed in parentheses */
?&gt;</pre>
</ul>
<p>You can find out more about the PHP project on <a href="http://www.http://php.net/">www.php.net</a>.</p>
<p>In this case, I will use Windows Web Platform Installer to install PHP on my machine. By going on <a href="http://www.microsoft.com/WEB/platform/phponwindows.aspx">this link</a> you can use the installer to install PHP on your machine (same link is also used in the video).</p>
<p>Check out the video ( dont forget to put it in full screen mode <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  :</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="505" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/WT0ymPhxWOU&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="505" src="http://www.youtube.com/v/WT0ymPhxWOU&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>So, now when you&#8217;re all full of excitement and thinking &#8220;LOL, installing PHP is extra easy, everyone could do it&#8221; &#8230;.NAH!!! and the host says: You lost <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>First, lets check it the PHP is working at all on our server. Yes, we could use the above stated syntax, but that just isnt fun <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . To get some detailed info on our PHP lets use this command:</p>
<ul>
<pre>&lt;?php phpinfo(); ?&gt;</pre>
</ul>
<p>Lets navigate to c:\inetpub\wwwroot\ and create a file called &#8220;phptest.php&#8221; . We will do that by clicking with the right mouse click , New &#8211; Text Document.  We will call it phptest.php.</p>
<p>Inside the document we will paste the above piece of code, save it and hold your fingers <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<p>Point your browser to your server address, and to the phptest.php file.</p>
<p>If everything went smoothly you should see a page like this:</p>
<p style="text-align: center;"><a href="http://www.winblogs.net/wp-content/uploads/2010/04/php.jpg"><img class="size-medium wp-image-307 aligncenter" style="margin-top: 2px; margin-bottom: 2px; border: 0pt none;" title="php" src="http://www.winblogs.net/wp-content/uploads/2010/04/php-214x300.jpg" alt="" width="214" height="300" /></a></p>
<p style="text-align: center;">
<p>If you see the page that means that the PHP on our server is working properly.</p>
<p>Now, lets have some fun with security issues in PHP.</p>
<p>First of all, we have to check the php.ini file which is located in C:\Program Files (x86)\PHP\php.ini  . Lets open it with Notepad.</p>
<p>Most of the option are explained in the file itself, so we will skip  them. Focus will be only on the most important ones.</p>
<p>One of the interesting lines is this :</p>
<ul> <strong>; &#8211; magic_quotes_gpc = Off         [Performance]<br />
</strong></ul>
<p>As we can see, that option is commented out and DISABLED, and its best to leave it like that since its been deprecated in PHP 5.3.X .</p>
<p>Second option is:</p>
<ul><strong>register_globals</strong> = Off -</ul>
<p><strong>LEAVE THAT TURNED OFF</strong>. If you have clients who have ancient applications, tell them to rewrite them <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .  More about the discussion on using register globals can be found on this <a href="http://www.php.net/manual/en/security.globals.php">link</a></p>
<p>Third one that should be disabled is :</p>
<ul>allow_url_fopen = On</ul>
<p>Standard setting in the instllation is &#8220;On&#8221;, which is bad and wrong for many reasons <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  . This setting should be turned of because of cross site scripting and security holes in lots of CMS/Forum scripts. When fopen is turned on, a potential attacker has an oportunity to use some security hole in your application to include his own file and gain access over your entire account. I really think you dont want that <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But, never fear , alternative is here <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .Tell your customers or yourself to use <strong>curl </strong>for fetching remote content.</p>
<p>Standard<strong> fopen</strong> function should be replaced with a curl function :</p>
<p><strong>Fopen function</strong></p>
<ul>
<pre><code>    &lt;?
    $result = fopen($url,r);
    ?&gt;
</code></pre>
</ul>
<p><strong>Curl function</strong></p>
<ul>
<pre><code>&lt;?
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, 0);
$result = curl_exec($ch);
curl_close($ch);
?&gt;
</code></pre>
</ul>
<p>Next very important setting is :</p>
<ul>disable_functions =</ul>
<p>By standard, its empty&#8230;</p>
<p>Here are some of the most common functions to be disabled : <strong>system, exec, shell_exec, passthru, set_time_limit, error_log,  ini_alter, dl, pfsockopen, openlog, syslog, readlink, symlink, link,  leak, fsockopen, popen, escapeshellcmd, apache_child_terminate  apache_get_modules, apache_get_version, apache_getenv,  apache_note,apache_setenv,virtual </strong></p>
<p><strong>Google a bit to find what these functions do, but for an example, I would disable the &#8220;exec&#8221; command ( among others) , but you find out why <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </strong><br />
<span style="font-size: x-small;"><em>( hint : net user /add useraccountname mypassword )<br />
</em></span></p>
<p>When you&#8217;re done setting the <strong>php.ini</strong> file, all you need to do is restart IIS server and thats it.</p>
<p>Next step is to install some PHP based application and admire your work.</p>
<p>Ofcourse, this is a very fast tutorial on installing PHP . <strong>Configuration of it is the trickiest part and you should use the official php site and google to help you with it!</strong></p>
<p>Cheers, Alesandro<strong><br />
</strong></p>
<p><strong><br />
</strong></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 2453px; width: 1px; height: 1px; overflow: hidden;"><strong>system, exec, shell_exec, passthru, set_time_limit, error_log,  ini_alter, dl, pfsockopen, openlog, syslog, readlink, symlink, link,  leak, fsockopen, popen, escapeshellcmd, apache_child_terminate  apache_get_modules, apache_get_version, apache_getenv,  apache_note,apache_setenv,virtual </strong></div>
<div class="shr-publisher-280"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.winblogs.net/index.php/2010/04/14/setuping-a-server-for-web-hosting-part-4-installing-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setuping a server for web hosting – part 3: Installing MySQL</title>
		<link>http://www.winblogs.net/index.php/2009/11/01/setuping-a-server-for-web-hosting-%e2%80%93-part-3-installing-mysql/</link>
		<comments>http://www.winblogs.net/index.php/2009/11/01/setuping-a-server-for-web-hosting-%e2%80%93-part-3-installing-mysql/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 14:57:13 +0000</pubDate>
		<dc:creator>Alesandro Slepčević</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows and Powershell]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[installing mysql]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[server setup]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 2008 r2]]></category>
		<guid isPermaLink="false">http://www.winblogs.net/?p=212</guid>
		<description><![CDATA[Back by popular demand part 3 of the &#8220;setup my web server&#8221; tutorials In this post we will cover the instalation of MySQL on a Windows 2008 R2 based server. The process is the same if you would have a Windows 2003 machine also. At the beginning, lets see what MySQL is. MySQL is a [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Back by popular demand <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  part 3 of the &#8220;setup my web server&#8221; tutorials <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>In this post we will cover the instalation of MySQL on a Windows 2008 R2 based server. The process is the same if you would have a Windows 2003 machine also.</p>
<p>At the beginning, lets see what MySQL is.</p>
<p><strong>MySQL</strong> is a <a title="Relational database management system" href="http://en.wikipedia.org/wiki/Relational_database_management_system">relational database management system</a> (RDBMS)<sup id="cite_ref-0"><a href="http://en.wikipedia.org/wiki/MySQL#cite_note-0"><span>.</span></a></sup><sup id="cite_ref-sun-mysql_1-0"><a href="http://en.wikipedia.org/wiki/MySQL#cite_note-sun-mysql-1"></a></sup> MySQL stands for &#8220;My <a title="SQL" href="http://en.wikipedia.org/wiki/SQL">Structured Query Language</a>&#8220;. The program runs as a server providing multi-user access to a number of databases.</p>
<p>The project has made its source code available under the terms of the <a title="GNU General Public License" href="http://en.wikipedia.org/wiki/GNU_General_Public_License">GNU General Public License</a>, as well as under a variety of proprietary agreements. MySQL is owned and sponsored by a single for-profit firm, the Swedish company MySQL AB, now a subsidiary of <a title="Sun Microsystems" href="http://en.wikipedia.org/wiki/Sun_Microsystems">Sun Microsystems</a>. As of 2009<sup style="display: none;"><a rel="nofollow" href="http://en.wikipedia.org/w/index.php?title=MySQL&amp;action=edit">[update]</a></sup> <a title="Oracle Corporation" href="http://en.wikipedia.org/wiki/Oracle_Corporation">Oracle Corporation</a> began the process of acquiring Sun Microsystems; Oracle holds the copyright to most of the MySQL codebase.</p>
<p>MySQL is often used in free software projects which require a full-featured database management system, such as <a title="WordPress" href="http://en.wikipedia.org/wiki/WordPress">WordPress</a>, <a title="PhpBB" href="http://en.wikipedia.org/wiki/PhpBB">phpBB</a> and other software built on the <a title="LAMP (software bundle)" href="http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29">LAMP</a> software stack. It is also used in very high-scale <a title="World Wide Web" href="http://en.wikipedia.org/wiki/World_Wide_Web">World Wide Web</a> products including <a title="Wikipedia" href="http://en.wikipedia.org/wiki/Wikipedia">Wikipedia</a>, <a title="Google" href="http://en.wikipedia.org/wiki/Google">Google</a> and <a title="Facebook" href="http://en.wikipedia.org/wiki/Facebook">Facebook</a><sup style="white-space: nowrap;" title="This claim needs references to reliable sources from September 2009"><em>.</em></sup></p>
<p>Many web applications use MySQL as the database component of a <a title="LAMP (software bundle)" href="http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29">LAMP</a> software stack. Its popularity for use with web applications is closely tied to the popularity of <a title="PHP" href="http://en.wikipedia.org/wiki/PHP">PHP</a>, which is often combined with MySQL.</p>
<p>So, what is the process of installing MySQL on a Windows machine? Well, it&#8217;s pretty straight forward so there is no need to write step-by-step tuturial..look at the video rather than reading <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Dont forget to choose HD and the &#8220;full screen&#8221; option.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="525" height="444" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/InsSDz6rmCk&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="525" height="444" src="http://www.youtube.com/v/InsSDz6rmCk&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Song in the video is from Thievery Corporation. Song name is : Lebanese Blonde <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="shr-publisher-212"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.winblogs.net/index.php/2009/11/01/setuping-a-server-for-web-hosting-%e2%80%93-part-3-installing-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrating Windows XP to Windows 7</title>
		<link>http://www.winblogs.net/index.php/2009/10/24/migrating-windows-xp-to-windows-7/</link>
		<comments>http://www.winblogs.net/index.php/2009/10/24/migrating-windows-xp-to-windows-7/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 03:44:02 +0000</pubDate>
		<dc:creator>Alesandro Slepčević</dc:creator>
				<category><![CDATA[Windows and Powershell]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[windows 7 migration]]></category>
		<category><![CDATA[xp to 7]]></category>
		<guid isPermaLink="false">http://www.winblogs.net/?p=194</guid>
		<description><![CDATA[Hi again, found an video that could be very interesting&#8230;.its about how to migrate Windows XP to Windows7 &#8230;. Click on the picture and enjoy! Note: open the link in Internet Explorer&#8230;there&#8217;s no sound in Firefox]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Hi again, found an video that could be very interesting&#8230;.its about how to migrate Windows XP to Windows7 &#8230;.</p>
<p>Click on the picture and enjoy!</p>
<p><strong>Note: open the link in Internet Explorer&#8230;there&#8217;s no sound in Firefox <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p style="text-align: center;"><a href="http://technet.microsoft.com/en-us/windows/dd671583.aspx"><img class="aligncenter size-full wp-image-195" title="windowsmigration" src="http://www.winblogs.net/wp-content/uploads/2009/10/windowsmigration.PNG" alt="windowsmigration" width="535" height="401" /></a></p>
<div class="shr-publisher-194"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.winblogs.net/index.php/2009/10/24/migrating-windows-xp-to-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setuping a server for web hosting &#8211; part 2: Installing SQL 2008 Express</title>
		<link>http://www.winblogs.net/index.php/2009/10/24/setuping-a-server-for-web-hosting-part-2-installing-sql-2008-express/</link>
		<comments>http://www.winblogs.net/index.php/2009/10/24/setuping-a-server-for-web-hosting-part-2-installing-sql-2008-express/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 03:19:23 +0000</pubDate>
		<dc:creator>Alesandro Slepčević</dc:creator>
				<category><![CDATA[Windows and Powershell]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[installing mssql]]></category>
		<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[server setup]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[web platform installer]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 2008]]></category>
		<category><![CDATA[windows 2008 r2]]></category>
		<guid isPermaLink="false">http://www.winblogs.net/?p=185</guid>
		<description><![CDATA[Hello there&#8230; In order to  install SQL 2008 Express, we have to download it first . Fire up your favorite browser and point it to http://www.microsoft.com/express/download/ . After that, find the box with the SQL 2008 Express, and click download. On the next step you have the option to register with Microsoft or download the [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Hello there&#8230;</p>
<p>In order to  install SQL 2008 Express, we have to download it first . Fire up your favorite browser and point it to<a href="http://www.microsoft.com/express/download/"> http://www.microsoft.com/express/download/</a> . After that, find the box with the SQL 2008 Express, and click download.</p>
<p><a href="http://www.winblogs.net/wp-content/uploads/2009/10/sqlexpress.PNG"><img class="aligncenter size-full wp-image-186" title="sqlexpress" src="http://www.winblogs.net/wp-content/uploads/2009/10/sqlexpress.PNG" alt="sqlexpress" width="369" height="232" /></a></p>
<p>On the next step you have the option to register with Microsoft or download the software without registration.  I will choose the &#8220;no registration part&#8221;.</p>
<p><a href="http://www.winblogs.net/wp-content/uploads/2009/10/sqlexpressdownloadpage.PNG"><img class="aligncenter size-full wp-image-188" title="sqlexpressdownloadpage" src="http://www.winblogs.net/wp-content/uploads/2009/10/sqlexpressdownloadpage.PNG" alt="sqlexpressdownloadpage" width="471" height="160" /></a></p>
<p>In the new window, choose the version you would like to install. Personally, I will choose &#8220;<strong>Runtime with advanced services</strong>&#8220;. By clicking on install, Microsoft will ask to install the <strong>Microsoft Web Platform installer</strong>. If you dont have it installed, click on the picture to install it.</p>
<p><a href="http://www.winblogs.net/wp-content/uploads/2009/10/webplatforminstaller.PNG"><img class="aligncenter size-full wp-image-187" title="webplatforminstaller" src="http://www.winblogs.net/wp-content/uploads/2009/10/webplatforminstaller.PNG" alt="webplatforminstaller" width="199" height="54" /></a></p>
<p>Choose<strong> &#8220;Run&#8221;</strong>, and after the download, again, choose<strong> &#8220;Run</strong>&#8220;. Wait for the installtion to finish and look at the top of the browser, a little bar will pop up and ask us if we want to run Active X control.  <strong>Make sure the publisher is &#8220;Microsoft Corporation&#8221;</strong>. Click on &#8220;<strong>Run</strong>&#8220;, and then on<strong> Allow</strong>.</p>
<p>Now, look at the video of the installation I have made for you. The video will show you the process of installing<strong> SQL Server 2008 Express.</strong></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/lWUjAG8Ab7I&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/lWUjAG8Ab7I&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>After that, all you need to do is run the <strong>&#8220;SQL Server Configuration Manager</strong>&#8221; under<strong> &#8220;Configuration Tools&#8221;</strong> and configure it the way you want it.</p>
<p>BTW, the track used is <span id="now-playing-info"><strong>La Noche</strong> by Coca &amp; Villa .IT&#8217;s AWESOME!!!</span></p>
<p><span>Have fun&#8230;bye!<br />
</span></p>
<div class="shr-publisher-185"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.winblogs.net/index.php/2009/10/24/setuping-a-server-for-web-hosting-part-2-installing-sql-2008-express/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HyperV+ISCSI+Windows 2008 &#8211; yes..it works like a charm :)</title>
		<link>http://www.winblogs.net/index.php/2009/10/21/hyperviscsiwindows-2008-yes-it-works-like-a-charm/</link>
		<comments>http://www.winblogs.net/index.php/2009/10/21/hyperviscsiwindows-2008-yes-it-works-like-a-charm/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 01:33:16 +0000</pubDate>
		<dc:creator>Alesandro Slepčević</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows and Powershell]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[failover cluster]]></category>
		<category><![CDATA[hyper]]></category>
		<category><![CDATA[hyper v]]></category>
		<category><![CDATA[HyperV]]></category>
		<category><![CDATA[hypervisor]]></category>
		<category><![CDATA[installing iis]]></category>
		<category><![CDATA[ISCSI]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[server setup]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 2008 r2]]></category>
		<category><![CDATA[ZFS]]></category>
		<guid isPermaLink="false">http://www.winblogs.net/?p=159</guid>
		<description><![CDATA[Today, me and my collegaue managed to configure ISCSI on some backup server we had at the office. Iscsi target is based on OpenSolaris and ZFS . ZFS is a combined file system and logical volume manager designed by Sun Microsystems. The features of ZFS include support for high storage capacities, integration of the concepts [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Today, me and my collegaue managed to configure ISCSI on some backup server we had at the office. Iscsi target is based on OpenSolaris and ZFS . <strong>ZFS</strong> is a combined <a title="File system" href="http://en.wikipedia.org/wiki/File_system">file system</a> and <a title="Logical volume manager" href="http://en.wikipedia.org/wiki/Logical_volume_manager">logical volume manager</a> designed by <a title="Sun Microsystems" href="http://en.wikipedia.org/wiki/Sun_Microsystems">Sun Microsystems</a>. The features of ZFS include support for high storage capacities, integration of the concepts of filesystem and volume management, snapshots and copy-on-write clones, continuous integrity checking and automatic repair, <a title="RAID-Z" href="http://en.wikipedia.org/wiki/RAID-Z">RAID-Z</a> and native <a title="NFSv4" href="http://en.wikipedia.org/wiki/NFSv4">NFSv4</a> <a title="Access control lists" href="http://en.wikipedia.org/wiki/Access_control_lists">ACLs</a>. ZFS is implemented as open-source software, licensed under the <a title="Common Development and Distribution License" href="http://en.wikipedia.org/wiki/Common_Development_and_Distribution_License">Common Development and Distribution License</a> (CDDL). The ZFS name is a trade mark of Sun.</p>
<p>Requirements for running any OS in HyperV that will be stored on Iscsi server are:</p>
<p><span style="text-decoration: underline;"><strong>1. Iscsi target, obviously <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></span></p>
<p><span style="text-decoration: underline;"><strong>2.Iscsi initiator software ( bundled in Windows 2008 Server)</strong></span></p>
<p><span style="text-decoration: underline;"><strong>3. High speed network, atleast 1Gbit.</strong></span></p>
<p><span style="text-decoration: underline;"><strong>4. Drive that you connect to the HyperV machine MUST stay in offline mode.</strong></span></p>
<p><span style="text-decoration: underline;"><strong>5. Tons of time to configure it <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></span></p>
<p><strong>Will you will be able to read more details about configuring OpenSolaris and ZFS on my collegaues blog : <a href="http://www.toic.org" target="_blank">toic.org  &#8211; linux geek blog<br />
</a></strong></p>
<p>So, like we already know, the disk on that we want to install the OS has to be offline  ( hint: disk2 ).</p>
<p style="text-align: center;"><a href="http://www.winblogs.net/wp-content/uploads/2009/10/diskovi.PNG"><img class="size-medium wp-image-160 aligncenter" style="margin-top: 5px; margin-bottom: 5px;" title="diskovi" src="http://www.winblogs.net/wp-content/uploads/2009/10/diskovi-300x181.PNG" alt="diskovi" width="251" height="151" /></a></p>
<p style="text-align: center;"><a href="http://www.winblogs.net/wp-content/uploads/2009/10/hyperv.PNG"><img class="size-medium wp-image-165 aligncenter" title="hyperv" src="http://www.winblogs.net/wp-content/uploads/2009/10/hyperv-300x228.PNG" alt="hyperv" width="251" height="190" /></a></p>
<p>Next step is the creation of the virtual machine that will use the disk.  I have recorded that process, so you can see how simple it is <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/fKDwf9LYgBU&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/fKDwf9LYgBU&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>All that you have to do is to install the OS&#8230;I didnt do that to the end in the video.</p>
<p>Tommorow we have planned to create a failover cluster with two Windows 2008 servers and see what will happen when one server suddenly get disconnected..ups <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Bye, Alesandro</p>
<div class="shr-publisher-159"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.winblogs.net/index.php/2009/10/21/hyperviscsiwindows-2008-yes-it-works-like-a-charm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing IIS on Windows server 2008 R2 Standard &#8211; video tutorial.</title>
		<link>http://www.winblogs.net/index.php/2009/10/20/installing-iis-on-windows-server-2008-r2-standard/</link>
		<comments>http://www.winblogs.net/index.php/2009/10/20/installing-iis-on-windows-server-2008-r2-standard/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 00:28:34 +0000</pubDate>
		<dc:creator>Alesandro Slepčević</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Windows and Powershell]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[installing iis]]></category>
		<category><![CDATA[MSSQL]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[server setup]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 2008 r2]]></category>
		<guid isPermaLink="false">http://www.winblogs.net/?p=129</guid>
		<description><![CDATA[Hi, last couple of days I have setuped over 10 Windows 2008 servers for hosting services for testing or production, so I am pretty bored with repeating the same stuff all over again , but, here&#8217;s a recorded video tutorial of one installation process. Because the video is pretty straightforward, I&#8217;ve decided that there is [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Hi, last couple of days I have setuped over 10 Windows 2008 servers for hosting services for testing or production, so I am pretty bored with repeating the same stuff all over again <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  , but, here&#8217;s a recorded video tutorial of one installation process.  Because the video is pretty straightforward,  I&#8217;ve decided that there is no need to explain every step of the installation.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="525" height="444" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/A1VR3kgOLcE&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="550" height="469" src="http://www.youtube.com/v/A1VR3kgOLcE&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Click on the HD button and put the video into full screen mode, so you can see all the details.</p>
<p>In the next post, I will show you how to install Microsoft SQL server 2008 Express .</p>
<p>Cheers!</p>
<div class="shr-publisher-129"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.winblogs.net/index.php/2009/10/20/installing-iis-on-windows-server-2008-r2-standard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup a Windows 2008 Server for hosting usage?</title>
		<link>http://www.winblogs.net/index.php/2009/10/17/how-to-setup-a-windows-2008-server-for-hosting-usage/</link>
		<comments>http://www.winblogs.net/index.php/2009/10/17/how-to-setup-a-windows-2008-server-for-hosting-usage/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 14:09:54 +0000</pubDate>
		<dc:creator>Alesandro Slepčević</dc:creator>
				<category><![CDATA[Windows and Powershell]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[server setup]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 2008 r2]]></category>
		<guid isPermaLink="false">http://www.winblogs.net/?p=118</guid>
		<description><![CDATA[No, I wont explain everything in this post. This post is just a annoucement, so you can know what will you read in a couple of next posts. We will cover the installation of IIS  7( Internet Information Services), MS SQL server, MYSQL server, PHP 5, Perl, Awstats and finally, integrating everything in DotNetPanel, the [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>No, I wont explain everything in this post. This post is just a annoucement, so you can know what will you read in a couple of next posts. We will cover the installation of IIS  7( Internet Information Services), MS SQL server, MYSQL server, PHP 5, Perl, Awstats and finally, integrating everything in DotNetPanel, the web hosting control panel for Windows Servers.  I will not explain or show how to install the OS on the server, because its a rudimentary and boring stuff <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  , but being awesome, here&#8217;s a link to the video someone made <img src='http://www.winblogs.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-118"></span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="345" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="Metacafe_1833096" /><param name="src" value="http://www.metacafe.com/fplayer/1833096/how_to_install_a_microsoft_windows_2008_server.swf" /><param name="wmode" value="transparent" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="345" src="http://www.metacafe.com/fplayer/1833096/how_to_install_a_microsoft_windows_2008_server.swf" allowfullscreen="true" wmode="transparent" name="Metacafe_1833096"></embed></object><br />
<span style="font-size: xx-small;"><a href="http://www.metacafe.com/watch/1833096/how_to_install_a_microsoft_windows_2008_server/">How To Install a Microsoft Windows 2008 Server</a> &#8211; <a href="http://www.metacafe.com/">For more amazing video clips, click here</a></span></p>
<div class="shr-publisher-118"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.winblogs.net/index.php/2009/10/17/how-to-setup-a-windows-2008-server-for-hosting-usage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

