What am I looking for in SquareSpace

Going to spend this next week seriously giving SquareSpace a twirl.  I'm looking for:
  • Easy maintenance
  • Import from spaces.live.com without doing something really stupid
  • Better traffic tracking - compared to Windows Live probably anything is better
  • Comments with OpenID

 UPDATE:

Maintenance - I seem to be able to make the changes I wanted - looking for info in the FAQ / forum is awful though.

From Windows Live Spaces to SquareSpace - ended up writing my own MetaBlogAPI export for Live Spaces to MoveableType txt format, then get squarespace to import it.  Again the help dialog is bad and it wasn't clear why things weren't working - have to go back to import page to see the error.

Traffice tracking - I know it was better already

No comments with OpenID - I think in this generation if you have to force someone to create an account in your particular blogging system just to comment - there's something wrong about it.

SharePoint - service pack 2 thoughts

SharePoint service pack 2 came out a couple of days ago, for some reason I was really excited about it and even woke up checking twitter regarding any news…  It was surprisingly empty.

Anyway, over the last couple of days I’ve had a good whirl and here’s some thoughts – both mine, and heard over the grapevine.

 

Authentication — Improvements to forms-based authentication, authentication for Web applications, and the Business Data Catalog.

MSDN is saying that when Forms authentication is used SharePoint “should” do a better job at letting client (Browser) remember the password.

I’m hoping this means I don’t need to re-enter my password a billion times.

 

Database performance and integrity — Improved database performance and integrity by automatically rebuilding database indexes with a timer job. 

Self checks are good

 

Interoperability — Improved support for standards-based document formats and compatibility with a broader range of browsers level 1 and level 2 browser support.

IE8 enters level 1 browser support – the rich text editing should get fixed

FireFox2/3 enters level 2 browser support

 

Read-only content databases — Improved user experience by automatically configuring site collections as read-only when the content database is configured as read-only.

Again a good thing

 

Stsadm command-line tool — In addition to operations for pre-upgrade scanning and variations analysis and repair, several operations are improved and new operations added to better support farm administration.

stsadm –o backup will now issue a stsadm –o setsitelock prior to the backup, unless otherwise stated.

This means that sharepoint administrators no longer need to do this in two steps.

stsadm –o deletesite now supports a force argument that allows orphaned site collections or orphaned sites to be deleted.  Only time I’ve seen an orphan site is when we had a bad import that failed halfway.

 

Pre-upgrade scanning and reporting — An Stsadm operation that enables you to scan an existing farm and its servers to verify that they can be upgraded SharePoint Products and Technologies "14".

stsadm -o preupgradecheck

is only to check against future versions of SharePoint 2010.

 

Variations analysis and repair — An Stsadm operation that enables farm administrators to better manage and perform necessary operations against variations.

There’s a quite bit of work for variations.  This isn’t an area where I’ve had a lot of experience.

 

Merge Content DB bug fixed

Yay

 

Breaking Changes:

Areas web service removed

There’s some impact to Nintex Workflows – there’s an interim fix that they’ve released, as well as a patch coming out within a week.

IIS7 WCF .SVC 404

This is a tip for myself:

For the weird reasons I could not understand – if your IIS7/Vista doesn’t have a handler for .svc all of a sudden – you can re-register them using the following registration.

I’m still not sure why this suddenly stopped working :-(

 

"C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe" -r -y

SharePoint - On the verge of launching a new release of a SharePoint site

On the verge of launching a new release of a public SharePoint website and I came across this list (from shanselman’s twitter actually).

15 Essential Checks Before Launching Your Website

Here’s how we fared:

  1. Favicon checked and done!
  2. Titles and Meta data checked!  Actually SharePoint comes with quite a bit of baggage, but we started with a clean masterpage so this is not too bad.
  3. Cross-Browser Checkschecked!  IE6, 7, 8, FireFox, Chrome, Safari + iPhone.  RichHTML editing is limited to IE for now – but there’s a release soon afterwards to upgrade to Telerik’s RadEditor Lite.
  4. Proofreadnot enough :-(
  5. Linkschecked - using both SharePoint’s internal reports and SSW Link Auditor – hopefully the content editors don’t put in bad links from now til launch…
  6. Functionality Checkchecked!  My biggest fears are that in the sprint until launch, if we accidentally break an existing feature that was working previously, so far my fears have been unfounded.
  7. Graceful Degradationnot checked…  I think I’m going to feel guilty for saying this one, but I just don’t think it’s relevant to check for JavaScript now.  Especially on a SharePoint site.
  8. Validationno - it’s SharePoint.  This is going to be a tough one to tick off.
  9. RSS Linkchecked – may be.  One of the features of this release, unless we have to cut it.
  10. Analyticschecked – both the SharePoint reports, as well as Google Analytics that was used for the old site
  11. Sitemapchecked – SharePoint does this naturally
  12. Defensive Designchecked.  SharePoint allows for 404 to be customized
  13. Optimizenot enough.  We’re utilizing quite a few performance tricks we have up our sleeves, but ultimately there’s just not the level of control in SharePoint vs. say a custom ASP.NET application
  14. Back Upchecked
  15. Print Style Sheetneed to check again.  This was working previously but we’ve had some work done on the site in the last two releases and I’m a bit worried about our good ol’ print css.

 

So we scored 10/15.  Ticked off most of the easy ones.  Have quite a few really tough ones left.  Wish us luck!

SharePoint – thoughts on MSDN “Configuring and Deploying Anonymous Publishing Sites for SharePoint Server 2007”

Andrew Connell’s white paper on Configuring and Deploying Anonymous Publishing Sites for SharePoint Server 2007 just went up on MSDN.

The following are my thoughts in detail.  For the most part – I agree with the views presented in the white paper, and I believe the white paper covered at a glance many of the crucial aspects of anonymous publishing.

Some of these points I wanted to further elaborate and explain some of my own experiences and/or approaches that I’ve found to work better.

 

Limiting the Page Payload

Fiddler is great.  FireFox’s FireBug also serves a similar purpose.  You want to try to reduce the number of files that are sent across.  Reducing CSS, core.js, core.css will go a long way to reduce the page payload.

I’ve found HttpModule to be far better at stripping core.js, core.css and much of the unused form hidden fields from the output.  Need a lot of testing though.

In addition – check out YSlow FireFox add-in.  Which discusses issues such as E-Tags not being set properly in IIS – you might as well turn it off and let browsers determine file base on modified date / size.

Managing the Name ActiveX Control

This is related to my earlier blog SharePoint – Name ActiveX Control error.  I discussed the circumstances on why this ActiveX control is appearing, what does it do, and why does it only give you grief when running in the Internet Zone on IE.

While the Mossman Way works – I prefer using a HttpModule.

Anyway – I thought if Person Name Smart Tag and Presence Settings is switched off via Central Administration this would have gone away (mentioned later in the white paper).  UPDATE - tested this doesn't work - while the setting is off it still asks for the Active-X

Taking Advantage of Custom CAS Policies for Custom Code

Use CAS policies so you can keep to WSS_Minimal.

Many of our assemblies are deployed in the GAC which runs in full trust.  The reason we put them in the GAC is more a decision related to solution package deployment, and not from a security point of view.

Configuring a SharePoint Site Collection or Site

Blocking Users from Seeing All Pages in a SharePoint Publishing Site

ViewFormPagesLockdown is absolutely necessary.  I’m so glad it’s mentioned in this white paper.

Enabling and Configuring Caching

page output caching and object caching are mentioned – both are very useful.  Page Output caching for the anonymous profile is necessary to achieve high performance from a public site.  Remember to switch on the comment so you can catch caching issues from your staging and production servers.

blob caching is not mentioned – I’m not sure the reasons, but I’ve found it to be useful but I have seen the blob cache rendering and cropping only half of the CSS file that I have.  Is that a SharePoint bug?  Hard to say.  I found some blog articles that asked the same questions – blob caching is one of those supposedly-low-risk-high-gain performance configurations that you can do, but I ended up with only use blob caching with sufficient testing.

Configuring a SharePoint Web Application

Disabling User Presence Information

Just echoing this – I think this should stop the ActiveX presence “name.dll” appearing on IE when you stop this.

UPDATE - tested this doesn't work - while the setting is off it still asks for the Active-X

Disabling the Blog API

Disabling Incoming E-Mail

Separating Content Between Authoring and Production Environments

I noticed I stopped commenting much towards the end of the article.  It was good to see publishing content deployment being discussed at the end - great article.