Making Spider Sense
Making Spider Sense
  • Видео 3
  • Просмотров 319 526
Conifer (formerly "Webrecorder.io"): Why Should A Web Developer Use It?
In this video, I talk about what Webrecorder.io is, how to use it, and why it might be useful for freelance web designers and developers. I've found this tool to be really useful, so I wanted to share it. Let me know in the comments if you want to see more videos where I talk about useful tools for web developers.
** Update June 25, 2020 **
This is now branded as Conifer by Rhizome with the updated URL below. Same company, different name.
conifer.rhizome.org/
--
Feel free to add me on LinkedIn. Just let me know you heard of me from RUclips in the message and I'll approve the request:
www.linkedin.com/in/benjamin-moran-a9097768
And like my Facebook page if ya feel up to it :)
makingsp...
Просмотров: 493

Видео

Integrate Google's Invisible reCAPTCHA (3 Simple Steps)
Просмотров 75 тыс.7 лет назад
This video demonstrates how to integrate Google's Invisible reCAPTCHA into your website with php in just a few easy steps. For the code used in this video, use the link below. Like and comment if you found this video useful! Steps: makingspidersense.com/tutorials/tut-invisible-recaptcha.txt Example: makingspidersense.com/tutorials/recaptcha-inv.txt (change the extension to .php) Note: If you ha...
Install Google reCAPTCHA 2.0 (3 Simple Steps)
Просмотров 244 тыс.8 лет назад
This video demonstrates how to install Google reCAPTCHA using php in just a few easy steps. For the code used in this video, use the link below. Like and comment if you found this video useful! Steps: makingspidersense.com/tutorials/tut-recaptcha.txt Example: makingspidersense.com/tutorials/recaptcha-v2.txt (change the extension to .php) Pro Tip: To make it work on just one page, look into usin...

Комментарии

  • @NeedyCatMedia
    @NeedyCatMedia 2 года назад

    Thank you for this video. My php form code was a bit different, but I was able to figure it out and make it work. Now my contact form is secure from the bots who were interacting with my form. Thanks again!

  • @Badrobot1500
    @Badrobot1500 2 года назад

    Great stuff. Worked like a charm.

  • @shssolutions
    @shssolutions 2 года назад

    Dear Sir, I tried to insert your re-captcha code from RUclips, but as soon as I insert the verification code (otherwise checking the captcha is useless), my form disappears !? I tried to insert in many locations without success, any idea why ? Many thanks Kenneth

  • @ererke3965
    @ererke3965 2 года назад

    Она будет довольна

  • @ererke3965
    @ererke3965 2 года назад

    Класс. Нужно Алёна жиленкова рассказать

  • @aamirali4600
    @aamirali4600 3 года назад

    so frustrating I keep getting 505 page cant handle request , I am following every step word by word

  • @bravehotsauce
    @bravehotsauce 3 года назад

    thanks a lot!

  • @leasiefallin9891
    @leasiefallin9891 3 года назад

    man NMY accounts un

  • @leasiefallin9891
    @leasiefallin9891 3 года назад

    about homepage it disappeared

  • @thtuskey
    @thtuskey 3 года назад

    How is the picture captcha implemented? I thought that was a flavor of 2.0.

  • @bennettd2501
    @bennettd2501 3 года назад

    Bout to roll the dice here on this tutorial, hope this shit works, looks solid

  • @stavilavictor7608
    @stavilavictor7608 3 года назад

    Thank you mannnnnnnnnnnnnnn, i love youuu

  • @quicksilver6825
    @quicksilver6825 3 года назад

    Making Spider Sense Is that a way i can get in contact with you directly? I know it's been a few years since this video was released, but I'm encountering a very simple problem and I need a little help with this. If it won't disturb you too much, i really need your help. Thanks in advance.

    • @makingspidersense
      @makingspidersense 3 года назад

      Hey, you can reach out to me through the contact form on my website, makingspidersense.com. Please describe your problem in detail and I'll get back to you when I get a chance.

  • @jeanniezukav7837
    @jeanniezukav7837 3 года назад

    What do I do if my contact form is already a working form set up in php, including an auto thank you response to the client, and of course an email to me? How do I integrate reCAPTCHA?

  • @rafaelfernandesmotta
    @rafaelfernandesmotta 3 года назад

    nice thx for sharing

  • @kaerio610
    @kaerio610 3 года назад

    Can You Make A Video On How To BYPASS it Client-Side Non-GUI preferably using Python? great video !!

  • @proteus324
    @proteus324 3 года назад

    Works like a charm. Thanks!

  • @brianfrost748
    @brianfrost748 3 года назад

    Protect this man at all cost! Great tutorial!

  • @BharathKumar-jn2tz
    @BharathKumar-jn2tz 3 года назад

    Sir, looks like you are posting whole page. In case if I want to do it on Ajax. How can I use ?

  • @robertjb6543
    @robertjb6543 3 года назад

    The one MAIN thing Sir your NOT checking for is what if someone leaves a field empty but they still check the ReCaptcha? What error are they going to get or will the ReCaptcha still work?

    • @makingspidersense
      @makingspidersense 3 года назад

      That kind of validation is outside of the scope of this video - that is not the purpose of reCaptcha. But to do so, you would need to add conditional statements for each required field to test if they are empty, and if they are, you can echo an error in PHP informing the user to fill out the required fields. A shortcut would be to just add the "required" attribute to the input, but if you go that route, you need to keep in mind that the user can remove that attribute if they know how to use the inspector tool. You might even want to use both HTML and PHP validation.

    • @robertjb6543
      @robertjb6543 3 года назад

      @@makingspidersense I must first apologize. I love web programming, web design and web development. This feature reCaptcha is a new one on me to use in Web Forms. I'm just trying to figure out how to use it along with validating using PHP in my code. Is there not a code for reCaptcha to where once you clicked on the check box for the reCaptcha, that pop up comes up automatically?

    • @makingspidersense
      @makingspidersense 3 года назад

      @@robertjb6543 reCaptcha is to protect your form against bots so your are not getting spam submissions. It doesn't check to see if form fields are empty since you may want to allow the user to leave certain fields empty if you consider them optional. If you want to learn how to check if a *required* form field is empty, search for tutorials on PHP form validation - there are many out there.

  • @zylascope
    @zylascope 3 года назад

    Thanks for that. It work for me.

  • @AamilahVilchez
    @AamilahVilchez 3 года назад

    im getting error code. ERROR for site owner: Invalid site key

  • @jarometanga341
    @jarometanga341 3 года назад

    Does that mean your verified for everything

  • @jarometanga341
    @jarometanga341 3 года назад

    Does that mean your verified for everything

  • @arielucko
    @arielucko 3 года назад

    Thanks a lot for your kindly Help and Blessings for your Life mate!

  • @raekc4839
    @raekc4839 3 года назад

    I don't understand whey all the code writing appears on the screen.

  • @JMLRecording
    @JMLRecording 3 года назад

    How well does this tutorial still hold up in 2021? Thanks ~

  • @fatsonot181
    @fatsonot181 4 года назад

    If form action is kept as recaptcha-v2.php as given in your ready file, then how will the email go? I have CGI script that I'm using. Please help if you can.

  • @jeremyminnick
    @jeremyminnick 4 года назад

    Super helpful. Thank you for putting this together.

  • @russellyap552
    @russellyap552 4 года назад

    really helpful, thank you

  • @Kirkhouse1
    @Kirkhouse1 4 года назад

    Excellent tutorial, thanks for this :)

  • @bertarends3452
    @bertarends3452 4 года назад

    Helped me a lot. Thanks !!

  • @rfollett01
    @rfollett01 4 года назад

    will this also work with v3 do you know?

  • @winstonvelden4454
    @winstonvelden4454 4 года назад

    where to put step 3 on your server?

  • @Samstuckymusic
    @Samstuckymusic 4 года назад

    Confused a bit. Where do you paste step 3? And where do you change something to .php?

  • @bilalomar7446
    @bilalomar7446 4 года назад

    THANK YOU for tutorial but UNFORTUNATELY , it didn't work with me

  • @tammyjowinters9623
    @tammyjowinters9623 4 года назад

    Okay I know I should be able to do this but please help... Where do I put the code? } // Call the function post_captcha $res = post_captcha($_POST['g-recaptcha-response']); if (!$res['success']) { // What happens when the CAPTCHA wasn't checked echo '<p>Please go back and make sure you check the security CAPTCHA box.</p><br>'; } else { I am trying to make sure the captcha is working every time someone fills out the form. The website I am working on is melbelin.com/EMailForm2.html Please email me at tammyjofrost@hotmail.com

  • @andresprommel3226
    @andresprommel3226 4 года назад

    hi, i work with frontend in react and backend with node . do you thing that i can validate token only in react without backend system ?

  • @sajid3160
    @sajid3160 4 года назад

    Thanks man it's still Really helpful 2020

  • @panzzpanzz2727
    @panzzpanzz2727 4 года назад

    Thanks man!

  • @salimhossain2192
    @salimhossain2192 4 года назад

    great tutorial dude :)

  • @stacynlj
    @stacynlj 4 года назад

    Currently in the process of troubleshooting issues with PHP with recaptcha; your video confirmed my installation is correct. Thank you!

  • @lthunt2073
    @lthunt2073 4 года назад

    I know I could cop some flack for bringing it up, but just to check, if I'm working with Wordpress for someone else's site, do you have some adjustments for each step on how to work with Wordpress' text editors rather than being able to see a whole file at once like in VScode? Contact Form 7 added Recapture to the whole site, so everytime someone jumps on the site, they get attacked by recapture even if they're just browsing the shop which I want to prevent. I reached step 3 (from the looks of it, you don't even need steps 1 and 2 if that code works??) but you can't make a contact form that is a php file...

    • @lthunt2073
      @lthunt2073 4 года назад

      Found out Contact Form 7 puts everything into a form tag, so I take it I'd have to make the page from scratch...

    • @makingspidersense
      @makingspidersense 4 года назад

      If you are coding for WordPress, you don't need to use their default text editor. You can still use your favorite text editor like VScode and then FTP your files to a child theme folder. This is what I do. You can actually create your own forms within custom PHP page templates or custom blocks for the editor. However, if you are using WordPress, it might just be easier to use a form plugin like Contact Form 7 or Ninja Forms. I believe you can integrate reCaptcha with these forms without having to do any coding. You'll still need to take the steps to generate the private and public keys though.

    • @lthunt2073
      @lthunt2073 4 года назад

      @@makingspidersense Thanks for that. I've integrated reCAPTCHA into Contact Form 7 and it's challenging my new users on every page, even if they're not submitting a form. I tried setting up reCAPTCHA to be "most comfortable for the user" but it's still very intrusive, even when set to "invisible" and the user lands on the homepage which doesn't contain any forms. Thanks for letting me know about using FTP though! ;-)

  • @pietrosirignano3631
    @pietrosirignano3631 4 года назад

    Ok, grazie

  • @pietrosirignano3631
    @pietrosirignano3631 4 года назад

    Ci provo,anche,se non sono addetti ai lavori.grazie comunque

  • @fog152
    @fog152 4 года назад

    Thanks for noting about reChaptcha 2.0, I also prefer it !

  • @jackcollazo
    @jackcollazo 4 года назад

    The only problem I'm having is when the Captcha box is checked and the form submitted, it doesn't take me to the success message. I only get the error message ... any help would be appreciated.

  • @tediz6595
    @tediz6595 4 года назад

    Great tutorial, what if you are using a host like Godaddy etc, and your form is located in a contact.html file and it calls a mail.php form to process the info and send it: 1) Where would you place the JS code? 2) How can you hide the private keys and public keys from your HTML page? Thanks!

  • @MrSilverTrumpet
    @MrSilverTrumpet 4 года назад

    I cannot seem to make this work. This is the message I continue to receive, "The requested URL was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request." I have saved my file as an html and a php and I get the same results. I have tried to run it as a single page and also as two separate pages like you originally designed and I get the same thing over and over. What I'm I doing wrong.

  • @Golfparexcellence18-4-U
    @Golfparexcellence18-4-U 5 лет назад

    Most helpful, but where can I find the code to cut and paste, please?