Jump to content

Kieran

Members
  • Posts

    176
  • Joined

  • Last visited

Everything posted by Kieran

  1. Thanks for the reply, it seemed to address all of my questions! I have added the bug to the Tracker for further investigation. As for the captcha, I've managed to implement it into the form (it displays correctly) using the code: ---------------------------------------------- ?php require_once('recaptchalib.php'); $publickey = "<<my public key>>"; echo recaptcha_get_html($publickey); ?> ----------------------------------------------- reCaptcha reccommend using this validation script >> ------------------------------------------------ require_once('recaptchalib.php'); $privatekey = "..."; $resp = recaptcha_check_answer ($privatekey, $_SERVER["REMOTE_ADDR"], $_POST["recaptcha_challenge_field"], $_POST["recaptcha_response_field"]); if (!$resp->is_valid) { die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." . "(reCAPTCHA said: " . $resp->error . ")"); } -------------------------------------------------- How would I go about adding the validation to the registration process? Thanks
  2. Helllo all, Ive recently come accross phpVMS and I think it might be of great benefit to the VA that I belong to. In order to integrate it, though, I need to know a few things. I'd be very grateful if anybody could help. (I am a fully proficient php/mysql coder) 1. Regarding Pilot inactivity. Is there some sort of way to suspend users if they are inactive for a certain period of time? 2. Regarding the site structure. I notice that regitsration is located at index.php/registration. As a coder myself, I've never seen this method used. Where is it possible to edit the Registration PHP? 3. Adding a Recaptcha to the Registration form. Is this possible? The current Captcha seems a little insecure. 4. How do I add a forum. Will a php include in a page be the best thing for this? Oh and also, a bug: I cannot add custom textarea fields to the registration, they always come up as text for some reason. I've corrected this by editing the database row, but is anybody else experiencing this problem? Many thanks.
×
×
  • Create New...