Closed (fixed)
Project:
One Click Upload
Version:
7.x-2.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
7 Feb 2017 at 13:41 UTC
Updated:
28 Dec 2017 at 03:11 UTC
Jump to comment: Most recent
Появляется ошибка "Server response came not in JSON format"
проблема в файле js/ocupload.js строка 33
решение заменить код
Drupal.ocupload.checkResponse = function (response) {
return $.trim(response.substring(0, 1)) == '{';
};
на
Drupal.ocupload.checkResponse = function (response) {
return $.trim(response).substring(0, 1) == '{';
};
Comments
Comment #3
phuocdv commentedThanks you very much
The code runs very well