Skip to content
Snippets Groups Projects
  1. Jul 09, 2012
  2. Jul 08, 2012
  3. Jul 07, 2012
  4. Jul 05, 2012
  5. Jul 02, 2012
  6. Jul 01, 2012
  7. Jun 30, 2012
  8. Jun 29, 2012
  9. Jun 28, 2012
    • Peter Rotich's avatar
      3a14dd21
    • Jared Hancock's avatar
      Add upgrade instructions · 8deac644
      Jared Hancock authored
      And provide a shell script to remove codebase files no longer used in
      osTicket 1.7
      8deac644
    • Jared Hancock's avatar
      Properly migrate to ticket thread · 49b28720
      Jared Hancock authored
      Add a (temporary) key to %ticket_thread allowing quick lookups on the old_pk
      column. Also, only fill the temporary table used for linking responses to
      the migrated messages with messages.
      49b28720
    • Jared Hancock's avatar
      Don't clobber user-defined email templates · 902fd616
      Jared Hancock authored
      902fd616
    • Jared Hancock's avatar
      Add initial statistics from %ticket table · 82372afc
      Jared Hancock authored
      82372afc
    • Jared Hancock's avatar
      Fix AttachmentMigrater::queueAttachments · a62729e3
      Jared Hancock authored
      Remove clobber between queue() method and queue instance property (which is
      the queue list). Also properly limit the number of attachments queued for
      migration as indicated by the initial call to the queueAttachments() method.
      Lastly, fix an issue where the first $limit items of the database cannot be
      found on or read from the disk. Recurse through the queueAttachments()
      method until the entire database is scanned or $limit items are placed in
      the queue.
      a62729e3
    • Jared Hancock's avatar
      Write file contents to MySQL database in chunks · 8cae37f5
      Jared Hancock authored
      This overcomes the eventual limit of and database to support queries of a
      finite length. We now split the file contents into 100k chunks and append
      the chunks to the database one chunk at a time.
      8cae37f5
    • Jared Hancock's avatar
      Live migrate the PHP session to database · b2b2ebba
      Jared Hancock authored
      Migrate the PHP session from disk to database live. To pull this off, the
      session contents are written to database under the current session id. When
      the `ostversion` column is dropped from the %config table, the system will
      automatically switch to database-backed sessions in osTicket 1.7 mode.
      
      This is sort-of hacked together by carefully calling a instance method of
      the osTicketSession class statically, and modify the instance method to
      support static invocation.
      b2b2ebba
    • Jared Hancock's avatar
      Delay dropping columns from the %config table · a678f55a
      Jared Hancock authored
      When the `ostversion` column is removed from the %config table, the system
      will immediately switch to database-backed sessions. Because the
      administrator upgrading the system originally logged in with a file-based
      session, it must be migrated to the database before removing the column.
      a678f55a
Loading