Referenced assembly dependency

While trying to build an application that has reference to a popular XML-RPC client library by CookComputing I stuck with an error below:

The referenced assembly "CookComputing.XmlRpcV2" could not be resolved because it has a dependency on "System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" which is not in the currently targeted framework ".NETFramework,Version=v4.0,Profile=Client". Please remove references to assemblies not in the targeted framework or consider retargeting your project.

In order to get project compiled I had to to retarget it to .NET Framework 4 instead of .NET Framework 4 Client.

Apache httpd 2.4 and php 5.4

The easiest way to connect Apache httpd 2.4 to php 5.4 with enabled fpm is using mod_proxy_fcgi.

<LocationMatch ^(.*\.php)$>
   ProxyPass fcgi://127.0.0.1:9000/PATH/TO/DOCUMENT/ROOT
</LocationMatch>
Subscribe to Artyom&#039;s blog RSS