Resolved as of SVN rev 1465.
Printable View
Resolved as of SVN rev 1465.
It does not work for me.
PHP always produce an error of Maximum Execution time of 30 sec. Please helpCode:expenses.app.mainForm = new Ext.FormPanel({
fileUpload: true,
timeout: 3600000,
items: [expenses.app.mainParams]
});
fm = expenses.app.mainForm.getForm();
fm.timeout = 3600000;
fm.submit({
url: "<?php echo url_for('das_expenses/upload') ?>",
method: 'POST',
timeout: 3600000,
success: function(f, a){
Ext.Msg.hide();
},
failure: function(f, a){
Ext.Msg.hide();
Ext.Msg.alert('Information', a.result.msg);
},
scope: this
});
I already added the codes that aconron suggested, both for the form config timeout and for the form submit timeout. but it is still 30 sec. Please help