Access denied to user but user purchased the course and should still have access to it. 3 months plan duration used.
After doing some investigation, we saw that the message was coming from components/com_guru/views/gurutasks/view.html.php
The code run is:
defined( '_JEXEC' ) or die( 'Restricted access' );
class guruViewguruTasks extends JViewLegacy {
function display ($tpl = null ) {
$module = $this->get('getTask');
$this->module = $module;
parent::display($tpl);
}
function show ($tpl = null ) {
$task = $this->get('Task');
$this->task = $task;
if($task){
$programname = $this->get('programname');
$this->programname = $programname;
$mediaForTask = $this->get('MediaForTask');
$this->mediaForTask = $mediaForTask;
$day = $this->get('day');
$this->day = $day;
parent::display($tpl);
} else {
echo 'Access deinied';
}
}
What could cause this problem? We have a customer who can't access his course and he is frustrated.
We are running Guru 6.1.0 on Joomla 3.10.11.
Thanks for your help.