File manager crashing IE8

Permalink
Hi all!

I've just tested the file manager with IE8 and is crashing.

I've been printing the data step by step through the PHP and seems to be fine but Internet Explorer shows this message (and the crashed page!)

Message: Object expected
Line: 247
Char: 1
Code: 0
URI: http://mySite/index.php/tools/required/al_search_results.php?bFile=&bDateAdded=&type=&sort=bDateAdded+desc&view=25&submit=Submit+Query


Any help regarding this will be enormously appreciated!

Thanks!

teknotica
 
teknotica replied on at Permalink Reply
teknotica
Hi!

I posted this yesterday and I didn't clarify the crashing is happening with the old version of Concrete (new is perfect!).

I fixed the issue (if is there someone having the same problem). For some reason IE8 didn't like the ajax form call. It doesn't get in either:

$("#ccm-al-search").ajaxForm({ ...


so I changed it by the other way:

$("#ccm-al-search").submit(function() {      
   $.ajax({
   type: "GET",
   url: "<?php echo REL_DIR_FILES_TOOLS_REQUIRED.'/al_search_results.php' ?>",
   beforeSubmit: function() {
      ccm_alShowLoader();
      $("#ccm-al-search-results").html('');
   return true;
   },      
   success: function(resp) {
          ccm_alHideLoader();
          $("#ccm-al-search-results").html(resp);   
      ccm_alSetupPaging(); 
   }
});


..and works perfectly.

:)