Archive for August, 2008
Wednesday, August 6th, 2008
Custom Character sets in flash
http://rozengain.com/?postid=68
No Comments » - Posted in Flash by jon
Tuesday, August 5th, 2008
Show errors in SharePoint
I’ve been looking for the answer to this for a while. Often SharePoint will hide error messages and provide the not entirely useful message
“An unexpected error has occurred.”
To show errors edit the web.config for your site in 2 places.
1. Add <customErrors mode=”Off”/> to the <system.web> section
2. Look for
<SafeMode MaxControls=”200″ CallStack=”false”…
and change to…
<SafeMode MaxControls=“200“ CallStack=”true”…
Then if [...]
No Comments » - Posted in MOSS, SharePoint 2007, Technology by craig
Tuesday, August 5th, 2008
“This item cannot be deleted because it is still referenced by other pages”
I’ve had this a few times now. I’ve installed a masterpage using a Solution Package then activated the Feature to add my masterpage to the “Master Page and Page Layout Gallery”.
I then deactive the feature. I find that the masterpage is still in the gallery. When I try to delete the masterpage I can’t and [...]
No Comments » - Posted in MOSS, SharePoint 2007, Technology by craig
Monday, August 4th, 2008
Strong Typed Assembly - Need the public key?
Use sn.exe. Its found here C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin
sn.exe -Tp [assembly name]
Public key is
002400000480000094000000060200000024000052
53413100040000010001000db8f386751955ba02e01
4c4545470300831e583bd9ec46c5a07a7ff5ba78ebfad
7ba2557f7b18ac38b4ac8544acd53fca6d0ae08e787e7
23059153d19d5c1f82a2d4b15c5fb4e9e7fc96417c3f9
bd10f33a0c0bc8439e15c63cea39f35f51a5c6d768389
9411aa685f588c430042701630370c8ca5109ac1eba4
7fb9b7e7b96
Public key token is b008b03aca13c3a5
Got no idea what I’m talking about? Read this.
