Uploadify: Chrome ve IE değil ateş onComplete

0 Cevap php

I seem to be having with uploadify and the onComplete callback in both Chrome and IE. Basically, only in Firefox does the onComplete event fire.

Kod sunucusu görüntünün dosya adını döndürür hangi noktada sunucuya, bir resim yükleyerek çalışır. Bu noktada onComplete ateş gerekir.

The JS can be found here: http://pastebin.com/raw.php?i=yEkEWP53 (for some reason the stackoverflow parser doesnt like the code when pasted in)

Aşağıdaki gibi sunucu tarafı kodu görünüyor:

function addphotosajax() {
                            $config['upload_path'] = './tmp/';
                            $config['allowed_types'] = 'gif|jpg|png';
                            $config['overwrite'] = false;

                            $this->load->library('upload', $config);
                            if (!$this->upload->do_upload()){
                                            echo 0;
        //echo $this->upload->display_errors();
                                            exit;
                            }
                            $picdata = $this->upload->data();
                            $picloc = $picdata['file_name'];
                            //log_message('error',serialize($picdata));
    //echo str_repeat("test", 500);
                            echo $picloc;
            }

Böyle onInit gibi diğer işlevleri, her zaman tüm tarayıcılarda yangın. Ayrıca, sunucu her zaman geçerli bir yanıt verir.

Şimdiden teşekkürler

0 Cevap