Thanks for the help Tammy but that just changes the title of the link. I'm trying to change the true URL link from mysite.com/oxwall/join.php to something like mysite.com/signup-now.php I want to change the URL...bots look for join.php pages in searches and attach that site. So I've been reading in a few forums how to prevent bots from attacking your site. This is one of the 1st things to do....change your "JOIN.php" page to something a bit harder for bots to find.
Wilson
Yes ma’am, that was the place to find it. Here’s the code for others the change to whatever they like too. I tested it and it registered the new user just fine after the change.
Look in /system plugin/ base/ init.php
before change:
$router->addRoute(new OW_Route('base_join', 'join', 'BASE_CTRL_Join', 'index'))
after change:
$router->addRoute(new OW_Route('base_join', 'join-now', 'BASE_CTRL_Join', 'index'))
Now when you click onto “Sign Up” it will now say in the address bar…mysite.com/join-now instead of saying mysite.com/join
I think this did what I was trying to do but I’ll have to wait and see if bots keep attacking….Thanks Tammy for the help! Need to buy you a beer found…lol
Wilson
$router->addRoute(new OW_Route('base_join', 'example', 'BASE_CTRL_Join', 'index'))
but register button gos only to /join ...
Cache delete ...
any ideas ?