Monthly Archives: February 2013

Importing SSL certificate from linux to Windows Server 2012

Took me a while to finally get it working but I imported my SSL certificate from linux across to Windows Server 2012. Had to create pfx file so that IIS would import the SSL certificate rather than having to request … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

IUSR for PHP on IIS

If you are trying to give access to web users for write permissions on upload or cache folders on a PHP project hosted with Windows IIS, then you better add the IUSR account to have permissions. .NET seems to operate … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Pear with IIS

Installing PEAR with IIS easier than it seems when things dont at first work http://code.rawlinson.us/2012/02/install-php-pear-on-windows-7.html

Posted in Uncategorized | Tagged , , | Leave a comment

Making an integer null

Although you often see an error message when trying to return null for an integer, it is possible to return a null value if you declare the integer specifically int? value = new int?(); if(value == null) { // something … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Clock syncing to wrong time in networked server

Trying to fix my Windows 2012 server which is on a networked cloud, from reverting back to local network time even though i have set it the server to be on a timezone. I had the same problem with Server … Continue reading

Posted in Uncategorized | Tagged , , , , | Leave a comment