Orchard
Displaying ASPX files and .LESS in Orchard CMS
by David on Feb.29, 2012, under Orchard
Add this web.config file into the directory to get both .less and regular .aspx files to be displayed in the Orchard CMS.
xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<add key="webpages:Enabled" value="false" />
</appSettings>
<system.web>
<httpHandlers>
<add type="dotless.Core.LessCssHttpHandler, dotless.Core" validate="false" path="*.LESS" verb="*" />
<add path="*" verb="*" type="System.Web.StaticFileHandler" />
<add Read more [...]
Leave a Comment
:ASPX, CMS, Orchard
more...
Orchard Installation with SQL Server 2008 r2
by David on Dec.04, 2011, under Orchard
1. Create the new Database in SQL Server.
2. Create a new Login in SQL Server for the Database (I like to keep mine the same name as the Database name so I know what goes with what) Do this under Security > Logins
3. Create a new Database User (again, I use the same name - not necessary but good if you're going to have a heap of DB's and users/logins.
4. Right Click on Database and run the following 'user update' query:
EXEC sp_change_users_login 'Update_One', '<database_name>' , '<user_login>'
(I Read more [...]
Leave a Comment
:installation, installing, Orchard, sql, sql server, sql server 2008
more...

