Captain Kenpachi
Captain Kenpachi

Reputation: 7215

Creating Orchard module without commandline

How does one create a new Orchard Module scaffolding without having access to the commandline tool? It's not like every hosting package will give you RDP or other such remote access tools to your site.

Upvotes: 0

Views: 178

Answers (1)

devqon
devqon

Reputation: 13997

You shouldn't create modules in your running application. Create your module local on your dev computer, then publish it to your website.

Upload it in your Orchard website through:

  1. FTP: upload your module through ftp directly in the /modules directory
  2. Zip file: Create a zip file from your module. Alter the extension to '.nupkg' (myModule.nupkg). Go to you application's module section -> upload from computer -> locate the zip file -> install.
  3. Publish to gallery: Publish your module to the Orchard's module gallery, then install it through the gallery on your application (Only do this if you don't mind to share your module's functions. You shouldn't publish company specific stuff)

Upvotes: 1

Related Questions