Firefox sync not working

If you’ve installed Firefox, logged into your account and the sync isn’t working. There appears to be a bug that stops this from working, but luckily there is any easy fix, just follow the below: Fix Firefox sync issue Open ‘Firefox’. Open the menu by pressing the 3-bar menu. Select privacy from the left menu.

Read More

How to delete files by age with PowerShell

You can easily use PowerShell to delete files that are older than x minutes/hours/days. This is useful if you have a temporary folder which you would like to regularly clear down. Please see the below examples: Delete files older than x minutes Get-ChildItem -path C:\temp | where {$_.Lastwritetime -lt (date).addminutes(-5)} | remove-item Delete files older

Read More

Skype 5.3 has stopped working

If you have upgraded to Skype version 5.3 and you are getting the ‘Skype has stopped working’ error message (shown below) it could be easily solved. In previous version of Skype when running on a Windows 7 x64 machine the program didn’t minimise to the sys tray icon, but the way around this was to

Read More

Windows Media Services 2008 and IIS 7 both using the HTTP protocol on the same server

To enable both Windows Media Services 2008 to stream content over HTTP and still allowing IIS 7 to operate on the same server, follow the below instructions: 1) Ensure both IIS and Windows Media Services 2008 (WMS) are installed 2) Ensure you have more than one IP address on your server. 3) Decide which IP addresses will be used for IIS

Read More

MS SQL Management Studio – Save changes is not permitted – The changes you have made require the following tables to be dropped and re-created

If when using Microsoft SQL Server Management Studio to amend a table you encounter a dialog box saying: Saving changes is not permitted. The changes you have made require the following tables to be dropped and re-created. You have either made changes to a table that can’t be re-created or enabled the option prevent saving

Read More

Force the compatibility mode in IE8

If your website doesn’t display properly in IE8, then it’s recommended that you amend your code, but in the meantime you could force Internet Explorer 8 to run in the compatibility mode. Simply add the below line to the top of the <head></head> section of your website: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> An example of this is place would be:

Read More

Bullet point spacing with css

To increase the spacing between bullet points with CSS simple add the below code to your .css file: ul li { margin:.5em 10% .5em 0; } Obviously you can change the values to reach your desired spacing, but the above works well and looks neat and tidy. An example using this method would look like

Read More