Announcement

Collapse
No announcement yet.

EspoCRM 5.5.5 released

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

  • 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.

  • #2
    Thank you yuri

    Comment


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

      Comment


      • #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


        • #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


          • #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.

          • #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();
            }

            Comment


            • #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?

            • #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...
              X