Бляяяя
Я заслушивался в 2008, опенингом из Гинтамы оказывается.
Приятно, услышать знакомое mp3.
Начал выполнять, обещание.
Приятно, услышать знакомое mp3.
Начал выполнять, обещание.
<img src="{cfg name='path.root.engine_lib'}/external/kcaptcha/index.php?{$_sPhpSessionName}={$_sPhpSessionId}" onclick="this.src='{cfg name='path.root.engine_lib'}/external/kcaptcha/index.php?{$_sPhpSessionName}={$_sPhpSessionId}&n='+Math.random();" />
<p><input type="text" name="captcha" value="" maxlength="3" class="input-100" /></p>
<script type="text/javascript" src="http://api.recaptcha.net/challenge?k=ЗДЕСЬ_ВАШ_Public_Key">
</script><noscript>Включите JavaScript или обновите ваш браузер!</noscript>
<script type="text/javascript">
var RecaptchaOptions = {
custom_translations : {
instructions_visual : "Введите два слова:",
instructions_audio : "Введите что вы слышите",
play_again : "Включить заново",
cant_hear_this : "Скачать в формате MP3",
visual_challenge : "Визуальный режим",
audio_challenge : "Режим аудио",
refresh_btn : "Обновить",
help_btn : "Помощь",
incorrect_try_again : "Неверно. Пожалуйста, попробуйте еще раз.",
},
lang : 'ru', // Unavailable while writing this code (just for audio challenge)
theme : 'white' // Make sure there is no trailing ',' at the end of the RecaptchaOptions dictionary
};
</script>
require_once ($_SERVER['DOCUMENT_ROOT']."/engine/lib/external/recaptcha/recaptchalib.php");
if (!isset($_SESSION['captcha_keystring']) or $_SESSION['captcha_keystring']!=strtolower(getRequest('captcha'))) {
$this->Message_AddError($this->Lang_Get('registration_captcha_error'),$this->Lang_Get('error'));
$bError=true;
$resp = null;
if (array_key_exists('recaptcha_response_field',$_POST)){
$resp = recaptcha_check_answer ('ЗДЕСЬ_ВАШ_Private_Key',$_SERVER["REMOTE_ADDR"],$_POST["recaptcha_challenge_field"],$_POST["recaptcha_response_field"]);}
if ($resp==null or !$resp->is_valid){
$this->Message_AddError($this->Lang_Get('registration_captcha_error'),$this->Lang_Get('error'));
$bError=true;
}