01-04-2017, 12:41 PM
Ahh. Ok. So don't use $_SERVER[‘DOCUMENT_ROOT’] on your include or figure out where that is pointing you.
The quickest thing to do is to change the line
to
See if that fixes it.
The quickest thing to do is to change the line
Code:
require_once $_SERVER[‘DOCUMENT_ROOT’].’/cc/users/init.php’;
Code:
require_once 'http://mydomain.com/users/init.php';
See if that fixes it.