Jump to content

coldpll

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by coldpll

  1. On 5/26/2018 at 1:10 AM, Nabeel said:

    Don't worry about the gitignore file. Can you change your local/app.config.php files, the error reporting lines... change them to remove E_WARNING from them. Maybe there's some other kind of error. If that doesn't show anything, PM me.

    ok. Thank you! 

  2. 10 hours ago, Nabeel said:

    Nothing needs to be changed in there. Did you copy the files that are in src to the core/lib/recaptcha directory, or did you put the src directory in there? Does the recaptcha show up on the page? Did you remember to add the require_once in the core/bootstrap.inc.php file?

    And did you register on the recaptcha site and get your key/secret and enter those into your local.config.php file?

    Thank you! yes of course I did everything according to the instructions. But there is the question - .gitignore? I found only a text (.txt) file with this name - it's not at all clear what it is for.

     reCAPTCHA can be seen on the site and it works, but the registration after does not work. Simply throws and offers again to register

  3. 21 hours ago, Nabeel said:

    But does it work? I wouldn't trust Dreamweaver, it's super old, and if it's giving you an error on that line, it means it doesn't know how to interpret namespaces. Use something like Atom or Visual Studio Code with PHP plugins.

    Thanks, but in any case does not work, even if I keep so. After the registration of errors does not issue - but registration does not pass!

    I do everything according to the instructions.

    in files (recaptcha-1.1.3\src....) nothing needs to be changed?

  4. On 5/14/2018 at 11:05 PM, Nabeel said:

    These instructions should work

    https://gist.github.com/nabeelio/6380e05dbb8ce8c53765f0068f6515e3

    Note: Make sure to make the changes in the skin you're currently using.

    HI! 

    the program Adobe Dreamweaver shows an error in this line -  $recaptcha = new \ReCaptcha\ReCaptcha(Config::Get('RECAPTCHA_PRIVATE_KEY'));

    here is my entry:

    protected function VerifyData()
        {
            $error = false;
            
            $recaptcha = new \ReCaptcha\ReCaptcha(Config::Get('RECAPTCHA_PRIVATE_KEY'));
            $resp = $recaptcha->verify($_POST['g-recaptcha-response'], $_SERVER['REMOTE_ADDR']);
            if(!$resp->isSuccess())
             {
                $error = true;
                $this->set('captcha_error', $resp->error);
            } else {
              $this->set('captcha_error', '');
            }

×
×
  • Create New...