Размер загружаемого фото в пост. Ограничение размера и убрать оригинал

InstantCMS 2.X

Есть такая проблема, незнаю как решить.

#16 11 апреля 2018 в 14:46
попытался сам разобраться, вот что у меня получилось:
взял файл /templates/default/js/fileuploader.js и там поменял значение sizeLimit: '2097152',


  1.  
  2. qq.FileUploaderBasic = function(o){
  3. this._options = {
  4. // set to true to see the server response
  5. debug: false,
  6. action: '/server/upload',
  7. params: {},
  8. button: null,
  9. multiple: true,
  10. maxConnections: 3,
  11. // validation
  12. allowedExtensions: [],
  13. sizeLimit: '2097152',
  14. minSizeLimit: 0,
  15. // events
  16. // return false to cancel submit
  17. onSubmit: function(id, fileName){},
  18. onProgress: function(id, fileName, loaded, total){},
  19. onComplete: function(id, fileName, responseJSON){},
  20. onCancel: function(id, fileName){},
  21. // messages
  22. messages: {
  23. typeError: "{file} has invalid extension. Only {extensions} are allowed.",
  24. sizeError: "{file} is too large, maximum file size is {sizeLimit}.",
  25. minSizeError: "{file} is too small, minimum file size is {minSizeLimit}.",
  26. emptyError: "{file} is empty, please select files again without it.",
  27. onLeave: "The files are being uploaded, if you leave now the upload will be cancelled."
  28. },
  29. showMessage: function(message){
  30. alert(message);
  31. }
  32. };
  33. qq.extend(this._options, o);
  34.  
  35. // number of files being uploaded
  36. this._filesInProgress = 0;
  37. this._handler = this._createUploadHandler();
  38.  
  39. if (this._options.button){
  40. this._button = this._createUploadButton(this._options.button);
  41. }
  42.  
  43. this._preventLeaveInProgress();
  44. };
  45.  
  46.  
Вы не можете отвечать в этой теме.
Войдите или зарегистрируйтесь, чтобы писать на форуме.
Используя этот сайт, вы соглашаетесь с тем, что мы используем файлы cookie.