Bazı Resimler (CSS Problem?) Yük etmeyin

2 Cevap php

i dinamik aşağıdaki komut ile file_get_contents üzerinden bir web sitesi yüklenirken duyuyorum.

<?php 
header('Content-Type: text/html; charset=iso-8859-1');

$url = (substr($_GET['url'], 0, 7) == 'http://') ? $_GET['url'] : "http://{$_GET['url']}";
$base_url = explode('/', $url);
$base_url = (substr($url, 0, 7) == 'http://') ? $base_url[2] : $base_url[0];

if (file_get_contents($url) != false) {

$content = @file_get_contents($url);

// $search = array('@(<a\s*[^>]*href=[\'"]?(?![\'"]?http))@', '|(<img\s*[^>]*src=[\'"]?)|');
// $replace = array('\1proxy2.php?url=', '\1'.$url.'/');
// $new_content = preg_replace($search, $replace, $content);


function prepend_proxy($matches) {
   $url = (substr($_GET['url'], 0, 7) == 'http://') ? $_GET['url'] : "http://{$_GET['url']}";
    $prepend = $matches[2] ? $matches[2] : $url;
    $prepend = 'http://h899310.devhost.se/proxy/proxy2.php?url='. $prepend .'/';

    return $matches[1] . $prepend . $matches[3];
}

function imgprepend_proxy($matches2) {
   $url = (substr($_GET['url'], 0, 7) == 'http://') ? $_GET['url'] : "http://{$_GET['url']}";
    $prepend2 = $matches2[2] ? $matches2[2] : $url;
    $prepend2 = $prepend2 .'/';

    return $matches2[1] . $prepend2 . $matches2[3];
}


$new_content = preg_replace_callback(
    '|(href=[\'"]?)(https?://)?([^\'"\s]+[\'"]?)|i',
    'prepend_proxy',
    preg_replace_callback(
        '|(src=[\'"]?)(https?://)?([^\'"\s]+[\'"]?)|i',
        'imgprepend_proxy',
        $content
    )
);

echo "<base href='http://{$base_url}' />";
echo $new_content;


} else {

  echo "Sidan kan inte visas";

}
?>

Şimdi sorun bazı fotoğraflar internet sitelerinde görünmüyor olmasıdır. Örneğin bu siteleri kim CSS bağlantıları var. Bu bence bir CSS sorundur.

Ne demek istediğimi görmek için buraya komut test edebilirsiniz:

http://h899310.devhost.se/proxy/index.html

Bunu nasıl düzeltebilirim?

2 Cevap

Bu URL değiştirme yöntemlerinden biri Slash çok ekleme olduğu görülüyor. Proxy sağlayan sayfalardan birini ziyaret edin ve birkaç URL'leri ile başlayan göreceksiniz:

http:///www.msdn.com

Msdn.com yükleme Örneğin alın; proxy'd Sayfanın kaynak koduna bakarken, biz (ağaç öne eğik unutmayın) CSS URL'sini görmek için CSS, yük olmayacak:

http://h899310.devhost.se/proxy/proxy2.php?url=http:///i3.msdn.microsoft.com/global/global-bn20090721.css

URL'yi görüntülerken doğrudan file_get_contents URL yüklemek olamayacağını gösteren komut bir uyarı bildirmektedir:

Warning: file_get_contents(http:///i3.msdn.microsoft.com/global/global-bn20090721.css) [function.file-get-contents]: failed to open stream: No error in D:\users\u190790\h899310.devhost.se\Wwwroot\proxy\proxy2.php on line 9
Sidan kan inte visas

Kısaca kodu bakmak, bu sorunu $prepend ile görünüyor; bunun yerine bu gibi görünmelidir:

<?php
$prepend = $matches2[2] ? $matches2[2] : $url . '/';
$prepend = $prepend;
?>
header('Content-Type: text/html; charset=iso-8859-1');

Bu sadece metin görüntülemek için proxy setleri; css ve görüntüler proxy üzerinden yük (ya da en azından, düzgün görünmeyecektir) olmaz.