Responses (39)
-
Accepted Answer
0mmm :S it worked before... right??? is it the new version? http://www.joomlamusicsolutions.com/downloads/doc_details/33-random-and-featured-albums-module-charts.html?lang=en -
Accepted Answer
0germi wrote:
mmm :S it worked before... right??? is it the new version? http://www.joomlamusicsolutions.com/downloads/doc_details/33-random-and-featured-albums-module-charts.html?lang=en
Yes, it was a new version. I downloaded it again. Established. That's what happened:
Maybe something should be configured to replace? -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0ok, now I see what is happening
this is an error in WINDOWS only... (it does not happen on linux servers)
I think theres a thread on the forum about this.
LOOK at the src of the IMG tag: it says the original file is in
homeoicesruwwwimagesalbumsclip4170[1].jpg
as you can see, it CROPS the "\" character, because the correct file path should be
home\\oices\\ru\\www\\images\\albums\\clip4170[1].jpg
(I guess)
I believe the problem is JQuery
let me find the thread on the forum that talked about this...
Germi -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0Vostok-All wrote:
germi wrote:
look: http://www.joomlamusicsolutions.com/en/forum/music-collection-extensions/random-albums-random-and-featured-albums-problem-5.html#5184
this is the post
Sorry, I did not understand what I do and what file to make changes? :huh:
From the topics I do not quite understand what I need to do. Could you explain to me all better? hmy: -
Accepted Answer
0Waiting for an answer for weeks. This is unbelievable! " I bought this and the component is already regret. With all the modules problem!! I have already lost a lot of time. Dear Germi Maybe you should seriously apply to his case? I believe you bought your component with and what? Some problems and lack of answers -
Accepted Answer
0dont say you dont get an answer. you get answers, but in this case we havent find a solution yet.
man, I have answererd you about 80 posts.
open components/com_muscol/helpers/helpers.php
on line 208 the function createThumbnail is declared. replace it for this:
[code]
function createThumbnail($file, $alt, $width, $image_attr = array(), $params = array()){
$ds = '\\\\\\\';
$path_site = "home".$ds."oices".$ds."ru".$ds."www";
$params = &JComponentHelper::getParams( 'com_muscol' );
if($params->get('thumbs_mode')){
return JHTML::image('components/com_muscol/helpers/image.php?file=' .$path_site.$ds.'images'.$ds.'albums'.$ds. $file .'&width=' . $width, $alt , $image_attr );
}else{
if($width -
Accepted Answer
0sorry I think the function got messed up:
function createThumbnail($file, $alt, $width, $image_attr = array(), $params = array()){
$ds = '\\\\\\\';
$path_site = "home".$ds."oices".$ds."ru".$ds."www";
$params = &JComponentHelper::getParams( 'com_muscol' );
if($params->get('thumbs_mode')){
return JHTML::image('components/com_muscol/helpers/image.php?file=' .$path_site.$ds.'images'.$ds.'albums'.$ds. $file .'&width=' . $width, $alt , $image_attr );
}else{
if($width 60) return JHTML::image('images/albums/thumbs_40/' . $file, $alt , $image_attr );
else return JHTML::image('images/albums/thumbs_115/' . $file, $alt , $image_attr );
}
}
NOTE: where it says if($width 60) theres a "minor" symbol missing (I cannot paste it here because the forum crops it out)
also please re-check the URLs of the images in that case -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0function createThumbnail($file, $alt, $width, $image_attr = array(),
$params = array())
{
$ds = '\\\\\\\';$path_site = "home".$ds."oices".$ds."ru".$ds."www";
$params = &JComponentHelper::getParams( 'com_muscol' );
if($params->get('thumbs_mode'))
{
return JHTML::image('components/com_muscol/helpers/image.php?file=' .$path_site.$ds.'images'.$ds.'albums'.$ds. $file .'&width=' . $width, $alt , $image_attr );}
else{if($width 60)
return JHTML::image('images/albums/thumbs_40/' . $file, $alt , $image_attr );
else return JHTML::image('images/albums/thumbs_115/' . $file, $alt , $image_attr );
}
} -
Accepted Answer
0Sorry
I think I understand
.....
$width, $alt , $image_attr );}
else{if($width > 60)
return JHTML::image('images/albums/thumbs_40/' . $file, $alt , $image_attr );
else return JHTML::image('images/albums/thumbs_115/' . $file, $alt , $image_attr );
}
}
Nothing happens
I wrote everything down correctly?
:huh:
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »