[GH-ISSUE #1714] How to restart pending document to finish? #488

Closed
opened 2026-02-26 18:47:15 +03:00 by kerem · 6 comments
Owner

Originally created by @ASchmidt84 on GitHub (Mar 17, 2025).
Original GitHub issue: https://github.com/documenso/documenso/issues/1714

Hi.
I had to add "- NEXT_PUBLIC_DOCUMENT_SIZE_UPLOAD_LIMIT=25" to my docker env.
Now i could edit my on document (for testing) and it worked.
Is it possible that the old pending documents (which are all finished but only had errors in processing) to restart the finish process?

Thank you.

Originally created by @ASchmidt84 on GitHub (Mar 17, 2025). Original GitHub issue: https://github.com/documenso/documenso/issues/1714 Hi. I had to add "- NEXT_PUBLIC_DOCUMENT_SIZE_UPLOAD_LIMIT=25" to my docker env. Now i could edit my on document (for testing) and it worked. Is it possible that the old pending documents (which are all finished but only had errors in processing) to restart the finish process? Thank you.
kerem 2026-02-26 18:47:15 +03:00
Author
Owner

@dguyen commented on GitHub (Mar 18, 2025):

You should be able to do this through the admin panel which lets you find a document and "reseal" it.

To access the admin panel, you need to update a user account to have the "ADMIN" role. You'll need to do this by connecting to the database and editing the user role manually.

From then, you can access the admin panel in the top right menu using that admin user account

<!-- gh-comment-id:2732359311 --> @dguyen commented on GitHub (Mar 18, 2025): You should be able to do this through the admin panel which lets you find a document and "reseal" it. To access the admin panel, you need to update a user account to have the "ADMIN" role. You'll need to do this by connecting to the database and editing the user role manually. From then, you can access the admin panel in the top right menu using that admin user account
Author
Owner

@ASchmidt84 commented on GitHub (Mar 18, 2025):

@dguyen Thank you. That helps.
I have one document that is not able to reseal it. How I can figure out the problem?

<!-- gh-comment-id:2732485182 --> @ASchmidt84 commented on GitHub (Mar 18, 2025): @dguyen Thank you. That helps. I have one document that is not able to reseal it. How I can figure out the problem?
Author
Owner

@dguyen commented on GitHub (Mar 18, 2025):

You should be able to look in the docker logs to see the error if it happens during resealing

<!-- gh-comment-id:2732510572 --> @dguyen commented on GitHub (Mar 18, 2025): You should be able to look in the docker logs to see the error if it happens during resealing
Author
Owner

@ASchmidt84 commented on GitHub (Mar 18, 2025):

no that is not the problem. the button reseal is deactivated on this document

<!-- gh-comment-id:2732533520 --> @ASchmidt84 commented on GitHub (Mar 18, 2025): no that is not the problem. the button reseal is deactivated on this document
Author
Owner

@dguyen commented on GitHub (Mar 18, 2025):

For the reseal button to be enabled, all recipients must have signed the document

This is the button logic

  disabled={document.recipients.some(
    (recipient) =>
      recipient.signingStatus !== SigningStatus.SIGNED &&
      recipient.signingStatus !== SigningStatus.REJECTED,
  )
<!-- gh-comment-id:2732557306 --> @dguyen commented on GitHub (Mar 18, 2025): For the reseal button to be enabled, all recipients must have signed the document This is the button logic ``` disabled={document.recipients.some( (recipient) => recipient.signingStatus !== SigningStatus.SIGNED && recipient.signingStatus !== SigningStatus.REJECTED, ) ```
Author
Owner

@ASchmidt84 commented on GitHub (Mar 18, 2025):

Okay. Thank you. I will check this.

<!-- gh-comment-id:2732571484 --> @ASchmidt84 commented on GitHub (Mar 18, 2025): Okay. Thank you. I will check this.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/documenso#488
No description provided.