• You need to check the following line of code in cdn-enabler.php

    /* Check & Quit */
    defined(‘ABSPATH’) OR exit;

    it should be

    if (!defined(‘ABSPATH’)) die(‘No direct access allowed’);

    You’ve left out the exclamation mark

  • The topic ‘Error in your plugin’ is closed to new replies.