Windows8下打开VMware虚拟机提示:the VMware Authorization Service is not running,意思是VMware Authorization这个服务没有运行,但是我们在系统服务中找不到这个服务,其实这个问题,只需要右键VMware的快捷方式,选择以管理员身份运行即可,为了方便下次直接运行,可以右键快捷方式选择属性,在高级里勾选以管理员身份运行,下次直接双击运行就不会再报上述错误了。
织梦dedecms打开页面报错:php.ini register_globals must is Off!
解决方法:
打开include文件夹下面的common.inc.php文件,删除10行开始到20行之间的内容即可解决。
//开启register_globals会有诸多不安全可能性,因此强制要求关闭register_globals
if ( ini_get(‘register_globals’) )
{
exit(‘php.ini register_globals must is Off! ‘);
}
//禁止 session.auto_start
if ( ini_get(’session.auto_star...
网站流量被Unknown robot (identified by 'spider')占用了好几个G,这个蜘蛛也没有任何标示,我很奇怪这个蜘蛛为什么会占这么大的流量,类似的蜘蛛还有Unknown robot (identified by 'bot*'),Unknown robot (identified by empty user agent string),不知道这个是不是某些网站监控程序导致的,解决方法可以暂时通过主机禁止这个ip访问,或者robots.txt禁止相应的蜘蛛访问。
Discuz!论坛打开纵横搜索后帖子无法打开,出现Fatal error: Call to undefined function dintval() in /home/oswhy.com/public_html/data/template/1_cloudsearch_module.tpl.php on line 85的错误。
解决方法如下:
打开source\plugin\cloudsearch\template\module.htm文件查找 $get_reltid = dintval($_GET[reltid])代替为 $get_reltid = intval($_GET[reltid])
Discuz!安装了最新的20120628的补丁后,出现帖子页面无法打开,报错Fatal error: Call to undefined function dintval() in data/template/1_cloudsearch_module.tpl.php on line 85 解决方法:修改source/plugin/cloudsearch/template/module.htm 的 $get_reltid = dintval($_GET[reltid]);改成$get_reltid = intval($_GET[reltid]); 即可。