Orchard is a free, open source, community-focused project aimed at delivering applications and reusable components on the ASP.NET MVC platform.
0
votes
1answer
20 views
Add new filed to Orchard.Roles module
i need to extend the existing Orchard.Roles module adding a new field to store the Parent of a Role. I would do it from a my custom module, it's possible?
Thanks
1
vote
1answer
21 views
How to change inheritance from ContentPartRecord to ContentPartVersionRecord
OrchardCMS developers/users,
I have
public class MyContentPartRecord : ContentPartRecord
{ ... }
I want to change it to
public class MyContentPartRecord : ContentPartVersionRecord
{ ... }
In ...
0
votes
0answers
15 views
How can I hook into the standard events offered by Global.asax in an Orchard CMS module?
I have the need to handle certain events from within an Orchard module. In a plain MVC app, I could just use Global.asax and handle events such as Application_Error and Session_End from there.
...
0
votes
1answer
9 views
Orchard CMS: How to add a Taxonomy field to a Content Type on a migration?
I need to define a new Content Type having a Taxonomy field on my module's migrations.
I guess I need to do something like this:
ContentDefinitionManager.AlterTypeDefinition("ContentTypeName",
...
-2
votes
1answer
26 views
How to display data or table in Orchard CMS? [closed]
I'm trying to manage a list in a database (i.e. a Customer table) I would like to display a list of customers in a table by creating a content page using Orchard CMS. Is this possible? Does anyone out ...
0
votes
1answer
20 views
Orchard CMS Showing Only Drafts
I would like to show only the draft version of documents when the user makes requests to a specific subdomain. The idea is that when requests are made to the "www.mysite.com" domain, we show the ...
0
votes
1answer
15 views
Accessing a “Page Field” value in layout.cshtml
I have added a field (media picker field) for "BackgroundPhoto" to the Page content type.
I'm trying to get the page so when that field exists, or has a value, that it's added through css as the ...
0
votes
1answer
17 views
Orchard CMS continues executing request after permanent redirect from IActionFilter
We have a website that uses Orchard CMS and we've written a "RedirectFilter" to do permanent redirects on legacy URLs (aliases that don't match the AutoroutePart pattern for the relevant Content ...
0
votes
1answer
23 views
Orchard CMS content item's type could not be changed programmatically
I created a content item's instance as follows:
ContentItem ci = _orchardServices.ContentManager.New("ContentTypeA");
_orchardServices.ContentManager.Create(ci, VersionOptions.Published);
...
0
votes
1answer
25 views
Allow PHP files in Orchard MVC site
I'm running Orchard on my main domain as CMS. On a subdomain, I have wordpress installed and now I wanted to install the Jetpack plugin. Per ...
-1
votes
0answers
32 views
Csproj Object reference not set to an instance of object [closed]
I have just checked out an Orchard project with a lot of modules. When I went to build, I got the "Object reference not set to an instance of an object" for one of my modules' csproj files. The error ...
0
votes
0answers
30 views
Orchard CMS taxonomy, import terms
I want to add several terms to an Orchard taxonomy, this taxonomy holds a large number of terms and if I added manually it would take me a life, so tried using the import, I know that it appends new ...
0
votes
0answers
23 views
Orchard CMS how do I display one image on product list
I am a newbie to Orchard. I have created two content types product list and product. I want to show one image of each in the list control and all images for that product in product page. Also I want ...
1
vote
1answer
26 views
Setting “Show editor for creation date time” programmatically
I'm trying to alter the common settings for a content type to show editor for creation date time. I know this can be done via admin, but I would also like to do this through code, for deployment in ...
0
votes
1answer
51 views
How to prevent Orchard projections from firing hundreds of queries
I have the following problem with the Projections module in Orchard:
I have pages with main categories that when opened query a database (not the Orchard one, coming from a separate application) for ...
1
vote
1answer
21 views
Orchard Module - How to return strongly typed Model rathen than dynamic from Driver
I created a ContactUs module that sends email when user click on Submit button.
Everything works perfectly. However, I am curious if it is possible to return a strongly typed Model rather than ...
0
votes
0answers
25 views
Why cannot a user, with Edit own content permission, view a content item with the EditOwnContent requirement?
We have the following code that successfully adds a menu item to the main menu.
The problem is that, when we grant Edit own content to a user, the user cannot see this menu item. Only if we grant ...
0
votes
1answer
34 views
CPU Spiking on OrchardCMS Azure Website (not webrole) looking to blob storage
I am experiencing very poor performance. I have am OrchardCms Template pulled down from Azure, which includes a very little in extra modules and a small ecommerce module I have written.
I have ...
0
votes
0answers
21 views
How to consume a Restful Service or any data layer using Orchard CMS
since I started working on an Orchard CMS (a month ago) and playing and creating a website that I can build (it means I'm a noob), maybe one of the guys out there would like to share an Idea how can I ...
0
votes
1answer
23 views
Orchard CMS and Shibboleth authentication
We're looking at using Orchard for an internal site.
We currently use Shibboleth for initial authentication, which makes a POST back to our site in the format of http://domain/Shibboleth.sso/{stuff}
...
1
vote
1answer
52 views
What are the definitions of each of the Lifecycle Events in Orchard's CMS?
The documentation for content handlers in Orchard mentions Lifecycle Events (http://docs.orchardproject.net/Documentation/Understanding-content-handlers).
Most events are self explanatory, but I was ...
0
votes
0answers
35 views
Orchard theme building, get page by id
Newbe question here, I would like to know if it's possible to get some content within my theme, something like "GetPageByPath" or "GetPageById" or similar. The same with other types of content (posts, ...
0
votes
0answers
93 views
Transaction issues with Orchard and SSL/ADFS modules
We're using Orchard 1.6 with the Secured Sockets Layer 1.2 module and the Authentication.Federated 0.2 module. On many of the requests, we get various transaction errors. Here's an example of one ...
2
votes
1answer
27 views
Autofac 2.6 and Orchard 1.6 - Action Filter construction injection
To begin with two things.
I am trying to achieve an action filter that logs when and action begins and when it end
I am well aware of the .AsActionFilter() method in Autofac 3.0 BUT...
The project ...
0
votes
1answer
47 views
Using a wrapper to conditionally hide roles on Edit User page
I have a custom module that replaces the default RolesBasedAuthorizationService with almost identical code, except that, when my custom module is enabled, it will pull roles from a service instead of ...
0
votes
1answer
25 views
Orchard Placement, Move LogIn links
VERY NEW TO ORCHARD, having a hard time wrapping my head around a couple of things but i am getting there.
I expected that the log in links would be a widget, they are not.
so what i am looking to do ...
1
vote
1answer
42 views
Additional Info For Some Users
I am looking to add some additional content to users that should be required for users of type X
example: Sales Associate's
require: Profile Picture
just breaking into Orchard, i have done some ...
0
votes
0answers
25 views
Merge heads in ajax get call
I've full view in Orchards cms that consist of partial view. I need to get this partial view via ajax get call (i want to load whole page and the wait only for partial view). Unfortunately, partial ...
3
votes
1answer
55 views
How does Orchard resolve references in modules?
The documentation (here and here) is notably lacking information on how references in modules are resolved:
References Resolution
(TODO: Explain how Orchard figures out references by looking ...
1
vote
1answer
32 views
How can I prevent default notifications when encountering an error when using an external datasource as my datastore?
I'm building a custom content part that fetches its information from an external repository, mostly following the advice found @ How to change Orchard record repository and using a custom handler to ...
0
votes
1answer
21 views
Orchard custom settings usage and parts
Scenario
One part for edit settings, one different part for consuming settings
I'm following this help:
http://docs.orchardproject.net/Documentation/Adding-custom-settings
For settings part no ...
0
votes
1answer
40 views
Reset the 'Custom Forms' Content Type in Orchard CMS having issues
I have mixed up the Content Type Custom Forms default settings. And it seems not usable anymore after some tweaks and settings.
Now it seems that I have to reinstall the orchard as whole. I'm in ...
0
votes
1answer
40 views
Orchard Deployment problems 404 error
I love orchard, I am a .net deveoper looking to use this as a cms, followed the orchard cms book great everything is really good... now the problem I thought lets see if i can deploy this on my vps... ...
0
votes
1answer
37 views
Join Non ContentPart Table to ContentPart Table Using Orchard HQL API
I am trying to perform a simple join between two different tables using the Orchard HQL API. The problem is that one of the tables is not a ContentPartTable. Is this possible??
Here is what it would ...
0
votes
1answer
88 views
Second menu with different items
The site consists of 2 menus:
Main Menu (visible from everywhere in the site)
2nd Menu (only visible when selecting a certain menu item from the Main Menu)
Secondary menu description:
When ...
-1
votes
5answers
281 views
DotNetNuke, Umbraco or Orchard [closed]
First off please have patience for this long winded post. I wanted to get all the pertinent information (as I see it) out to you.
I have a decision to make and would like your input. I have ...
1
vote
1answer
19 views
Orchard CMS Enumeration Field values in migrations
In Orchard CMS I am creating a content part Vehicle with enumeration field:
ContentDefinitionManager.AlterPartDefinition(typeof(VehiclePart).Name, part => part
.Attachable()
...
1
vote
1answer
56 views
Where is the code that creates the Layout shape in Orchard CMS?
We are trying to understand the Orchard request life cycle by reading this blog post by Bertrand Le Roy. We were able to step through the code and to create a diagram of paragraph one, which ...
2
votes
1answer
99 views
Orchard CMS Transaction Errors
We are consistently, randomly getting the following errors on our Orchard site. It seems most prevalent when quickly navigating between pages. There are no other errors in the logs, so I'm not sure ...
1
vote
1answer
39 views
In Orchard CMS, what model binds to the layout view?
The Orchard CMS has an Area called TheThemeMachine. It has a view file called Layout.cshtml. My understanding is that views bind to models, and that models are defined as classes. The following code ...
0
votes
1answer
33 views
editing href in Orchard.ContentManagement.ContentItem
I am trying to integrate disqus comment counts in bloq summary.
@{
Orchard.ContentManagement.ContentItem contentItem = Model.ContentPart.ContentItem;
string bodyHtml = Model.Html.ToString();
...
1
vote
1answer
23 views
How to allow null values on Orchard SchemaBuilder?
I'm trying to add a new column to ProjectRecord table and i want to allow null values,
Code:
SchemaBuilder.AlterTable("ProjectRecord", table => table.AddColumn("Related", DbType.Int32));
Thanks.
...
0
votes
0answers
18 views
Control projection html in custom theme
How can I control the html of a projection I created on the backoffice?
I created a custom theme and created a Content-url-mycustompageurl.cshtml but I can't figure out how can I iterate on the ...
0
votes
3answers
82 views
Orchard CMS Speed Issues
I'm setting up an Orchard CMS site and noticing that it is incredibly slow.
It is running on a VPS that hosts a couple of other MVC based websites which all run fine, so the server doesn't appear to ...
0
votes
1answer
31 views
How to change the GoogleMapsZoomLevel to a textbox instead of the slider
I have two different installs of Orchard CMS. In one install, the Map type has a text box for GoogleMapsZoomLevel and in the other it has a slider. My client has complained that the slider is not ...
1
vote
1answer
23 views
How do I get the owner of an Orchard ContentItem programmatically?
What I am looking for is equivalent to this:
IUser owner = someContentItem.Owner;
0
votes
1answer
19 views
Authentication.Federated settings not appearing
I'm trying to use the Authentication.Federated module to enable ADFS support for Orchard. I installed the module by downloading it locally and adding it, and I enabled the module. Now, according to ...
0
votes
1answer
40 views
In Orchard CMS, how do I display all of a certain ContentType on the front-end as a bulleted list?
Example:
Create a new Product ContentType that has Name ContentField.
Create ten new ContentItems that are instances of the Product ContentType.
Display the Name of those new ProductContentItems ...
0
votes
0answers
48 views
How can I repopulate form fields after a failed ReCaptcha in Orchard CMS
I am currently using the Custom Forms module on Orchard CMS 1.6. If I have the Custom Form on a standalone page it works fine, but the same is not true when it is embedded on a Widget, for instance.
...
0
votes
0answers
53 views
Custom Navigation Filter Not Showing Up When Logged Out Orchard CMS
I just created a navigation filter to inject menu items and it works perfectly fine, but that is only when I am logged in as administrator. For some odd reason there is a permission being applied to ...


