EspoCRM 5.5.5 released

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yuri
    Member
    • Mar 2014
    • 8453

    EspoCRM 5.5.5 released

    All issues: https://github.com/espocrm/espocrm/m...ne/58?closed=1

    Download: https://www.espocrm.com/download/

    Upgrades: https://www.espocrm.com/download/upgrades/

    Before upgrading from 5.4.5, it's recommended to remove all success jobs. This will expedite the upgrading process. Administration > Scheduled Jobs > Jobs in the top right corner > filter jobs by status = 'Success' > Select All Results > Remove.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.
  • codeboy
    Senior Member
    • May 2018
    • 112

    #2
    Thank you yuri

    Comment

    • UnnamedUA
      Senior Member
      • Jun 2014
      • 101

      #3
      Очень долгое обновление как то с 5.5.4

      Comment

      • Luki
        Junior Member
        • Jun 2017
        • 15

        #4
        Hi,

        When I try to remove all success job i get an error 500
        Last edited by Luki; 01-10-2019, 08:12 AM.

        Comment

        • Maximus
          Senior Member
          • Nov 2018
          • 2731

          #5
          Hi.
          Try to check the log files of your web server and Espo. This can be useful https://www.espocrm.com/documentatio...ent-check-logs

          Comment

          • peterberlin
            Active Community Member
            • Mar 2015
            • 1004

            #6
            We have about 56,000 successful jobs. What is the best way to delete them?
            PHPMyadmin?

            Comment


            • yuri
              yuri commented
              Editing a comment
              Using Select All Results. phpmyadmin is fine too.

              If you have sufficent max execution time you can just don't remove.
          • item
            Active Community Member
            • Mar 2017
            • 1476

            #7
            Hi,
            Why not create a simple jobs for delete all these kind of record ? So and run it each week or month or... and too juste on begin in a upgrade process ?

            Regards


            public function run()
            {
            $pdo = $this->getEntityManager()->getPDO();
            $sql = "DELETE FROM scheduled_job_log_record WHERE status='Success'";
            $sth = $pdo->prepare($sql);
            $sth->execute();

            $sql = "DELETE FROM job WHERE status='Success'";
            $sth = $pdo->prepare($sql);
            $sth->execute();
            }
            If you could give the project a star on GitHub. EspoCrm believe our work truly deserves more recognition. Thanks.​

            Comment

            • Harald
              Member
              • May 2018
              • 40

              #8
              Hi,
              i get bad server response and in espocrm/data/logs is no entry.

              Comment


              • tanya
                tanya commented
                Editing a comment
                What is i server error log? Maybe timeout... How long was upgrading process?
            • Harald
              Member
              • May 2018
              • 40

              #9
              Unfortunately I don't have access to the server logs but I solved the problem by deleting the corresponding entries in the database with phpMyAdmin.

              Comment

              Working...