Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12
  1. #1
    Join Date
    Jun 2011
    Posts
    19
    Downloads
    143
    Uploads
    0

    Default MT Slideshow Doesn't Work with 1.6.1.0

    Hi,

    I've downloaded the app, but Images are not being uploaded (in admin) when I create slideshows. This module does work on 1.6 when I download a full template with quick launch data. However, it doesn't work when I install it as a stand alone app.

    Can you please update the files on your site, or email me a working app (I'm a paid member).

    Thank you.

  2. #11
    Join Date
    Apr 2010
    Posts
    192
    Downloads
    11
    Uploads
    145

    Default

    Hello,

    We have upgraded the MT Slideshow to version 2.0.3 with a new animation. It also fixed above issue.

    Kind regards,
    David

  3. #12
    Join Date
    Apr 2010
    Posts
    192
    Downloads
    11
    Uploads
    145

    Default

    For those who using IIS server and can't upload image, please open slideshow.gallery.js in the folder js/MagenThemes/mtslideshow

    and replace to the following code:

    handleUploadComplete : function(files) {
    files.each( function(item) {
    if (!item.response.isJSON()) {
    try {
    console.log(item.response);
    } catch (e2) {
    alert(item.response);
    }
    return;
    }
    var response = item.response.evalJSON();
    if (response.error) {
    return;
    }
    var newImage = {};
    newImage.url = response.url;
    newImage.file = response.file;
    newImage.link = '';
    newImage.title = '';
    newImage.description = '';
    newImage.disabled = 0;
    newImage.removed = 0;
    this.images.push(newImage);
    this.uploader.removeFile(item.id);
    }.bind(this));
    this.container.setHasChanges();
    this.updateImages();
    },
    by the following code:

    handleUploadComplete : function(files) {
    files.each( function(item) {
    item.response = item.response.replace(/\\/g, '/');
    if (!item.response.isJSON()) {
    try {
    console.log(item.response);
    } catch (e2) {
    alert(item.response);
    }
    return;
    }
    var response = item.response.evalJSON();
    if (response.error) {
    return;
    }
    var newImage = {};
    newImage.url = response.url;
    newImage.file = response.file;
    newImage.link = '';
    newImage.title = '';
    newImage.description = '';
    newImage.disabled = 0;
    newImage.removed = 0;
    this.images.push(newImage);
    this.uploader.removeFile(item.id);
    }.bind(this));
    this.container.setHasChanges();
    this.updateImages();
    },
    Save, clear your magento cache and refresh the back-end to check the result.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •