diff --git a/connect_class_dom.php b/connect_class_dom.php
index c732c3e15439b9d0f3e2d918dbdc1a3cabdd7eec..b9d31c4eab6fe022d905747e7963ef02259a9907 100644
--- a/connect_class_dom.php
+++ b/connect_class_dom.php
@@ -8,7 +8,7 @@
  */
 
 
-require_once('connect_class.php');
+require_once($CFG->dirroot . '/mod/adobeconnect/connect_class.php');
 
 class connect_class_dom extends connect_class {
 
diff --git a/lib.php b/lib.php
index 5e6a05a6436fc180965376a9a5fdde29a485d1d2..280b268c51a8c1d346f6c820ea0482e91d9756cb 100644
--- a/lib.php
+++ b/lib.php
@@ -6,7 +6,7 @@
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
-require_once('locallib.php');
+require_once($CFG->dirroot . '/mod/adobeconnect/locallib.php');
 
 /**
  * Library of functions and constants for module adobeconnect
diff --git a/locallib.php b/locallib.php
index d0f3bbea942aa25497084057f6efd404f908eec6..7f124dfcd81103a55c24fd2ad7b5721a8e066ccc 100644
--- a/locallib.php
+++ b/locallib.php
@@ -7,8 +7,8 @@
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
-require_once('connect_class.php');
-require_once('connect_class_dom.php');
+require_once($CFG->dirroot . '/mod/adobeconnect/connect_class.php');
+require_once($CFG->dirroot . '/mod/adobeconnect/connect_class_dom.php');
 
 define('ADOBE_VIEW_ROLE', 'view');
 define('ADOBE_HOST_ROLE', 'host');
diff --git a/participants.php b/participants.php
index efb8626212ea17da7db9a39329d2ebaf5040d5dc..026bbeea8e4c6bee3069fd48a7174f02fe0dc2d5 100644
--- a/participants.php
+++ b/participants.php
@@ -24,7 +24,7 @@
 
 require_once(dirname(__FILE__) . '/../../config.php');
 require_once($CFG->dirroot . '/' . $CFG->admin . '/roles/lib.php');
-require_once('locallib.php');
+require_once($CFG->dirroot . '/mod/adobeconnect/locallib.php');
 
 define("MAX_USERS_TO_LIST_PER_ROLE", 10);
 
diff --git a/version.php b/version.php
index 79519db45a170e6414c1dbf13baf8e0a00c33f94..7da6207b9bc4cd17c0dd141509fe8eff823291c5 100644
--- a/version.php
+++ b/version.php
@@ -7,7 +7,7 @@
  * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
-$plugin->version  = 2019092600;  // The current module version (Date: YYYYMMDDXX)
+$plugin->version  = 2019102500;  // The current module version (Date: YYYYMMDDXX)
 $plugin->requires  = 2014051212; // Requires this Moodle version
 $plugin->component = 'mod_adobeconnect';
 $plugin->cron     = 0;           // Period for cron to check this module (secs)