ucfopen / Materia

Engage students with easily embedded apps for online courses. Supercharge your course with compelling experiences and game mechanics.
https://ucfopen.github.io/Materia-Docs/
GNU Affero General Public License v3.0
36 stars 34 forks source link

Deprecated ZipArchive reference in the Session_PlayDataExporter class #1444

Closed clpetersonucf closed 1 year ago

clpetersonucf commented 1 year ago

The Session_PlayDataExporter utilizes the ZipArchive utility to create zip files of CSVs of various score data to be exported upon request by users. As of PHP 8.1, ZipArchive is emitting the following fatal error:

ZipArchive::open(): Using empty file as ZipArchive is deprecated

This is apparently related to our use of tempnam(), creating an empty file as the source of the zip archive. Both the built-in play data exporter class will need to be updated, along with any widgets that have their own playdata exporters that includes zip file creation.

clpetersonucf commented 1 year ago

Resolved.