AMH 社区首页
AMH社区 - 开放自由有价值的社区
[求助帖] 在线等!急!!!验证码不显示!!! |
|
---|---|
eoen |
eoen 发表于 2014-12-20 12:16:35
本帖最后由 eoen 于 2014-12-20 14:39 编辑
安装5.0后进行一系列插件安装,更改数据库密码;后来退出发现验证码不显示了!用phpmyadmin又进不了数据库! 不显示验证码:http://eoen.org/a.php
点赞,加油! (1分)
2014-12-20 12:16:35 1
|
7683002 |
空间满了?
回复
2014-12-21 19:30:03 2
|
eoen |
问题解决了!出现验证码不显示的原因是我修改了config.php后保存时产生了bom文件头;解决方案是把config.php文件另存为无bom的文件然后覆盖之前的文件!
回复
2014-12-22 09:42:45 3
|
liuzhangchan |
引用: 谢谢。。按照你的方法已经解决!! 找到这个文件夹里 /usr/local/amh-5.3/web 在里面新建一个文件保存为*.php的文件。写下如下代码 直接访问ip:888/*.php <?php /*清除bom*/ if(isset($_GET['dir'])){ $basedir=$_GET['dir']; }else{ $basedir = '.'; } $auto = 1; checkdir($basedir); function checkdir($basedir){ if($dh = opendir($basedir)){ while(($file = readdir($dh)) !== false){ if($file != '.' && $file != '..'){ if(!is_dir($basedir."/".$file)){ echo "filename: $basedir/$file ".checkBOM("$basedir/$file")." <br>"; }else{ $dirname = $basedir."/".$file; checkdir($dirname); } } }//end while closedir($dh); }//end if($dh }//end function function checkBOM($filename){ global $auto; $contents = file_get_contents($filename); $charset[1] = substr($contents, 0, 1); $charset[2] = substr($contents, 1, 1); $charset[3] = substr($contents, 2, 1); if(ord($charset[1]) == 239 && ord($charset[2]) == 187 && ord($charset[3]) == 191){ if($auto == 1){ $rest = substr($contents, 3); rewrite ($filename, $rest); return "<font color=red>BOM found, automatically removed.</font>"; }else{ return ("<font color=red>BOM found.</font>"); } } else return ("BOM Not Found."); }//end function function rewrite($filename, $data){ $filenum = fopen($filename, "w"); flock($filenum, LOCK_EX); fwrite($filenum, $data); fclose($filenum); } ?>
回复
2017-10-08 20:17:15 4
|
kint7669 |
很多页面验证码不显示基本可以锁定bom在作祟,
运行楼上的代码即可解决~
回复
2017-10-09 12:58:26 5
|
suwenyi12 |
请问为什么控制面板能打得开, 网站全打不开了,提示404 Not Found,重启后可以打开一次,过 几秒就不动了,完全卡死,但是控制面板正常
回复
2017-10-10 12:55:07 6
|
好买手 |
新增账号授权失败。
请勿滥用授权及账号。如需帮助请与我们联系。 为什么会这样?
回复
2017-10-10 16:21:25 7
|
kint7669 |
回复
2017-10-15 16:20:26 8
|
159912490369 |
交工单找管理处理
回复
2017-10-17 11:58:45 9
|