With my organizations PHP app, we setup custom PHP session storage in our database, since we have multiple web servers that didn't share the default serialized files well. Also in PHP 5.3 we implemented progress bars for file uploads on our dev environments. We utilized a DLL provided here (http://downloads.php.net/pierre/). Now we have updated to php 5.4 and while we know that it has built-in support for getting information about files as they are being uploaded, the super-global variable for the session appears to not have any data for us. We either need to know how to:
- Use our custom session-storing methods when PHP stores the information about the file being uploaded.
- Get a compiled version of the upload progress dll for php 5.4