ZF-8939: Zend Demo ProgressBar
Description
Zend_form in the demo has the following JS function
function getProgress() { makeRequest('ZendForm.php?progress_key=' + document.getElementById('progress_key').value); }
progress_key element id doesn't exist in the document. I assume this is the reason that the progress bar doesn't show any progress.
Comments
Posted by Thomas Weidner (thomas) on 2010-01-26T10:22:07.000+0000
Assigned correct component
Posted by Sascha Clucas (charogarcia) on 2012-04-12T12:45:50.000+0000
The hidden progress_key form element is only inserted if APC is available:
Zend_File_Transfer_Adapter_Http::isApcAvailable() checkes for
So you need to have APC enabled and need to have at least the following in your php.ini: [APC] apc.rfc1867 = on apc.enabled=1
Maybe this could be stated more clearly in the documetnation of Zend_ProgressBar