Reputation: 3064
I have just installed Orchard CMS via Web Platform Installer 5.0. The installation went fine. When launched via WebMatrix I am getting the following error.
A 'script' named 'jQuery' could not be found.
Line 13: <meta charset="utf-8" />
Line 14: <title>@Html.Title(title, siteName)</title>
Line 15: @Display(Model.Head)
Line 16: <script> (function (d) { d.className = "dyn" + d.className.substring(6, >d.className.length); })(document.documentElement);</script>
Line 17: </head>
Also I don't want to use WebMatrix IDE. I opened the website (using file system) with my VS 2012. Tried running from there and received following compilation error:
Error 1 Object reference not set to an instance of an object. C:\Users\Subrata\Documents\My Web Sites\orchard\Modules\Lucene\Lucene.csproj 1
I also cloned the source code from Github using
git clone https://github.com/subtata-emfluence/Orchard.git
Somebody help me with how I can get rid of above issues and configure my first site!
Upvotes: 0
Views: 354
Reputation: 741
This is happened to me many times. always thought it was down the new resources pipeline. once you build it goes away. Haven't tried but chances are that WebMatrix might pickup on the Gulp script and build the dependencies for you... Working with VS2012 might not be the best while developing with Orchard
Upvotes: 0