0
votes
0answers
25 views

following tutorial but not giving me the options it should

i'm following the http://skywalkersoftwaredevelopment.net/blog/writing-an-orchard-webshop-module-from-scratch-part-3 tutorial word for word but there is no option for me to enable or disable ...
0
votes
1answer
80 views

orchard contenttype get data from 2 different databases

My situation is that i have an external database and i should present the information in an orchard hp. The customer wants also to set new information and both should be shown via projection. Short ...
3
votes
1answer
175 views

Orchard CMS widget Display Type

I have a widget which is using a query to display details. Is it possible to specify the display type of the widget (the query is using Summary and all is displayed as i want) because the header of ...
2
votes
1answer
162 views

Orchard CMS - determining if Model is valid in Content Item Driver

In my instance of Orchard, I have a custom content type which has a custom content part. In the "editor driver" for the content part, I need to check to see if the container content item is valid ...
1
vote
0answers
348 views

Adding ORCHARD CMS fuctionality in my ASP.NET MVC 4 application

I have a project in mvc 4 that's really huge. Now i want to include Orchard CMS functionality into it. I don't want it to do the other way round by including my MVC 4 project as a part of Orchard ...
0
votes
1answer
126 views

How do I store a comma-separated list in Orchard CMS?

Using Orchard CMS, I am dealing with a record and a part proxy, but cannot figure out how to save it into the DB. In fact, I confess I don't even know how to get the items I'm trying to save into ...
12
votes
4answers
424 views

What does an @functions code block in a razor file do, and when (if ever) should I use it?

Whilst looking at a theme I downloaded from the Orchard CMS gallery, I noticed that a Layout.cshtml file had this block of code at the top of the file: @functions { // To support the layout ...
1
vote
2answers
530 views

Trying to save checkbox selections based on enums in Orchard (NHibernate)

I have spent the better part of five (5) days trying to figure out how to make this work: I use enum's to store "choices" for user input through either a radio button list, drop down list (these are ...
0
votes
1answer
106 views

Enum not Validating in Orchard

I've spent hours trying to work this out to no avail. I am using Orchard 1.6 source and DataAnnotations. My strings are decorated with [Required] as is my enum. Yet, client validation will only work ...
0
votes
1answer
135 views

Trying to call code in my controller but getting Null Reference error

Don't want to over-complicate the issue, but I think I need to post all the code that's hooked into this error. Using MvcMailer and introduced a separate Send mechanism (for use with Orchard CMS' own ...
0
votes
1answer
199 views

How to create a table relation in Orchard?

I want the MachineRecord to contain a GroupRecord Id, like the following: MachineRecord Id Name Number GroupRecord GroupRecord Id Name What I have tried: I have tried to make the property in ...
0
votes
1answer
149 views

Programmatically determine content item type in Orchard without magic strings

I am implementing a custom module in Orchard to track the number of views for each content item. In my handler, I am checking to see if the content item's type is the default Orchard "Page" type, but ...
1
vote
0answers
238 views

How to use Kendo UI within a stand-alone orchard module?

I'm writing a custom modulo to present the user with a grid to allow the end-user to see and manage "non-content-part" data. This data is data feed to the database from an outside source. The module, ...
0
votes
1answer
78 views

Learning MVC 3, Seems better to create custom app and integrate with Orchard rather than build module?

I have been deliberating and deliberating. Orchard is clearly powerful and flexible, contains some very sophisticated code. I need to create some specific Wizard/Workflow functionality. I am also ...
2
votes
1answer
560 views

Routing a custom controller in Orchard CMS

I'm having some trouble setting up the routing to a custom controller in Orchard. I've created a View: @model dynamic @{ Script.Require("jQuery"); } @using (Html.BeginForm("Send", "Email", ...
2
votes
2answers
590 views

Orchard CMS Recent Blog Post Widget Alternate View

I'm new to Orchard CMS and MVC so please forgive my ignorance. I've done a search and not found anything apparently relevant.... In one of the Footer Quad zone on my Orchard site I want to show the 5 ...
1
vote
1answer
95 views

New Orchard User Crashes Website Each time new User Logs in

Can anyone advise me on this one please? I've got a fully functional Orchard Site with content and all is well. However, so far i've only EVER used the DEFAULT ADMIN account. I've added modules and ...
0
votes
1answer
120 views

Best / Easiest recommended approach for news feed vertical column menu in Orchard

i'm new to Orchard but very impressed with it. I've been trying to find an easy way to have a vertical column based menu in Orchard. Because there is a lot of features and options i'm reluctant to ...
0
votes
1answer
158 views

Mono permission denied to any index or root directory access in a MVC application (Orchard)

[Wed Oct 17 23:26:57 2012] [error] [client 85.55.45.215] (13)Permission denied: access to / denied [Wed Oct 17 23:26:58 2012] [error] [client 85.55.45.215] (13)Permission denied: access to ...
0
votes
1answer
78 views

How to use Tags Service to get Tags associated with a content type in Orchard CMS?

I have a page called Careers which lists all the Jobs posted with their tags. After clicking on a job and going to their description, I want to display a list of Similar Jobs. For this, I am trying ...
1
vote
2answers
323 views

Adding different CSS files to different pages in Orchard CMS?

Let's say we have two pages in Orchard CMS. The homepage and the About US page. I want to use a RoyalSlider on the homepage which has its own CSS file. How do I include it only on the homepage and not ...
0
votes
2answers
127 views

Orchard cms in mvc 3 application how to remove unwanted url content

Orchard CMS in MVC3 Application. How to remove the unwanted "url" content? Example: http://www.xxxxxx.com/HotelsOnly/HotelList/Region?region=2114&total=848 In routes {area,” HotelsOnly”} ...
1
vote
1answer
65 views

Reinstall orchard cms

Is there any possibility to reinstall (create conpact edition database file) from orchard cms ? I've deleted the database file , and now when I am launching the orchard I am getting to directory ...
5
votes
1answer
386 views

How to add a class to layout-wrapper in Orchard CMS based on the current page and/or homepage

Background: I want to avoid creating an Alternate Layout for my home-page and I'd like to keep the "The Theme Machine" zones and layout next to intact, and actually "theme" most of everything using ...
0
votes
1answer
147 views

what is the correct approach in order to host / integrate / show my existing MVC3 project inside orchard?

I've an existing MVC3 project that implements a certain functionality, this project has it's own views, and a separate Database. now I'm required to use the same functionality inside one of my ...
1
vote
1answer
126 views

How to inject IOrchardServices to Handler in Orchard CMS

I want to inject IOrchardServices into Handler because of i need some service in handler,so in my handler i wrote this: public class EstatePartHandler : ContentHandler { private readonly ...
0
votes
1answer
341 views

“Add Area” is not appearing in visual studio 2010 ultimate

I want learn, how to create a custom module in orchard cms (ASP.net mvc3). For that i am studying from this url ...
2
votes
1answer
608 views

Orchard cms - custom login module with users in another database

Im evaluating orchard cms for my employer and just wanted to ask a question about login and membership. Our users and their roles are in another database which are exposed via an API and i would need ...
0
votes
0answers
88 views

Orchard cms, How to let the user edit a form after subitting it and allow him to edit before submitting a form

I am using Custom Form module in Orchard CMS. I need the user to be able to view/verify his changes before submitting a form. If the administrator has rejected his form, the user should be able to ...
2
votes
2answers
1k views

ASP.NET Performance Profiling 404/500 errors

Using the Visual Studio Performance Explorer, with Cassini, I'm trying to launch profiling on my (Orchard CMS 1.4.0) ASP.NET MVC3 application, but I get this error: The web site could not be ...
2
votes
1answer
99 views

How to include resources of a module in alternative views in Orchard?

suppose there is a module which has a view and this view included a java script file in it: like this : Script.Include("myscripts/somescript.js"); so when i create an alternative view from the ...
1
vote
1answer
2k views

Customizing the Orchard navigation menu

Excuse me for asking such a general question. I'm creating a website with Orchard CMS. The website's design and interactivity are critical requirements. I have a navigation menu which has a fixed ...
0
votes
1answer
382 views

Orchard - Including Javascript files in partial views

In Orchard, how do I include a javascript file in my partial view that's loaded from an ajax call? Here's what I've tried: @{Script.Include("ownerInfo.js");} Orchard completely ignores this if the ...
1
vote
1answer
1k views

How to save custom data in Orchard CMS database

I have created a module that i want to collect some simple data in Orchard's database, so i have created model, migration and handler for it: Models/StatePartRecord.cs : namespace Address.Models ...
10
votes
1answer
364 views

how to get started in writing this Orchard module

I'm a newbie in Orchard development, and I'm now about to write my first module for it. my requirements will contain a multi-page path in order for the user to complete the order. 1- search for your ...
0
votes
1answer
41 views

Mistakenly deleted a orchard defined view

To make some changes, I created a VIEW through ORCHARD's Shape module but later on I deleted it... Now when I am running my website, it is giving me the error "HTTP 404 - The resource you are ...
0
votes
1answer
456 views

Orchard CMS: Linking Users with Content Types or Profile Data

I installed the profile module http://orchardprofile.codeplex.com/ but I am wondering what's the best way to implement the following: Let users track "BMI" via profile. User enters BMI (body mass ...
1
vote
2answers
280 views

Populate ContentPart in ContentHandler from custom data source

We have an existing application that is using RavenDB and are hoping to create a custom Orchard Admin module that can read and write data into Raven so we can manage the data. The implementation ...
0
votes
1answer
234 views

Deleting relational Non-Content data from Orchard CMS

I have declared some Non-Content data in an Orchard CMS by defining the records and schema like this: public class CountyRecord { public virtual int Id { get; set; } public virtual string ...
1
vote
1answer
323 views

Can you use the CMS Orchard along side your own ASP.NET website?

I have a ASP.NET website which has various utility scripts/pages for some software but no public website. I would like to use Microsoft's Orchard CMS to create the website for visitors to look at - ...
1
vote
2answers
132 views

No Concurrency despite SessionStateBehaviour

In our application a page is served which subsequently is supposed to make a bunch of asynchronous calls for more data in parallel. These calls were being queued and I read that calls using the same ...
1
vote
1answer
281 views

Trying to enable client side validation in Orchard

I am trying to get client side validation enabled in Orchard for the comments. I have followed the advice in this SO discussion. I have commented out: //ModelValidatorProviders.Providers.Clear(); ...
0
votes
1answer
222 views

Refresh projector in Orchard CMS using AJAX

There is a projector and a query that I have created using the admin panel and filtering the query by content-type "Course". And the same page I am using a pop-up form using jQuery dialog, that ...
0
votes
1answer
602 views

ASP.NET MVC3 ignore route in Orchard CMS

I'm new to Orchard CMS and currently playing with it, trying to build new site. Besides that I have several test sites (on PHP and static html) that reside on the same hosting server in ...
2
votes
1answer
173 views

Creating Orchard Module with aspx View Engine

i have an existing MVC3 Application. This application uses the Razor view engine AND the aspx Viewengine (for rendering telerik reports). I want to integrate this MVC Application to Orchard (never ...
0
votes
1answer
583 views

How to override list shape rendering in module Orchard

I am still new to Orchard. I have two content type defined as below public int Create() { // Define the tab list type which will // contain body details, common, route, menu ...
2
votes
1answer
527 views

Is it possible to get standard ASP.NET MVC Unobtrusive Validation to work in Orchard CMS?

I'm trying to build a custom module to integrate with Orchard CMS to implement a business application. While Orchard CMS is an MVC application, it doesn't seem possible (or, at least easy) to do all ...
0
votes
1answer
122 views

Orchard : maintaining a list of custom content type

I am maintaining a list of 'Events' (custom content type) and the list can have only 1 upcoming event but several 'Events' whose date has been passed... I want to apply a check that if the DATE is of ...
0
votes
2answers
769 views

The controller for path '/' was not found or does not implement IController

My solution is in Orchard CMS 1.4.1 and when I run the solution then I get the error The controller for path '/' was not found or does not implement IController. and If I re click the run button then ...
2
votes
1answer
360 views

AccessDenied in Orchard CMS 1.4.1

I converted one of my solution to Orchard 1.4.1 with proper database. Q1: Whenever I run or goto any link by clicking menu item then it always hits to AccountController/AccessDenied method of ...

1 2 3 4