0

I am developing project into umbraco cms can anyone suggest me procedure of packages in umbraco, how to install and use packages ?

Nimesh khatri
  • 763
  • 12
  • 29

3 Answers3

1

Umbraco packages is a way to transfer Umbraco nodes (content) and/or functionality between Umbraco installations. Inside the Developer section, under Packages, try right clicking "Created packages" and choose "Create". There you can see all the things that can be in a package - document types, templates, views, stylesheets, media files and so on.

Here's how to install packages:

https://our.umbraco.org/wiki/how-tos/packages-and-projects/how-to-install-a-package

And here's where you can typically find packages if they're not in the Umbraco Package Repository:

https://our.umbraco.org/projects/

Jannik Anker
  • 3,320
  • 1
  • 13
  • 21
0

If you're using Visual Studio for developing Umbraco websites, I strongly suggest installing Umbraco itself as well as Umbraco packages via the NuGet package manager. It is far easier to maintain your website in terms of upgrading to newer versions and you also don't have to leave your IDE.

enter image description here

Unfortunatelly, not all packages offer this option, but I recommend either doing a search using the package installer in Visual studio or checking the Umbraco project page to find out if the one you've decided to use offers this option (hint: check out the External Resources section).

If your package however doesn't offer this option, your only choice is to use the Umbraco backoffice. All you have to do is navigate to the Developer section and select Packages. You then either have the option of using the package repository, or installing the package from a locally downloaded .zip file

enter image description here

elolos
  • 4,310
  • 2
  • 28
  • 40
  • Does the `nuget` method update the umbraco backoffice? Do I have to do anything additional to synchronize the installed packages across environments? – Kunal Sep 19 '17 at 14:16
  • 1
    @Kunal, yes it does, the `nuget` package installation will usually copy any necessary files to the `App_Plugins` folder as well as the `bin` folder. All you need to do is ensure those files get deployed to other environments. – elolos Sep 20 '17 at 10:47
0

I would recommend using NuGet to install packages. For example, if you need to install UmbracoCMS, just open Nuget Console and type install-package umbracocms

Hope that helps.