Forums
(@cj_f)
9 years, 7 months ago
Figured it out. The autoloader was failing to find the file.
In cloudflare.loader.php I changed
require_once 'vendor/autoload.php';
to
require_once( dirname( __FILE__ ) . '/vendor/autoload.php');