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.
Results 11 to 12 of 12
-
12-11-2011, 09:14 PM #1
Unlicensed member
- Join Date
- Jun 2011
- Posts
- 19
- Downloads
- 143
- Uploads
- 0
MT Slideshow Doesn't Work with 1.6.1.0
-
03-22-2012, 10:31 AM #11
AdministratorÂ
- Join Date
- Apr 2010
- Posts
- 192
- Downloads
- 11
- Uploads
- 145
Hello,
We have upgraded the MT Slideshow to version 2.0.3 with a new animation. It also fixed above issue.
Kind regards,
David
-
03-29-2012, 08:23 AM #12
AdministratorÂ
- Join Date
- Apr 2010
- Posts
- 192
- Downloads
- 11
- Uploads
- 145
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:
by 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();
},
Save, clear your magento cache and refresh the back-end to check the result.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();
},


Reply With Quote