Login     Sign up
Signup problem
Asmar Amjad (@asmar)
Join date: Oct 12th 2010
Community posts: 16
View Profile
Send Message

Hello,

I'm using the facebook like template on my website, and no one is able to signup using the forum present in homepage. Users can only signup through the signup url which is "mydomain.com/index.php?p=member/signup".

If they try to signup using the form on homepage, it again redirects them to the homepage.

What's the problem? Please help..

166 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

your server doesn't have mod_write installed and/or doesn't recognize the .htaccess file.

goto my/config.php search for this

[code]
//$ubase = $uhome.'/index.php?p=';
$ubase = $uhome.'/';
[/code]

and change into this

[code]
$ubase = $uhome.'/index.php?p=';
//$ubase = $uhome.'/';
[/code]

166 months ago