Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Yajamanam 36 posts 106 karma points
    Mar 10, 2018 @ 06:10
    Yajamanam
    0

    Upgrading Umbraco version 7.9.2 with Plumber package getting issue

    Hi I have upgraded umbraco Version 7.7.9 to 7.9.2 version and installed Plumber package from developer section. Installed successfully, but when I create a new node in content section. i was showing error in the right side . enter image description here

    2.when i create setting in workflow section tab and please suggest me on this. enter image description here

    Thanks & regards, Pradeep

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 10, 2018 @ 08:52
    Nathan Woulfe
    0

    Hey!

    Pretty sure neither of those are related to upgrading, rather are bugs in the package.

    First one, I'm guessing, is caused by Plumber trying to find the IPublishedContent item for the new node, which won't exist as it hasn't been published.

    Second is due to GitHub deprecating TLS 1.0 API connections.

    I know I've fixed the second, will need to check the first - I've got a large release coming soon, which potentially already addresses both.

    Will update here when I've confirmed/released

    N

  • Yajamanam 36 posts 106 karma points
    Mar 10, 2018 @ 09:01
    Yajamanam
    0

    Thanks Nathan,

    As of now first issue is not a blocker but when user is in workflow if user tries to create a new node then this error will be displayed,and able to create node. 2.but for a content managers it is difficult to understand. Is there anything i can do to fix this or shall i do any setting in workflow.

    second image is related to ssl which i have gone through this SSL relatedlink

    where should i add according to this reference.

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 10, 2018 @ 09:11
    Nathan Woulfe
    0

    I'll get a patch out for you shortly - should be able to sort it pretty easily.

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 10, 2018 @ 08:53
    Nathan Woulfe
    0

    And for now, neither error will be stopping anything from working (documemtation won't display, but that's not a massive issue), so the actual workflows will still work fine.

  • Yajamanam 36 posts 106 karma points
    Mar 10, 2018 @ 09:30
    Yajamanam
    0

    Hi Nathan, Thanks for the response.but as of now can we able to disable the error showed in the image until new patch release.

    enter image description here

    can you please advice to change the code base to disable the error.

    Thanks,Pradeep

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 10, 2018 @ 09:44
    Nathan Woulfe
    0

    See my other reply below - it's a change to compiled code, so required a build and release.

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 10, 2018 @ 09:52
    Nathan Woulfe
    0

    Hi Pradeep

    Please see my reply below - this was a change in compiled code so required a build and release.

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 10, 2018 @ 09:44
    Nathan Woulfe
    0

    In SettingsController, both the GetVersion and GetDocs methods need to include the line below before the web client is created.

    ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
    

    to ensure the request is accepted at the other end.

    https://ci.appveyor.com/project/nathanwoulfe/umbracoworkflow/build/0.7.0.140/artifacts is a fresh build with both issues resolved.

    Note though there is a significant amount of other changes - they've been tested, but there's potentially an intermittent issue that I've put down to my local site using an SqlServer CE database. Only seems to happen when the user dashboard loads, on rare occasions. If you can reproduce, please let me know.

    Also haven't tested anything on 7.9, so you're the guinea pig...

  • Yajamanam 36 posts 106 karma points
    Mar 10, 2018 @ 10:58
    Yajamanam
    0

    Hi Nathan, Great thanks Its working,

    i have one issue found when i created the approval flow. i have created in content approval flow. U1->U2>U3

    when U1 sends to U2 approval, U2 will approve but the approve button will still shows. 1. If U2 refresh the page it vanishes and shows Preview. 2 .If the U2 does'nt refresh page and feels to click Approval button second time, the approval will not goes to U3 as it will be considered as published. and withdraw button will update as Published.

    it is clear that if there are 3 stages, if the U1 will click approval for 3 times U1 will able to make publish because of refresh issue i guess.(need to restrict user to approve only one time click) Please suggest me on this. FirstclickSecondclick Finalclick

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 10, 2018 @ 11:33
    Nathan Woulfe
    0

    That's some poor javascript on my part - there's a flag set when the page loads to check whether the current user has permission to process the current workflow stage.

    Which is fine, except it never flips back to false, so after submitting the task they can continue to submit, despite not having permission to do so.

    Have fixed it, and it's available now in 0.7.1 -> https://ci.appveyor.com/project/nathanwoulfe/umbracoworkflow/build/artifacts - or via nuget.

    N

  • Yajamanam 36 posts 106 karma points
    Mar 10, 2018 @ 12:52
    Yajamanam
    0

    Hi Nathan,

    errors resolved but new exception thrown in Approving button submit.

    this issue will happen in the final stage of approval. the Page will be published but refresh not happening.(seems need to block approval button and change to request to publish for next workflow) enter image description here

    Please let me know on this

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 10, 2018 @ 21:05
    Nathan Woulfe
    0

    That looks very much like the issue I mentioned - wasn't sure what was causing it (still not), but have put a dirty fix in place that appears to have at least suppressed it.

    Doing that also exposed another small bug in the email notifications which I've also resolved.

    0.7.2 => https://ci.appveyor.com/project/nathanwoulfe/umbracoworkflow/build/artifacts

  • Yajamanam 36 posts 106 karma points
    Mar 12, 2018 @ 07:45
    Yajamanam
    0

    Hi Nathan,

    Issues resolved and workflow is working fine. but when i see in console there are errors related to workflow.not sure about it how it is working with 0.7.2 plumber patch.

    when i click on workflow tab errors appears please find the below refereed images
    enter image description here

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 12, 2018 @ 07:56
    Nathan Woulfe
    0

    Will have a look at this tonight - looks like possibly files missing from the package, which is odd since the build process didn't change and these have been included in previous releases.

    Will get back to you.

  • Nathan Woulfe 447 posts 1664 karma points MVP 5x hq c-trib
    Mar 12, 2018 @ 10:16
    Nathan Woulfe
    0

    Looks like there was an issue in my build task, which meant a few files were missed. Gruntfile was a bit of a mess, hence the issue.

    New release is up now and should be golden.

  • Yajamanam 36 posts 106 karma points
    Mar 12, 2018 @ 13:03
    Yajamanam
    0

    Hi Nathan,

    When i initiate workflow from authors when i click on request to publish below error was displaying.

    enter image description here Also i have a doubt ex U1 is at stage 1 to approve , so do i need to give send to publish from groups section else It will automatically will override the existing permissions present in the work flow.

    Ex: U1 ->group only update,publish if the U1 in workflow will this be allowed to send for approval or directly will publish.

    Thanks, Pradeep

  • Yajamanam 36 posts 106 karma points
    Mar 12, 2018 @ 14:49
    Yajamanam
    0

    Hi Nathan,

    When i initiate workflow from authors when i click on request to publish below error was displaying.

    Also i have a doubt ex U1 is at stage 1 to approve , so do i need to give send to publish from groups section else It will automatically will override the existing permissions present in the work flow.

    Ex: U1 ->group only update,publish if the U1 in workflow will this be allowed to send for approval or directly will publish.

    Thanks, Pradeep

  • Yajamanam 36 posts 106 karma points
    Mar 12, 2018 @ 16:55
    Yajamanam
    0

    Hi Nathan,

    when i update to Plumber 0.7.4 package below is the error i am getting when i do approve changes to next stage.

    to reproduce the same, create workflow and do approve changes, next User will get the approve changes but it will throw an error shown below.

    also i have added issues in below https://github.com/nathanwoulfe/Plumber/issues/27

    enter image description here

  • Yajamanam 36 posts 106 karma points
    Mar 13, 2018 @ 09:19
    Yajamanam
    0

    Hi Nathan,

    i can see it very clear that when i debug from source code it will works without errors but only small issue with final stage refresh not happening.

    to reproduce : click U3 as approve in third stage(final stage) and able to publish the content and still button remains same as approve changes. when page refresh it vanishes.

    enter image description here

    also let me know how can i push the source code to server environment. Installing by local didn't work. Please suggest me on this.

Please Sign in or register to post replies

Write your reply to:

Draft