Links for 21/08/2008

Posted on August 21st, 2008 in General, Technology, Work by Jim Prince

So good it deserves a post all on it’s own.


‘Style’ is null or not an object

Posted on August 15th, 2008 in Technology, Work by Jim Prince

One of our customers has recently been plagued by an error generated by clicking the check messages button in Outlook Web Access 2007. At first glance the problem appeared to be intermittent but after some investigation I spotted that the problem only became apparent when navigating to OWA via the users SharePoint My Site.

The My Inbox Web Part would work fine.

clip_image002[1]

 

 

 

 

 

 

 

 

 

 

Navigating directly to Outlook Web Access by entering the URL in their Browser would also work fine.

clip_image004

 

 

 

 

However, when they use a link on their SharePoint My Site to the users OWA URL they get the ’style’ is null or not an object error.

clip_image006

 

 

 

 

 

 

I raised a call with Microsoft about the issue and they have confirmed that it’s a bug in the Exchange 2007. It’s scheduled to be fixed in Service Pack 2. At the time of writing this issue is not documented in their Knowledge Base so I thought I’d post it here.

UPDATE: Microsoft have issued us with a fix

The good news is that we have identified a workaround and wondered whether you could try the following steps please:-

Workaround details

1. on the Exchange 2007 server find the file uglobal.js that is currently being used by OWA.
2. find function hideEm(o) in uglobal.js.
3. change the code as follows:

OLD CODE:

function hideEm(o)
{
o.style.display = "none";
}

NEW CODE:

function hideEm(o)
{
if (o != null && isDf(typeof(o))) o.style.display = "none";
}

4. save modified file
5. restart iis.
6. on the client make sure that all caches are cleared out, so the new uglobal.js is downloaded from OWA server.


Links for 08/08/2008

Posted on August 8th, 2008 in General, Technology by Jim Prince

Links for 04/08/2008

Posted on August 4th, 2008 in General, Technology by Jim Prince

How to turn off the PC Speaker in Ubuntu

Posted on August 2nd, 2008 in Technology by Jim Prince

In addition to my previous post if you want to turn off the system speaker in Ubuntu just type the following in a terminal window.

echo "blacklist pcspkr" | sudo tee -a /etc/modprobe.d/blacklist

When you reboot your computer the system beep should be disabled. To avoid a reboot you can just run:

sudo modprobe -r pcspkr