11 lines
313 B
PHP
11 lines
313 B
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
ini_set('display_errors', '1');
|
|
ini_set('log_errors', '1');
|
|
ini_set('error_log', '/tmp/cb-err.log');
|
|
@unlink('/tmp/cb-err.log');
|
|
$_GET['key'] = 'msr-2026-reset';
|
|
include '/var/www/html/telegram-cb.php';
|
|
echo "\n===LOG===\n";
|
|
echo @file_get_contents('/tmp/cb-err.log') ?: '(no log)';
|