05-20-2016, 12:06 PM
The redirect not working is easy and simply a documentation lacking on our part. init.php always needs to be "updated" to point to the correct path, since it is considered the anchor. Once the script knows where init.php is, then it can take over and a user can use $abs_us_root and/or $us_url_root as needed.
For a file placed in usersc/ you will need to update the init.php line to read:
That instructs it to step back one level (to your userspice root), then move to the users/ folder and finally find the init.php file. This should get you straightened out.
For a file placed in usersc/ you will need to update the init.php line to read:
Code:
<?php require_once '../users/init.php'; ?>
That instructs it to step back one level (to your userspice root), then move to the users/ folder and finally find the init.php file. This should get you straightened out.