Thank you for your reply, I am no expert on php, this is all the code that is in the file you mentioned. Could you please advise on which line or where the code you provided need to go in.
/**
This file is part of dhtmlxScheduler for Joomla.
dhtmlxScheduler for Joomla is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
dhtmlxScheduler for Joomla is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with dhtmlxScheduler for Joomla. If not, see <http://www.gnu.org/licenses/>.
**/
defined (’_JEXEC’) or die();
jimport( ‘joomla.application.component.model’ );
require_once(JPATH_ROOT.DS.‘components’.DS.‘com_scheduler’.DS.‘codebase’.DS.‘dhtmlxSchedulerConfigurator.php’);
class SchedulerModelScheduler extends JModel {
var $scheduler_log = false;
var $scheduler_debug = false;
Hi.
I’m sorry, I made a mistake.
It looks like you have cross-domain problem.
Try to open file components/com_scheduler/codebase/dhtmlxSchedulerConfigurator.php and modify it like here:
...
public function schedulerInit($usertype, $locale, $url, $loader_url) {
// $url = $this->replaceHostInURL($url);
// $loader_url = $this->replaceHostInURL($loader_url);
$settings = $this->settings;
...
You should just find this lines (lines 547 - 550) and add double back-slashes before two of them.