com_mailto problem - Joomla! Forum - community, help and support
i have run strange problem today. site built in joomla, version 1.5.26 when try send article link, using email icon, in incoming email, except article link displayed correctly. message looks this:
-----------------------------------------------------------------------------------------------------
this e-mail (websitename) sent name (mail@mail.com). may find following links interesting: 呀6k窔缃^鬓熭�6y斗}勤驧z逑x
-----------------------------------------------------------------------------------------------------
i have checked files in com_mailto , file. sha1 creates correct hash value. have moved site different server trying fix this, no luck. switching between php mail, sendmail , smtp, error remains. encoding problem, or else, have no idea. have noticed quite lot of people run problem, did not find answer in of forums.
does have idea.
thanks
branko
-----------------------------------------------------------------------------------------------------
this e-mail (websitename) sent name (mail@mail.com). may find following links interesting: 呀6k窔缃^鬓熭�6y斗}勤驧z逑x
-----------------------------------------------------------------------------------------------------
i have checked files in com_mailto , file. sha1 creates correct hash value. have moved site different server trying fix this, no luck. switching between php mail, sendmail , smtp, error remains. encoding problem, or else, have no idea. have noticed quite lot of people run problem, did not find answer in of forums.
does have idea.
thanks
branko
i manage fix it. , give up(: here helped, in com_mailto/controller.php file, have replaced string
$link = base64_decode( jrequest::getvar( 'link', '', 'post', 'base64' ) );
(which used latest joomla version) older 1
$link = mailtohelper::validatehash(jrequest::getstring('link', '', 'post'));
and did job! link article displayed correctly in email body now.
hope someone
cheers
$link = base64_decode( jrequest::getvar( 'link', '', 'post', 'base64' ) );
(which used latest joomla version) older 1
$link = mailtohelper::validatehash(jrequest::getstring('link', '', 'post'));
and did job! link article displayed correctly in email body now.
hope someone
cheers
Comments
Post a Comment