I created a brand new website in umbraco 7.0.4, install the vorto 1.1 package, created the data type. created the document type to use the vorto data type.
When I click on the content/create and select the document type it show me this error.
I understand that it is looking for newtonsoft.json version 6.0.0 and my local is 4.5.0.
I tried to update it package Manager Console by running update-package Newtonsoft.json -Version 6.0.0, however it updated the whole umbraco to latest version, I still want this website to run on umbraco 7.0.4.
is this package compatible with umbraco 7.0.4, it says yes, but...
Any idea what it can be or how I could update the Newtonsoft.json.dll file?
I got it working by updating Umbraco to the latest version.
I am working now on the template API to have a language selector to switch between languages, do you know any good tutorial or package I can use to archive that?
Just so you know, the latest versions of umbraco already have that config in the web.config so that is likely the reason why it's started working :)
Regarding the language selector, there are probably several ways it can be done, but it should be fairly easy to get a list of languages from Umbraco (maybe from the domains collection) and cycle through them to render a dropdown list. On selection you should be able to drop a cookie and have then either use that in your vorto property calls, or update the UICulture with it. I don't know of any specific tutorials, but if you search the forums, I'm sure you'll find some examples, and if not, feel free to ask if you need more help.
Problems loading the content
I created a brand new website in umbraco 7.0.4, install the vorto 1.1 package, created the data type. created the document type to use the vorto data type.
When I click on the content/create and select the document type it show me this error.
I understand that it is looking for newtonsoft.json version 6.0.0 and my local is 4.5.0.
I tried to update it package Manager Console by running update-package Newtonsoft.json -Version 6.0.0, however it updated the whole umbraco to latest version, I still want this website to run on umbraco 7.0.4.
is this package compatible with umbraco 7.0.4, it says yes, but...
Any idea what it can be or how I could update the Newtonsoft.json.dll file?
Hi,
Try adding an assembly binding in your web.config
runtime > assemblyBinding
, I think that should workMany thanks
Matt
Thanks Matt
I got it working by updating Umbraco to the latest version.
I am working now on the template API to have a language selector to switch between languages, do you know any good tutorial or package I can use to archive that?
Cheers
Ps: Great package by way
No Problem,
Just so you know, the latest versions of umbraco already have that config in the web.config so that is likely the reason why it's started working :)
Regarding the language selector, there are probably several ways it can be done, but it should be fairly easy to get a list of languages from Umbraco (maybe from the domains collection) and cycle through them to render a dropdown list. On selection you should be able to drop a cookie and have then either use that in your vorto property calls, or update the UICulture with it. I don't know of any specific tutorials, but if you search the forums, I'm sure you'll find some examples, and if not, feel free to ask if you need more help.
Many thanks
Matt
is working on a reply...