05-17-2017, 05:05 PM
The login page has a lot of includes that can be a bit tricky.
I would start by copying login.php to usersc/login.php
change line 25 to
Line 42 to
require_once '../users/includes/recaptcha.config.php';
And see if that works.
Eventually you'll want to fix the links to join and forgot password to be correct, but the key is to just get the form to work on its own first.
I would start by copying login.php to usersc/login.php
change line 25 to
Code:
<?php require_once '../users/init.php'; ?>
Line 42 to
require_once '../users/includes/recaptcha.config.php';
And see if that works.
Eventually you'll want to fix the links to join and forgot password to be correct, but the key is to just get the form to work on its own first.