Announcement

Collapse
No announcement yet.

EspoCRM 5.6.0 released

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #16
    > I couldn't see how to use the new feature -- "Recalculate Formula’ mass action for admin"

    From the list view, you need to select records first.

    Comment


    • #17
      Originally posted by yurikuzn View Post
      > I couldn't see how to use the new feature -- "Recalculate Formula’ mass action for admin"

      From the list view, you need to select records first.
      Recalculate is not showing. I see convert currency, but not Recalculate Formula....

      Comment


      • #18
        Sorry, my mistake. I was trying on a list that doesn't had formula to be calculated.

        Comment


        • #19
          Waouwww.. thank you Yuri and Teams..

          just upgraded.. what difference of speed ... espocrm is "state of art" thanks a lot of

          Just by curiosity.. what have you change and speed change so ?
          And how use new feature "web socket"
          Thanks for all
          Last edited by item; 03-28-2019, 11:07 PM.

          Comment


          • #20
            > Just by curiosity.. what have you change and speed change so ?

            Not sure what exactly you noticed. On list views it may use less sql joins in some cases.

            > how use new feature "web socket"

            https://github.com/espocrm/documenta...web-to-lead.md

            Comment


            • #21
              Addition - nginx configuration for websockets:

              Add to server.conf

              Code:
              map $http_upgrade $connection_upgrade {
                default upgrade;
                '' close;
              }
              
              upstream websocket {
                server 127.0.0.1:8080;
              }
              and in section server {

              Code:
               
              location /wss {
                  proxy_pass [URL]http://websocket;[/URL]
                  proxy_http_version 1.1;
                  proxy_set_header Upgrade $http_upgrade;
                  proxy_set_header Connection $connection_upgrade;
                }
              }


              1. Notifications - received,
              2. Stream - updated,
              3. Phone integration don't use websockets now.
              Last edited by dimyy; 03-29-2019, 11:34 AM.

              Comment


              • yuri
                yuri commented
                Editing a comment
                Thanks .

            • #22
              Where and how do I restore deleted records? I don't see an option in the admin area for this.

              Comment


              • UnnamedUA
                UnnamedUA commented
                Editing a comment
                If softdelete is enabled for you (in options) then you can find this data in the database
                there is a corresponding field that marks the data "deleted"

            • #23
              Administration > Action History > filter by action 'Delete'

              Comment


              • #24
                Originally posted by yurikuzn View Post
                Administration > Action History > filter by action 'Delete'
                Possible to restore the deleted records?

                Comment


                • #25
                  When I try to upgrade version EspoCRM-updgrade-5.5.6 to 5.6.2.zip
                  Receive this error message

                  Your PHP version does not support this instalation package

                  I have in my hosting for my domain "desarrollo.tabisam.es" this version of PHP (5.6.24)
                  Which is PHP version for this Upgrade?

                  Comment


                  • #26
                    Originally posted by jarmito1971 View Post
                    Which is PHP version for this Upgrade?
                    Requirements

                    • PHP 7.1 or above (with pdo, json, gd, openssl, zip, imap, mbstring, curl extensions);
                    • MySQL 5.5.3 or above, or MariaDB.

                    CEO & Founder of Eblasoft.
                    Professional EspoCRM development & extensions.

                    Comment


                    • #27
                      Which value must to have column type from table user for users with column is_admin=0?

                      Comment


                      • khopper
                        khopper commented
                        Editing a comment
                        For someone to be an Admin it must = 1

                    • #28
                      I have at espo log these messages [2019-05-27 16:26:51] Espo.DEBUG: WorkflowManager: Start workflow [afterRecordCreated] for Entity [Call, 5cec0fcb7e21ae5cb]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: WorkflowManager: Start workflow rule [5ce52479a9cda70ba]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: WorkflowManager: Condition result [1] for workflow rule [5ce52479a9cda70ba]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: WorkflowManager: Start running Actions for workflow rule [5ce52479a9cda70ba]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: Workflow\ActionManager: Start workflow rule ID [5ce52479a9cda70ba]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: Workflow\Actions: Start [sendEmail] with cid [0] for entity [Call, 5cec0fcb7e21ae5cb]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: Workflow\Actions: End [sendEmail] with cid [0] for entity [Call, 5cec0fcb7e21ae5cb]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: Workflow\ActionManager: End workflow rule ID [5ce52479a9cda70ba]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: WorkflowManager: End running Actions for workflow rule [5ce52479a9cda70ba]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: WorkflowManager: End workflow rule [5ce52479a9cda70ba]. [] []
                      [2019-05-27 16:26:51] Espo.DEBUG: WorkflowManager: End workflow [afterRecordCreated] for Entity [Call, 5cec0fcb7e21ae5cb]. [] []

                      but really time at Espo is 18:26 ¿¿??

                      Attached Files

                      Comment


                      • khopper
                        khopper commented
                        Editing a comment
                        Espo Logs no matter what you have set always log in UTC,
                    Working...
                    X