By Colorpack Creations Co. on Thursday, 17 April 2014
Posted in Technical Issues
Replies 5
Likes 0
Views 1K
Votes 0
i have error 500 if submit comment

but comment submit
Hello Colorpack Creations Co,

Sorry for late reply to this,
Can you update your EasySocial to latest version and see how it goes?
If the issues still persists, please refer back to us. Please advise.
·
Thursday, 17 April 2014 23:09
·
0 Likes
·
0 Votes
·
0 Comments
·
i use EasySocial v1.2.8 Komento 1.7.7
·
Friday, 18 April 2014 16:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Colorpack Creations Co,

Sorry for late reply to this,
I have applied some fixes in your site -> JoomlaFolder/components/com_komento/helpers/easysocial.php
LINE 231 until 239

// Get the content length
if ($length > $params->get('min')->value || $params->get('min')->value == 0) {

$state = $points->assign($rule, 'com_komento', $creator->id);
}

return $state;
}

Replace with

if ($params) {
// Get the content length
if ($length > $params->get('min')->value || $params->get('min')->value == 0) {

$state = $points->assign($rule, 'com_komento', $creator->id);
}
} else {
$state = $points->assign($rule, 'com_komento', $creator->id);
}


return $state;
}

If the issues still persists, please refer back to us.
·
Saturday, 19 April 2014 00:50
·
0 Likes
·
0 Votes
·
0 Comments
·
ok now not error
·
Saturday, 19 April 2014 17:29
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for updating Glad that your issues are resolved now This will be fixed in the next release of Komento.
·
Saturday, 19 April 2014 22:22
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post