• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

PHPExcel中open_basedir restriction in effect的解决方法

php 搞代码 4年前 (2022-01-23) 27次浏览 已收录 0个评论

用PHPExcel做导出execl的时候发现在本地没有问题,但是把网站传到租用的服务器的时候就报错,具体如下:

Warning: realpath() [function.realpath]: open_basedir restriction <span>in</span> effect. File(/tmp) <span>is</span> not within the allowed path(s): (/data/home:/usr/home:/data/home/tmp:/usr/home/tmp:/<span>var</span>/www/disablesite) <span>in</span> /data/home/【服务器名称】/htdocs/【项目地址】/Classes/PHPExcel/Shared/File.php on line <span>136</span><span>找到对应的File.php的136行,只是sys_get_temp_dir方法的最后一行,查阅网上的方法直接把该方法给替换掉就好了。  </span>

代码如下:

<span>public static function sys_get_temp_dir()<br />{<br />if</span> (ini_get(<span>'</span><span>upload_tmp_dir</span><span>'</span>)!==<span>false</span><span>)           {              </span><span>if</span>($tem<strong>2本文来源gaodaima#com搞(代@码$网6</strong><pre>搞gaodaima代码

p = ini_get(upload_tmp_dir)) { if (file_exists($temp)) { return realpath($temp); } } } if ( !function_exists(sys_get_temp_dir)) { if ($temp = getenv(TMP)) { if (file_exists($temp)) { return realpath($temp); } if (($temp!=) && file_exists($temp)) { return realpath($temp); } } if ($temp = getenv(TEMP)) { if (file_exists($temp)) { return realpath($temp); } } }
}

以上就介绍了PHPExcel中open_basedir restriction in effect的解决方法,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:PHPExcel中open_basedir restriction in effect的解决方法
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址