Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am adding QapTcha (http://demos.myjqueryplugins.com/qaptcha/) to a website that I am working on and I'm getting the error "Uncaught TypeError: Cannot read property 'error' of null". What's weird to me is everything is working perfectly locally. No errors or anything. Once I uploaded via ftp to the live server, I get the above error. Below is the block of code that seems to be generating the error:

Slider.draggable({
                revert: function(){
                    if(opts.autoRevert)
                    {
                        if(parseInt(Slider.css("left")) > (bgSlider.width()-Slider.width()-10)) return false;
                        else return true;
                    }
                },
                containment: bgSlider,
                axis:'x',
                stop: function(event,ui){
                    if(ui.position.left > (bgSlider.width()-Slider.width()-10))
                    {
                        // set the SESSION iQaptcha in PHP file
                        $.post(opts.PHPfile,{
                            action : 'qaptcha',
                            qaptcha_key : inputQapTcha.attr('name')
                        },
                        function(data) {
                            if(!data.error) //  Uncaught TypeError: Cannot read property 'error' of null
                            {
                                Slider.draggable('disable').css('cursor','default');
                                inputQapTcha.val('');
                                TxtStatus.text(opts.txtUnlock).addClass('dropSuccess').removeClass('dropError');
                                form.find('input[type=\'submit\']').removeAttr('disabled');
                                if(opts.autoSubmit) form.find('input[type=\'submit\']').trigger('click');
                            }
                        },'json');
                    }
                }           });

I'm not really sure what's going on as to why it works locally and not on the server. Any help/ suggestions would be appreciated. Thanks

share|improve this question
Okay, so the issue was the server needs to have php 5.2 or higher. Hopefully this will help someone else that runs into this issue. – BlassFemur Dec 14 '12 at 1:06
You should post that as an answer and mark it as accepted. – Charles Dec 14 '12 at 4:59

migrated from webmasters.stackexchange.com Dec 13 '12 at 18:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.