LeBlender not working after Upgrading to 7.6.4 to Umbraco 7.15.7
Hi Guys,
I am upgraded my Umbraco project from version 7.6.4 to 7.15.7. In this website, I have some plugins install like, LePainter, LeBlender, Doctype Grid Editor and etc.
My website currently working fine except the above plugins are not working correctly in umbraco Backoffice.
Let me tell you the actual issue, I'm facing related to LeBlender Plugin. I have upgraded the LeBlender plugin after upgrading to Umbraco v7.6.5 to v7.15.7
In the below image when go to Developer section -> Grid Editor -> then clicking on Rich Text Editor no section is visible and I am also getting console errors which i am also attaching below:
Please let me know how can we fix this issue related to LeBlender.
Are you using the latest version (1.0.9.2) of leblender and the optional dependent packages like Lecoati.LeBlender.DataTypeNameAsIdentifier (if you use datatype names in the leblender config)?
You can also try to clear your app_data/temp folder and bump the client dependency version in de config/clientdependency.config file and restart your web app.
(change debug to true on the compilation line of web.config)
Then the javascript won't be combined and minified*, and you will likely get a more accurate error as to where the issue is in the files.
if you look at the resulting browser errors once you have done this they should point to the actual files and you can take a look on disk and see it that helps pinpoint the issue.
*Normally Umbraco takes all the js files for the pluging and puts them together in one file, if there is something wrong in one it can (depending on how they are coded) have a knock on effect in a later bit of code, so you get errors that are miles off the actuall issue. flipping it into debug stops this merge and you get the errors in the files they are actually in.
LeBlender not working after Upgrading to 7.6.4 to Umbraco 7.15.7
Hi Guys,
I am upgraded my Umbraco project from version 7.6.4 to 7.15.7. In this website, I have some plugins install like, LePainter, LeBlender, Doctype Grid Editor and etc.
My website currently working fine except the above plugins are not working correctly in umbraco Backoffice.
Let me tell you the actual issue, I'm facing related to LeBlender Plugin. I have upgraded the LeBlender plugin after upgrading to Umbraco v7.6.5 to v7.15.7
In the below image when go to Developer section -> Grid Editor -> then clicking on Rich Text Editor no section is visible and I am also getting console errors which i am also attaching below:
Please let me know how can we fix this issue related to LeBlender.
Kindly help us. Thanks
Hi,
Are you using the latest version (1.0.9.2) of leblender and the optional dependent packages like Lecoati.LeBlender.DataTypeNameAsIdentifier (if you use datatype names in the leblender config)?
You can also try to clear your app_data/temp folder and bump the client dependency version in de config/clientdependency.config file and restart your web app.
Erik
Hi @Erik
I am using LeBlender https://our.umbraco.com/packages/backoffice-extensions/leblender/ in Umbraco v7.6.4 and now after upgrading my project to Umbraco v7.15.7 in both version this was not working.
More packages are also not working as listed below:
1- LePainter https://our.umbraco.com/packages/backoffice-extensions/lepainter/.
2- LeBlender https://our.umbraco.com/packages/backoffice-extensions/leblender/.
3- Doc Type Grid Editor https://our.umbraco.com/packages/backoffice-extensions/doc-type-grid-editor/
We haven't check "Doc Type Grid Editor" yet.
Thanks
Hi,
If you switch the site to debug in the web config:
(change debug to true on the compilation line of web.config)
Then the javascript won't be combined and minified*, and you will likely get a more accurate error as to where the issue is in the files.
if you look at the resulting browser errors once you have done this they should point to the actual files and you can take a look on disk and see it that helps pinpoint the issue.
*Normally Umbraco takes all the js files for the pluging and puts them together in one file, if there is something wrong in one it can (depending on how they are coded) have a knock on effect in a later bit of code, so you get errors that are miles off the actuall issue. flipping it into debug stops this merge and you get the errors in the files they are actually in.
Hi @keven Jump Thanks for the Response.
Ok sure i will switch the debug mode and check what issue is causing to break the plugin.
Same issue still no fix to this.
Hi Lindgren, I had simialr issues, validating grid.editors.config.js helpful in my case ,
Got the hints from here : https://our.umbraco.com/packages/backoffice-extensions/leblender/bug-reports/89934-umbraco-764-unexpected-token-in-json-at-position-745#comment-298977
Hi @Prashce9002
I have solved the above issued.
By validating the "grid.editors.config.js" file json format and it's working for me now.
is working on a reply...