Files
2026-08-15 00:28:08 +07:00

8 lines
399 B
PHP

<?php
$p1 = '/var/www/lib/routeros_api.class.php';
$p2 = '/var/www/html/lib/routeros_api.class.php';
echo "p1 exists: " . (file_exists($p1) ? 'YES' : 'NO') . "\n";
echo "p2 exists: " . (file_exists($p2) ? 'YES' : 'NO') . "\n";
$r = @file_get_contents('https://api.telegram.org/bot5115036608:AAGeyXVq5eNvdAkaCQHU9NfH16uAAiSKiuk/getMe');
echo "telegram getMe: " . substr($r ?: 'FAIL', 0, 120) . "\n";