Error Message for URL
Permalink 1 user found helpful<link rel="stylesheet" media="screen" type="text/css" href="<br /> <b>Fatal error</b>: Call to a member function getPackageHandle() on a non-object in <b>/home/c5host/msm_versions/032113/concrete/core/libraries/view.php</b> on line <b>105</b><br />
I just started with Concrete5 and purchased a theme today. I'm eager to get started.
Thanks.

snowhook, try replacing getPackageHandle() with getThemePath(), as seen in the following example.
<link href="<?php echo $this->getThemePath(); ?>/css/style.css" rel="stylesheet" type="text/css" />
If I were you, though, I'd certainly try out one of my first suggestions.
As suggested by McCormick above, this particular failure is down to the inability of the system to find and load the theme's CSS file. In my case this was because I had removed all the default themes then installed my own. What I hadn't appreciated, being fairly new to concrete5, is that after installing, a theme has to be activated (blue button on the Themes page). Because the theme had not been activated, the system could not find its CSS file, and threw the error. Simples!