09-06-2017, 02:05 PM
I think it would be pretty painful to rename that folder. Overall, we've worked really hard to give people a clean place to build their project and get as much of the "userspice" out of the way, but that one's pretty difficult.
It's either going to require a big find/replace every time you do an upgrade
OR
There might be a way to redirect people using a .htaccess file.
What about just moving login, join, account.php and profile.php to a different folder? That's what your end users see. It's clunky, but the cleanest thing to do would be to create those filenames in usersc and do
It's either going to require a big find/replace every time you do an upgrade
OR
There might be a way to redirect people using a .htaccess file.
What about just moving login, join, account.php and profile.php to a different folder? That's what your end users see. It's clunky, but the cleanest thing to do would be to create those filenames in usersc and do
Code:
<?php require_once '../users/init.php';
Code:
Redirect::to("https://mydomain.com/login.php"); ?>