Reputation: 8297
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:
Upvotes: 1
Views: 380
Reputation: 8297
Update on this: towards the end of 2013, we switched to using the XHR progress events so we no longer depend on any PHP modules for the progress (and we are currently up to PHP 5.6, considering moving up to PHP 7 soon).
Upvotes: 1