You could handle that one of 2 ways...either you could edit navigation.php (which could get written with updates), or the better way to do it would be to copy the default account page over to usersc/account.php, change the init to ../users/init.php at the top of that page. Then just below that, write a script to redirect people to the right place based on permissions just like you did for the other thing. In this situation, it would try to send them to the account.php but they would immediately be redirected. They won't even notice.
You could handle that one of 2 ways...either you could edit navigation.php (which could get written with updates), or the better way to do it would be to copy the default account page over to usersc/account.php, change the init to ../users/init.php at the top of that page. Then just below that, write a script to redirect people to the right place based on permissions just like you did for the other thing. In this situation, it would try to send them to the account.php but they would immediately be redirected. They won't even notice.
hm seems simpleenough i was tinkering with setting the navigation to redirect it to the custom script and it just sorta crashed lol ill try that second one out seems simpler in the end
Yeah. I do that on a lot of my apps. It works well and I don't even notice it.
that was super simple i like that lol so if i was to say abandon all your ready made pages i just copy that head code for the that i edited the require once part to any page i want i was debating about redoing the majority of the pages so i could add in iframes for the side fixed menu and top header
weird i get a redirect error for too many redirects for anything but admin ... werid
hah solved it lol probally not at all right but it stoped with the redirect to many times i added my admin redirect to the account page in users and it works just fine now strange
Yeah. It sounds like you were redirecting somewhere that the user did not have permission to go, so it was redirecting back.
trial and error is the best way to learn i think