Add Captcha for guest postings
Quote from Asgaros on April 1, 2020, 5:43 amHello @olpo
I am not exactly sure how your captcha-plugin works but can you tell me the content of the $error-variable when that issue occurs? You can output it with the print_r($error); function.
Hello @olpo
I am not exactly sure how your captcha-plugin works but can you tell me the content of the $error-variable when that issue occurs? You can output it with the print_r($error); function.
Quote from Asgaros on April 13, 2020, 10:45 amHallo @olpo
Direkt nach dem setzen:
$error = apply_filters( 'cptch_verify', true ); print_r($error);
Hallo @olpo
Direkt nach dem setzen:
$error = apply_filters( 'cptch_verify', true ); print_r($error);
Quote from Ole on April 14, 2020, 9:15 amHallo @asgaros
Danke, das wirft eine “error” am anfag des quelltextes.
Was fange ich jetzt mit dieser Information an? 😉
error<!DOCTYPE html> <html lang="de-DE"> <head>
Hallo @asgaros
Danke, das wirft eine “error” am anfag des quelltextes.
Was fange ich jetzt mit dieser Information an? 😉
error<!DOCTYPE html> <html lang="de-DE"> <head>
Quote from Asgaros on April 20, 2020, 3:40 amHallo @olpo
Sorry, im Code hatte sich ein Fehler eingeschlichen und die Variable war nicht richtig gesetzt – zu schnell getippt. Ich habe ihn angepasst und versuche es noch einmal! 🙂
Hallo @olpo
Sorry, im Code hatte sich ein Fehler eingeschlichen und die Variable war nicht richtig gesetzt – zu schnell getippt. Ich habe ihn angepasst und versuche es noch einmal! 🙂
Quote from Ole on April 24, 2020, 9:58 amHallo @asgaros,
danke.
Der Inhalt der Error-Variable ausgegeben mit print_r($error); ist:
Please enter correct captcha value.
Hallo @asgaros,
danke.
Der Inhalt der Error-Variable ausgegeben mit print_r($error); ist:
Please enter correct captcha value.
Quote from Asgaros on April 28, 2020, 3:47 amHallo @olpo
Dann scheint die Captcha-Validierung nicht korrekt zu funktionieren. Bist du sicher, dass sich das Captcha korrekt über den folgenden Aufruf validieren lässt?
$error = apply_filters( 'cptch_verify', true );
Hallo @olpo
Dann scheint die Captcha-Validierung nicht korrekt zu funktionieren. Bist du sicher, dass sich das Captcha korrekt über den folgenden Aufruf validieren lässt?
$error = apply_filters( 'cptch_verify', true );
Quote from Ole on April 28, 2020, 6:47 am@asgaros
Guten Morgen Thomas,
ich denke schon.
So sieht mein kompletter Einbau aus:// Captcha für Forum function editor_custom_content_bottom() { global $asgarosforum; if (!is_user_logged_in() && $asgarosforum->options['allow_guest_postings']) { echo apply_filters( 'cptch_display', '' ); } } add_action('asgarosforum_editor_custom_content_bottom', 'editor_custom_content_bottom'); function insert_custom_validation($status) { global $asgarosforum; if (!is_user_logged_in() && $asgarosforum->options['allow_guest_postings']) { $error = apply_filters( 'cptch_verify', true ); print_r($error); if ( true !== $error ) { $asgarosforum->info = __('You must enter the correct captcha.', 'asgaros-forum'); return false; } } return $status; } add_filter('asgarosforum_filter_insert_custom_validation', 'insert_custom_validation');
Guten Morgen Thomas,
ich denke schon.
So sieht mein kompletter Einbau aus:
// Captcha für Forum function editor_custom_content_bottom() { global $asgarosforum; if (!is_user_logged_in() && $asgarosforum->options['allow_guest_postings']) { echo apply_filters( 'cptch_display', '' ); } } add_action('asgarosforum_editor_custom_content_bottom', 'editor_custom_content_bottom'); function insert_custom_validation($status) { global $asgarosforum; if (!is_user_logged_in() && $asgarosforum->options['allow_guest_postings']) { $error = apply_filters( 'cptch_verify', true ); print_r($error); if ( true !== $error ) { $asgarosforum->info = __('You must enter the correct captcha.', 'asgaros-forum'); return false; } } return $status; } add_filter('asgarosforum_filter_insert_custom_validation', 'insert_custom_validation');