API Request
URL: https://www.google.com/recaptcha/api/siteverify METHOD: POST
POST Parameter Description
secret Required. The shared key between your site and reCAPTCHA.
response Required. The user response token provided by the reCAPTCHA client-side integration on your site.
remoteip Optional. The user's IP address.
{
"success": true|false,
"challenge_ts": timestamp, // timestamp of the challenge load (ISO format yyyy-MM-dd'T'HH:mm:ssZZ)
"hostname": string, // the hostname of the site where the reCAPTCHA was solved
"error-codes": [...] // optional
}
Кто-то может подсказать, в какую сторону смотреть?
file_put_contents('my_log_file.log', 'Start log...'.PHP_EOL, FILE_APPEND);
$ext = File::getExt( $uploaded_file['name'] );
file_put_contents('my_log_file.log', 'Ext:'.$ext.PHP_EOL, FILE_APPEND);
$initial_name = 'upload/' . uniqid( '' ) . '.jpg';
file_put_contents('my_log_file.log', 'initial_name:'.$initial_name.PHP_EOL, FILE_APPEND);
$name = 'upload/' . sha1( $initial_name ) . '.jpg';
$path = UPLOAD_PATH . $name;
file_put_contents('my_log_file.log', 'path:'.$path.PHP_EOL, FILE_APPEND);
move_uploaded_file( $uploaded_file['tmp_name'], $path );
return $initial_name;
<?php
for($i=0;$i<20;$i++) {
echo uniqid(), PHP_EOL;
}
?>
Output:
5819f3ad1c0ce
5819f3ad1c0ce
5819f3ad1c0ce
5819f3ad1c0ce
5819f3ad1c0ce
5819f3ad1c0ce
5819f3ad1c0ce...
и Проверить получает ли что то сам файл code.php доходят ли до него значения, и работает ли функция отправки mail()