I get the following errors at a DT Register "List of Events" menu item:
Warning: require_once(libraries/src/Pagination/Pagination.php): failed to open stream: No such file or directory in administrator/components/com_dtregister/lib/dtpagination.php on line 14
Fatal error: require_once(): Failed opening required 'libraries/src/Pagination/Pagination.php' (include_path='.:/usr/local/share/pear56') in administrator/components/com_dtregister/lib/dtpagination.php on line 14
That's with error reporting enabled. With error reporting disabled, the page outputs only the following:
[script type="text/javascript"]
if(typeof DTjQuery != 'undefined') {
DTjQuery.extend(
DTjQuery.validator.messages, {
required: "This field is required.",
remote: "Please fix this field.",
email: "Please enter a valid email address",
url: "Please enter a valid URL.",
date: "Please enter a valid date.",
dateISO: "Please enter a valid date (ISO).",
number: "Please enter a valid number.",
digits: "Please enter only digits.",
creditcard: "The credit card number is invalid.",
equalTo: "The email addresses entered do not match.",
accept: "Please enter a value with a valid extension.",
maxlength: DTjQuery.validator.format("Please enter no more than {0} characters."),
minlength: DTjQuery.validator.format("Please enter at least {0} characters."),
rangelength: DTjQuery.validator.format("Please enter a value between {0} and {1} characters long."),
range: DTjQuery.validator.format("Please enter a value between {0} and {1}."),
max: DTjQuery.validator.format("Please enter a value less than or equal to {0}."),
min: DTjQuery.validator.format("Please enter a value greater than or equal to {0}.")
}
);
}
[/script]
<div class="btn-toolbar" role="toolbar" aria-label="Toolbar" id="toolbar">
</div>
<div style='clear:both;'></div>
(I modified the script tags to use brackets since they aren't allowed here.)
Which results in a blank page.
My setup has:
PHP 5.6
Joomla 3.7.4
DT Register 3.2.6.1
I noticed this error after upgrading from DT Register 3.2.4 to 3.2.6.1.
What can I do to fix this error?