View Single Post
  #8 (permalink)  
Old 10-10-2006, 07:36 PM
Yankidank's Avatar
Yankidank Yankidank is offline
Pligg Founder
 
Join Date: Dec 2005
Location: Ocala, FL
Posts: 1,931
Thanks: 114
Thanked 189 Times in 134 Posts
Send a message via AIM to Yankidank Send a message via Skype™ to Yankidank
Quote:
Originally Posted by jitgos View Post
...if the registration page link is still available to anyone then you would have that issue of someone just going directly to the page.
I'm not 100% sure if this is all that's needed, but a simple way to fix this is to rename register.php (ex. newregister.php) and make some changes in libs/html1.php.

Find:
PHP Code:
$main_smarty->assign('URL_register'getmyurl("register")); 
Replace with:
PHP Code:
$main_smarty->assign('URL_newregister'getmyurl("newregister")); 
Then you will need to change a line of code in /templates/templatename/register_step_1.tpl and /templates/templatename/register_step_2.tpl
PHP Code:
{$URL_register
to
PHP Code:
{$URL_newregister
__________________
Need a Pligg Host?
Get 3 free months
when you buy a year of hosting.
Use the coupon PLIGG at either...
MidPhase hosting starting at $7.95/month.
ANhosting hosting starting as low as $4.95/month.
Reply With Quote