Error: syntax error
Source file: http://stelizabethhs.tempwebpage.com/drupal-6.17/sites/all/modules/filed...
Line: 2438, Column: 1
Source code:
()

Relevant line:
var oResults = eval('(' + json + ')');

In Context:

  var listingcallback = {
    success: function(o) {
      //YAHOO.log('showfiles: return from AJAX call:' + timeDiff.getDiff() + 'ms');
      var json = o.responseText.substring(o.responseText.indexOf('{'), o.responseText.lastIndexOf('}') + 1);
      var oResults = eval('(' + json + ')');
      if (oResults.retcode == 200) {

Comments

blainelang’s picture

Do you have JSON module installed on your PHP server instance.

Anonymous’s picture

Status: Active » Closed (fixed)

That was indeed the problem. PHP 5.1.6 does not have the JSON module built-in, so it must be installed manually. Thank you for the resolution. Issue closed.