<?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>Web Technologies &#8211; The Server Side Technology</title>
	<atom:link href="https://www.theserverside.technology/category/web-technologies/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.theserverside.technology</link>
	<description>in-depth information for tech pros</description>
	<lastBuildDate>Tue, 08 Oct 2019 22:32:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.0.1</generator>
	<item>
		<title>WordPress and MySQL: fixing the wp_options table</title>
		<link>https://www.theserverside.technology/2019/10/08/wordpress-and-mysql-fixing-the-wp_options-table/?pk_campaign=feed&#038;pk_kwd=wordpress-and-mysql-fixing-the-wp_options-table</link>
					<comments>https://www.theserverside.technology/2019/10/08/wordpress-and-mysql-fixing-the-wp_options-table/?pk_campaign=feed&#038;pk_kwd=wordpress-and-mysql-fixing-the-wp_options-table#respond</comments>
		
		<dc:creator><![CDATA[Guglielmo Mengora]]></dc:creator>
		<pubDate>Tue, 08 Oct 2019 22:32:17 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Technologies]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[trick]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.theserverside.technology/?p=1390</guid>

					<description><![CDATA[<div style="margin: 5px 5% 10px 5%;"><img src="https://www.theserverside.technology/wp-content/uploads/2019/10/wordpress-1920-300x199.jpg" width="300" height="199" title="" alt="" /></div><div>
<p class="has-drop-cap">We had a weird problem when moving a WordPress website for a customer: after DUMPing it out of MySQL, we noted that the wp_options table had a problem, namely the table had no primary key and no index on the option_name field. We noted that because the WordPress website, once moved, looked akward and wrong, missing some key pieces and it also seemed to use settings that were old. The reason was that, with primary key missing, lots of duplicate records were stored inside the table and I&#8217;m pretty sure it was not what the website was meant to do. Field option_id was set to 0 in most cases when it should have been an auto-incremented integer plus it seemed that the website was not updating settings, rather it was storing a new copy of them each time.</p>



<p>The akward look was probably due to WordPress not being able to load-up the most recent settings but the weird thing was that it was working like a charm on its existing server. However, we noticed that the source server was running MySQL 5.1 while the destination was instead running MySQL 5.7. MySQL is that weird beast where everything can happen but anyway that 5.1 version was really really old. I would expect such things not to happen in an enterprise world (never had such problems with SQL Server) but&#8230;</p>



The problem



<p>So the first problem we had to solve was re-enabling primary key for field option_id and its indices but we couldn&#8217;t add a primary key on that field since thousands of record were using the same key (zero) so we had to find a way to update them with a unique value. The best solution would be to have consecutive integers though that wouldn&#8217;t ensure that we are restoring the right order. But I&#8217;m afraid there&#8217;s no real way to be sure about that. However, when enumerating records one might assume that the table scan would populate results from the oldest to the newest. Not sure about this but we might try.</p>



<p>So we basically developed a stored procedure that would scan that table and update each record to set a new option_id. One of the key problems with this is that you need to perform only an update at a time because you cannot use any relevant key to uniquely get the record given that option_id is zero. Other fields might be the same for multiple records so for example if we try to select records based on option_name we might have multiple records update with the same option_id and we wouldn&#8217;t solve our problems.</p>



<p>We might just hope that we&#8217;re lucky enough so that scanning for zero keys and updating just a single record would just update in the same order. Anyway, the key to change the table design is to have different keys, it is not strictly necessary to have the same order though quirks might happen if we don&#8217;t do that. The real important thing is to ensure we won&#8217;t [...]</div><img src="https://stats1.vaisulweb.cloud/piwik.php?idsite=1&amp;rec=1&amp;url=https%3A%2F%2Fwww.theserverside.technology%2F2019%2F10%2F08%2Fwordpress-and-mysql-fixing-the-wp_options-table%2F%3Fpk_campaign%3Dfeed%26pk_kwd%3Dwordpress-and-mysql-fixing-the-wp_options-table&amp;action_name=WordPress+and+MySQL%3A+fixing+the+wp_options+table&amp;urlref=https%3A%2F%2Fwww.theserverside.technology%2Ffeed%2F" style="border:0;width:0;height:0" width="0" height="0" alt="" />]]></description>
		
					<wfw:commentRss>https://www.theserverside.technology/2019/10/08/wordpress-and-mysql-fixing-the-wp_options-table/?pk_campaign=feed&#038;pk_kwd=wordpress-and-mysql-fixing-the-wp_options-table/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<enclosure url="https://www.theserverside.technology/wp-content/uploads/2019/10/wordpress-1920.jpg" length="417896" type="image/jpg" />
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://www.theserverside.technology/wp-content/uploads/2019/10/wordpress-1920-300x199.jpg" width="300" height="199" medium="image" type="image/jpeg">
	<media:copyright>The Server Side Technology</media:copyright>
	<media:title></media:title>
	<media:description type="html"><![CDATA[]]></media:description>
</media:content>
<media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.theserverside.technology/wp-content/uploads/2019/10/wordpress-1920-300x199.jpg" width="300" height="199" />
	</item>
		<item>
		<title>Come usare PHP 7 versione 32 o 64bit con i servizi di Cloud Hosting e Windows Azure Pack</title>
		<link>https://www.theserverside.technology/2015/12/29/come-usare-php-7-versione-32-o-64bit-con-i-servizi-di-cloud-hosting-e-windows-azure-pack/?pk_campaign=feed&#038;pk_kwd=come-usare-php-7-versione-32-o-64bit-con-i-servizi-di-cloud-hosting-e-windows-azure-pack</link>
					<comments>https://www.theserverside.technology/2015/12/29/come-usare-php-7-versione-32-o-64bit-con-i-servizi-di-cloud-hosting-e-windows-azure-pack/?pk_campaign=feed&#038;pk_kwd=come-usare-php-7-versione-32-o-64bit-con-i-servizi-di-cloud-hosting-e-windows-azure-pack#comments</comments>
		
		<dc:creator><![CDATA[Guglielmo Mengora]]></dc:creator>
		<pubDate>Tue, 29 Dec 2015 01:01:19 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Technologies]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[windows azure pack]]></category>
		<guid isPermaLink="false">http://www.theserverside.technology/?p=981</guid>

					<description><![CDATA[<div style="margin: 5px 5% 10px 5%;"><img src="https://www.theserverside.technology/wp-content/uploads/2015/12/php_code-300x240.jpg" width="300" height="240" title="" alt="" /></div><div><p>PHP7 è stato rilasciato il 3 Dicembre di quest&#8217;anno ed il primo aggiornamento (la v7.0.1) ha seguito a ruota il 17 Dicembre. Questa versione introduce molti cambiamenti, inclusi molti miglioramenti alle prestazioni quando si effettua un confronto con PHP 5.6 (si parla di un raddoppio delle prestazioni!), una gestione migliore della memoria che porta le applicazioni a consumarne meno ed il supporto per i runtime a 64bit. Ci sono ovviamente altre novità ma questi tre miglioramenti sono già di per sé una buona ragione per passare alla nuova versione. Ci potrebbero ovviamente essere problemi che impediscono l&#8217;aggiornamento alla v7, ad esempio codice non supportato o non più raccomandato, ma se le vostre applicazioni lo consentono l&#8217;upgrade potrebbe essere consigliato per migliorare le prestazioni complessive.</p>
<p>Ci sono alcune estensioni che consentono l&#8217;installazione di PHP su Azure per iniziare ad usare da subito il nuovo framework ma queste estensioni non sono utilizzabili con Windows Azure Pack e gli hoster che ne fanno uso perché gli script di installazione hanno qualche problema, in particolare facendo riferimento al drive D: (come richiesto da Azure) invece che al drive C: (come richiesto in WAP) nel percorso virtualizzato o usando la variabile di ambiente %HOME% per essere compatibili con tutti e due gli ambienti. Questa è però una buona occasione per esplorare ancora una volta le possibilità di personalizzazione di Windows Azure Pack e configurare PHP7 da soli, una cosa molto utile per capire il funzionamento degli account WAP e poter effettuare aggiornamenti successivi senza la necessità di attendere il rilascio di un altro script. Avere a disposizione PHP7 può essere utile sia per sviluppare applicazioni che usino il nuovo framework sia per usare applicazioni compatibili come WordPress, che da qualche tempo ha effettuato un refactoring del proprio codice per renderlo compatibile con la nuova versione del framework&#8230; estensioni, plugin e temi permettendo !</p>
<p>Questo tutorial è stato provato con i servizi di Cloud Hosting di VaiSulWeb e considerato che la nostra azienda consente l&#8217;attivazione di account gratuiti per il testing e lo sviluppo, è facile iniziare a lavorare subito con framework di nuova generazione come ASP.NET 5 o PHP7. Visitate il nostro sito Web per richiedere il vostro account gratuito.</p>
Per iniziare
<p>Per iniziare servirà ovviamente scaricare PHP7 dal sito ufficiale, facendo attenzione a scaricare una distribuzione per Windows che è quella che servirà per i nostri test. Possiamo navigare quindi sul sito Web di PHP e cercare una versione contrassegnata da VC14 x64 Non-Thread-Safe (NTS), ad esempio php-7.0.1-nts-Win32-VC14-x64.zip. Quando il download terminerà, possiamo decomprimere il file ZIP e trasferire i file estratti sul nostro sito Web attraverso FTP. Inseriremo i file nella cartella /site/bin/php in modo che la struttura delle nostre cartelle sia simile a quella evidenziata di seguito:</p>
<p style="padding-left: 30px;">site/</p>
<p style="padding-left: 60px;">bin/</p>
<p style="padding-left: 90px;">php/</p>
<p style="padding-left: 120px;">dev
 ext
 [&#8230;]
php.ini
[&#8230;]
 php-cgi.exe
 [&#8230;]</p>
<p style="padding-left: 30px;">wwwroot</p>
<p>Ora che abbiamo PHP sul nostro sito Web, dobbiamo risolvere due problemi prima di poter usare il nuovo runtime: il primo è comunicare all&#8217;ambiente di hosting che vogliamo usare questa nuova versione invece che una di quelle [...]</div><img src="https://stats1.vaisulweb.cloud/piwik.php?idsite=1&amp;rec=1&amp;url=https%3A%2F%2Fwww.theserverside.technology%2F2015%2F12%2F29%2Fcome-usare-php-7-versione-32-o-64bit-con-i-servizi-di-cloud-hosting-e-windows-azure-pack%2F%3Fpk_campaign%3Dfeed%26pk_kwd%3Dcome-usare-php-7-versione-32-o-64bit-con-i-servizi-di-cloud-hosting-e-windows-azure-pack&amp;action_name=Come+usare+PHP+7+versione+32+o+64bit+con+i+servizi+di+Cloud+Hosting+e+Windows+Azure+Pack&amp;urlref=https%3A%2F%2Fwww.theserverside.technology%2Ffeed%2F" style="border:0;width:0;height:0" width="0" height="0" alt="" />]]></description>
		
					<wfw:commentRss>https://www.theserverside.technology/2015/12/29/come-usare-php-7-versione-32-o-64bit-con-i-servizi-di-cloud-hosting-e-windows-azure-pack/?pk_campaign=feed&#038;pk_kwd=come-usare-php-7-versione-32-o-64bit-con-i-servizi-di-cloud-hosting-e-windows-azure-pack/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<enclosure url="https://www.theserverside.technology/wp-content/uploads/2015/12/php_code.jpg" length="379749" type="image/jpg" />
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://www.theserverside.technology/wp-content/uploads/2015/12/php_code-300x240.jpg" width="300" height="240" medium="image" type="image/jpeg">
	<media:copyright>The Server Side Technology</media:copyright>
	<media:title></media:title>
	<media:description type="html"><![CDATA[]]></media:description>
</media:content>
<media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.theserverside.technology/wp-content/uploads/2015/12/php_code-300x240.jpg" width="300" height="240" />
	</item>
		<item>
		<title>How to run PHP 7 x64/x86 on Windows Azure Pack</title>
		<link>https://www.theserverside.technology/2015/12/26/how-to-run-php-7-x64-x86-on-windows-azure-pack/?pk_campaign=feed&#038;pk_kwd=how-to-run-php-7-x64-x86-on-windows-azure-pack</link>
					<comments>https://www.theserverside.technology/2015/12/26/how-to-run-php-7-x64-x86-on-windows-azure-pack/?pk_campaign=feed&#038;pk_kwd=how-to-run-php-7-x64-x86-on-windows-azure-pack#respond</comments>
		
		<dc:creator><![CDATA[Guglielmo Mengora]]></dc:creator>
		<pubDate>Sat, 26 Dec 2015 20:47:34 +0000</pubDate>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Technologies]]></category>
		<category><![CDATA[azure]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[windows azure pack]]></category>
		<guid isPermaLink="false">http://www.theserverside.technology/?p=921</guid>

					<description><![CDATA[<div style="margin: 5px 5% 10px 5%;"><img src="https://www.theserverside.technology/wp-content/uploads/2015/12/php_code-300x240.jpg" width="300" height="240" title="" alt="" /></div><div><p>PHP 7 has been released on December 3rd and its first update (v7.0.1) has been released on December 17th. This new version brings a lot of changes in, including major performance enhancements compared to PHP 5.6 (up to a 2x performance increase!), better (meaning reduced) memory footprint plus support for 64bit runtimes. There are of course many other enhancements but those three alone should provide a good reason to update websites to the new version. There could be problems in doing so if you are using deprecated or non-supported code but if your application followed recommendations, you should be able to upgrade to PHP7 and enjoy the enhancements.</p>
<p>There are a few handful extensions that bring PHP7 (RC and now RTW) to Azure but those extensions, while providing a good starting point, are not compatible with Windows Azure Pack because of a few hiccups in installation scripts (basically referencing D: drive, as in Azure, instead of C: as in WAP or using %HOME% environment variable to solve this problem and keep the scripts compatible with both). However, this is a good chance to explore once again the flexibility of Windows Azure Pack and configure PHP7 on our own, something useful to update/upgrade at a later time, if needed, without waiting for someone else to provide a new script for it. Having PHP 7 working could be useful to upgrade compatible applications like WordPress, which is already compatible with this new version.</p>
<p>This tutorial has been tested on VaiSulWeb Cloud Hosting services. As our company provides a free account for development and testing, it is easy to start working with PHP7 or ASP.NET 5 by the way. Head up on our website to request your free account.</p>
Getting started
<p>As a first step we need to download PHP7 from its website, taking care to download Windows binaries we need for our tests. Head to download page and look for VC14 x64 Non-Thread-Safe (NTS) distribution (php-7.0.1-nts-Win32-VC14-x64.zip) as we want to experience x64 version for our tutorial. Once downloaded, we can unZIP that file and move its contents to our site via FTP. We will upload file contents into /site/bin/php folder so our file structure will be like this:</p>
<p style="padding-left: 30px;">site/</p>
<p style="padding-left: 60px;">bin/</p>
<p style="padding-left: 90px;">php/</p>
<p style="padding-left: 120px;">dev
 ext
 [&#8230;]
php.ini
[&#8230;]
 php-cgi.exe
 [&#8230;]</p>
<p style="padding-left: 30px;">wwwroot</p>
<p>Now that we uploaded a new PHP distribution to our website, we need to solve two problems before being able to run our own PHP runtime: the first one is telling WAP that we want to use this new version in place of runtimes automatically supported by the platform (v5.3 through v5.5) as shown below:</p>
<p><p id="caption-attachment-933" class="wp-caption-text">PHP runtimes available through Windows Azure Pack portal</p></p>
<p>&#160;</p>
<p>The second problem we have is to tell PHP where to find its configuration file, the famous php.ini. When using default runtimes, Azure Pack will tell PHP where to find its configuration file but now we want to use a custom runtime so we need to find a way to point PHP to the INI file that we will upload into /site/bin/php/ folder. [...]</div><img src="https://stats1.vaisulweb.cloud/piwik.php?idsite=1&amp;rec=1&amp;url=https%3A%2F%2Fwww.theserverside.technology%2F2015%2F12%2F26%2Fhow-to-run-php-7-x64-x86-on-windows-azure-pack%2F%3Fpk_campaign%3Dfeed%26pk_kwd%3Dhow-to-run-php-7-x64-x86-on-windows-azure-pack&amp;action_name=How+to+run+PHP+7+x64%2Fx86+on+Windows+Azure+Pack&amp;urlref=https%3A%2F%2Fwww.theserverside.technology%2Ffeed%2F" style="border:0;width:0;height:0" width="0" height="0" alt="" />]]></description>
		
					<wfw:commentRss>https://www.theserverside.technology/2015/12/26/how-to-run-php-7-x64-x86-on-windows-azure-pack/?pk_campaign=feed&#038;pk_kwd=how-to-run-php-7-x64-x86-on-windows-azure-pack/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<enclosure url="https://www.theserverside.technology/wp-content/uploads/2015/12/php_code.jpg" length="379749" type="image/jpg" />
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://www.theserverside.technology/wp-content/uploads/2015/12/php_code-300x240.jpg" width="300" height="240" medium="image" type="image/jpeg">
	<media:copyright>The Server Side Technology</media:copyright>
	<media:title></media:title>
	<media:description type="html"><![CDATA[]]></media:description>
</media:content>
<media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.theserverside.technology/wp-content/uploads/2015/12/php_code-300x240.jpg" width="300" height="240" />
	</item>
		<item>
		<title>ASP.NET 5 verrà eseguito su IIS attraverso il modulo HTTPPlatformHandler</title>
		<link>https://www.theserverside.technology/2015/09/22/asp-net-5-verra-eseguito-su-iis-attraverso-il-modulo-httpplatformhandler/?pk_campaign=feed&#038;pk_kwd=asp-net-5-verra-eseguito-su-iis-attraverso-il-modulo-httpplatformhandler</link>
					<comments>https://www.theserverside.technology/2015/09/22/asp-net-5-verra-eseguito-su-iis-attraverso-il-modulo-httpplatformhandler/?pk_campaign=feed&#038;pk_kwd=asp-net-5-verra-eseguito-su-iis-attraverso-il-modulo-httpplatformhandler#comments</comments>
		
		<dc:creator><![CDATA[Guglielmo Mengora]]></dc:creator>
		<pubDate>Tue, 22 Sep 2015 23:34:32 +0000</pubDate>
				<category><![CDATA[Web Technologies]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[bower]]></category>
		<category><![CDATA[fastcgi]]></category>
		<category><![CDATA[gulp]]></category>
		<category><![CDATA[httpplatformhandler]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[isapi]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[kestrel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nuget]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[windows server]]></category>
		<guid isPermaLink="false">http://www.theserverside.technology/?p=608</guid>

					<description><![CDATA[<div style="margin: 5px 5% 10px 5%;"><img src="https://www.theserverside.technology/wp-content/uploads/2015/09/aspnet5_macos-300x166.png" width="300" height="166" title="" alt="" /></div><div><p>Con un post su GitHub,  Damian Edwards ha annunciato che la nuova release di ASP.NET, la versione 5, non verrà più eseguita da IIS come ISAPI ma attraverso il modulo HTTPPlatformHandler che per l&#8217;occasione verrà aggiornato con alcune modifiche e reso disponibile anche per Windows Server 2008R2, la versione minima per eseguire ASP.NET 5. La modifica sarà disponibile già con la beta8 del software e quindi al prossimo aggiornamento previsto per il 5 Ottobre 2015.</p>
 ASP.NET ed IIS
<p>A prima vista questa modifica potrebbe sembrare ininfluente ma segna un cambiamento piuttosto importante se si considera che sin dalla sua introduzione con IIS 6 e Windows Server 2003, ASP.NET è stata eseguita da IIS come ISAPI, la configurazione che garantiva le prestazioni migliori sulla piattaforma. Lo stesso avveniva ed avviene per altre tecnologie come ASP classico mentre storicamente altri framework o estensioni provenienti dal mondo Unix usavano invece una tecnologia meno sofisticata a cui si fa riferimento in generale come CGI.</p>
<p>Le perplessità potrebbero sorgere proprio perché da sempre l&#8217;esecuzione ISAPI è considerata la più efficiente e quella capace di fornire prestazioni di molto più elevate sulla piattaforma Windows Server, soprattutto perché la creazione di nuovi processi è in effetti una operazione onerosa sui sistemi Windows, molto più di quanto lo sia sui sistemi Unix.</p>
<p>In realtà sin da Windows Server 2003 Microsoft ha affinato il supporto per le tecnologie CGI, in particolare per garantire la compatibilità con framework molto popolari come PHP. La tecnologia FastCGI è in effetti l&#8217;antesignana del modulo HTTPPlatformHandler e, sebbene con FastCGI la piattaforma Windows Server abbia efficacemente ottenuto l&#8217;esecuzione di framework come PHP con prestazioni pari o addirittura superiori a quelle dei sistemi Unix, fino a poco tempo fa era considerato impossibile che Microsoft decidesse di passare ad una modalità di esecuzione diversa per le proprie tecnologie.</p>
 HTTPPlatformHandler : l&#8217;evoluzione della specie
<p>La notizia non può che significare che Microsoft ha ormai ottenuto una parità di performance tra l&#8217;esecuzione ISAPI e quella CGI e la chiave è senza dubbio il modulo HTTPPlatformHandler. Anticipando le perplessità di qualcuno, Edwards aggiunge che Microsoft si aspetta una differenza di prestazioni tra le due modalità solo per applicazioni triviali come una Hello World, cioè piccole applicazioni che fungono più da esempio che da reali implementazioni. Per tutti gli altri casi, probabilmente Microsoft crede di raggiungere prestazioni uguali o anche maggiori a quelle ottenibili con la tecnologia ISAPI. Certamente così facendo ottiene una flessibilità notevolmente maggiore, soprattutto in un contesto nel quale ASP.NET è diventato open-source ed in teoria qualsiasi utente potrebbe compilare la propria versione della tecnologia.</p>
<p>Il modulo HTTPPlatformHandler è l&#8217;evoluzione di quello FastCGI che ha consentito a Windows Server di diventare una piattaforma ideale anche per PHP a partire dalla versione 2003 e da IIS 6. FastCGI risolve il problema dell&#8217;onerosità della creazione di nuovi processi con l&#8217;attivazione di una singola istanza che verrà usata in modo efficace da IIS per gestire un numero variabile di richieste, isolandole da quelle degli altri siti Web ma gestendole sempre con un processo unico. Di tanto in tanto, in modo configurabile, [...]</div><img src="https://stats1.vaisulweb.cloud/piwik.php?idsite=1&amp;rec=1&amp;url=https%3A%2F%2Fwww.theserverside.technology%2F2015%2F09%2F22%2Fasp-net-5-verra-eseguito-su-iis-attraverso-il-modulo-httpplatformhandler%2F%3Fpk_campaign%3Dfeed%26pk_kwd%3Dasp-net-5-verra-eseguito-su-iis-attraverso-il-modulo-httpplatformhandler&amp;action_name=ASP.NET+5+verr%C3%A0+eseguito+su+IIS+attraverso+il+modulo+HTTPPlatformHandler&amp;urlref=https%3A%2F%2Fwww.theserverside.technology%2Ffeed%2F" style="border:0;width:0;height:0" width="0" height="0" alt="" />]]></description>
		
					<wfw:commentRss>https://www.theserverside.technology/2015/09/22/asp-net-5-verra-eseguito-su-iis-attraverso-il-modulo-httpplatformhandler/?pk_campaign=feed&#038;pk_kwd=asp-net-5-verra-eseguito-su-iis-attraverso-il-modulo-httpplatformhandler/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<enclosure url="https://www.theserverside.technology/wp-content/uploads/2015/09/aspnet5_macos.png" length="228473" type="image/jpg" />
<media:content xmlns:media="http://search.yahoo.com/mrss/" url="https://www.theserverside.technology/wp-content/uploads/2015/09/aspnet5_macos-300x166.png" width="300" height="166" medium="image" type="image/jpeg">
	<media:copyright>The Server Side Technology</media:copyright>
	<media:title></media:title>
	<media:description type="html"><![CDATA[]]></media:description>
</media:content>
<media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.theserverside.technology/wp-content/uploads/2015/09/aspnet5_macos-300x166.png" width="300" height="166" />
	</item>
	</channel>
</rss>
