02-25-2017, 04:53 PM
So a lot of the magic of UserSpice happens from the init.php file and therefore userspice can't magically locate that file on its own, so you need to have a direct link to it. So when you copy edit_profile.php to usersc instead of users you have to change that line at the top that says something like
require_once('init.php');
to
require_once('../users/init.php');
In other words, you have to tell it to back up one directory to the root, then go forward into the users folder and get init.php
require_once('init.php');
to
require_once('../users/init.php');
In other words, you have to tell it to back up one directory to the root, then go forward into the users folder and get init.php