あるサイトを別の Web ホスティングに移動しました。ローカルホストでテストするとすべて正常に動作しますが、オンラインで試すと次のように表示されます。
curl_setopt() [<a href='function.curl-setopt'>function.curl-setopt</a>]:
CURLOPT_FOLLOWLOCATION cannot be activated when safe_mode is enabled or
an open_basedir is set
TCPDF で PDF ファイルを生成しようとすると (7542 行でエラーが発生します)
7534 if ($imsize === FALSE) {
7535 if (function_exists('curl_init')) {
7536 // try to get remote file data using cURL
7537 $cs = curl_init(); // curl session
7538 curl_setopt($cs, CURLOPT_URL, $file);
7539 curl_setopt($cs, CURLOPT_BINARYTRANSFER, true);
7540 curl_setopt($cs, CURLOPT_FAILONERROR, true);
7541 curl_setopt($cs, CURLOPT_RETURNTRANSFER, true);
7542 curl_setopt($cs, CURLOPT_FOLLOWLOCATION, true);
これを回避するにはどうすればよいですか?