程序出现异常
Warning: file_exists(): open_basedir restriction in effect. File(/home/wwwroot/www.1232.caches/install.check) is not within the allowed path(s): (/home/wwwroot/www.1232.com:/tmp/:/var/tmp/:/proc/) in /home/wwwroot/www.1232.com/install/index.php on line 229缓存文件无法执行,open_basedir 如何配置?
[ 本帖最后由 anqingww 于 2016-9-8 12:32 编辑 ] https://lnmp.org/faq/lnmp-vhost-add-howto.html#user.ini
程序出现异常
报错:file_put_contents(/home/wwwroot/1232.com/web/): failed to open stream: Is a directoryFile coreframe->/app/tags/libs/class/html_tags.class.php
程序出错:
private function createhtml($file)
{
$data = ob_get_contents();
ob_clean();
$dir = dirname($file);
if(!is_dir($dir))
{
mkdir($dir, 0777,1);
}
$strlen = file_put_contents($file, $data);
@chmod($file,0777);
if(!is_writable($file))
{
$file = str_replace(WWW_ROOT,'',$file);
MSG(L('file').':'.$file.'<br>'.L('not_writable'));
}
return $strlen;
}
前面的问题已解决,,现在又出现这个问题,请军哥指点一下是哪里配置问题! 能先看看错误信息不,这明显是你php写的有问题,file_put_contents 写入的得是文件,目录能写入吗
页:
[1]