- 积分
- 4
- 威望
-
- 金钱
-
- 注册时间
- 2016-7-2
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|

楼主 |
发表于 2016-9-8 20:03:41
|
显示全部楼层
程序出现异常
报错:file_put_contents(/home/wwwroot/1232.com/web/): failed to open stream: Is a directory
File 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;
}
前面的问题已解决,,现在又出现这个问题,请军哥指点一下是哪里配置问题! |
|