jQuery Handler error não é uma função

Eu estou usando jquery ajaxarquivo de upload. o arquivo é carregado corretamente, mas eu tenho erro como

TypeError: jQuery.handleError is not a function
[Break On This Error]   

jQuery.handleError(s, xml, status, e); 

usando jQuery versão 1.7.2 e o código é

jQuery.ajaxFileUpload
        (
            {
                url:'<?php echo $currenturl.'&fileupload=enable';?>',
                secureuri:false,
                fileElementId:'fileToUpload',
                dataType: 'json',
                data:{'image_desc':image_desc,'gallery_id':curr_time_stamp},
                success: function (data, status)
                {   

                     if(typeof(data.error) != 'undefined')
                    {
                        if(data.error != '')
                        {
                            alert(data.error);
                        }else
                        {
                            alert(data.msg);
                            showprofilepicture();
                        }
                    }
                }

            }
        ) 

a função showprofilepicture () também não é executada.

questionAnswers(2)

yourAnswerToTheQuestion