5

我正在研究 HTML2PS,它在旧服务器上运行良好,移到新服务器后停止工作。

我已经隔离了从服务器找不到我通过 CURL 访问的临时文件的问题,但是可以从其他位置(例如我的本地计算机)获取该文件

由于我可能会删除此链接,因此此 URL 在不久的将来可能无法使用。

http://www.lapchi.com/new/temp_curl.php5

链接代码如下

<form method="post">


<input type="text" name="url" value="http://www.lapchi.com/new/uploads/temp/html_pdf/503_S_b7ku0sbn1i8g8ll06ra1pth332.html" size="90" />
<input type="submit" value="go">
</form>
<?php


set_time_limit(8888);

if($_POST){
$url = $_POST['url'];
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL,$url ); // this file is physically exist on server
curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7) Gecko/20040803 Firefox/0.9.3");
curl_setopt($curl, CURLOPT_HEADER, 1);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

$response = curl_exec($curl);
if ($response === FALSE) {
    error_log(sprintf('Cannot open %s, CURL error is: %s',
            $url,
            curl_error($curl)));
    curl_close($curl);
    return null;
}

curl_close($curl);
preg_match('/^(.*?)\r\n\r\n(.*)$/s', $response, $matches);

$headers = array_slice(explode("\r\n", $matches[1]),1);
$content = $matches[2];


echo $content;

}

我不确定,为什么不能通过 CURL 找到同一服务器上的相同文件,但其他人可以 CURL 这个 url 而这个页面可以 curl 其他 url

4

3 回答 3

3

副本:

我可以向同一台服务器发出 CURL 请求吗?

卷曲应用程序服务器上已经存在的东西真的没有意义。

于 2013-08-21T10:56:55.740 回答
1

我会这样进行:

  1. 在外壳运行 curl http://www.lapchi.com/new/uploads/temp/html_pdf/503_S_b7ku0sbn1i8g8ll06ra1pth332.html
  2. 如果它不起作用,则您的 DNS 设置一定有问题
于 2013-08-21T10:55:10.077 回答
0

现在可以通过添加74.208.15.19 server.com www.server.com/etc/hosts 文件来解决它

于 2014-04-26T18:22:28.213 回答