我已将一个站点移至另一个虚拟主机。当我在 localhost 上测试时一切正常,但是当我在线尝试时,我收到以下信息:
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);
我能做些什么来避免这种情况?