1. #21
    Sencha - Architect Dev Team aconran's Avatar
    Join Date
    Mar 2007
    Posts
    8,191
    Vote Rating
    63
    aconran is just really nice aconran is just really nice aconran is just really nice aconran is just really nice aconran is just really nice

      0  

    Default


    Resolved as of SVN rev 1465.
    Aaron Conran
    @aconran
    Sencha Architect Development Team

  2. #22
    Sencha User
    Join Date
    May 2011
    Posts
    17
    Vote Rating
    0
    leolox69 is on a distinguished road

      0  

    Default


    It does not work for me.
    Code:
               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
                });
    PHP always produce an error of Maximum Execution time of 30 sec. Please help

  3. #23
    Sencha User
    Join Date
    May 2011
    Posts
    17
    Vote Rating
    0
    leolox69 is on a distinguished road

      0  

    Default


    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