源码:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>匹配html中的meta charset - Zjmainstay</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="zh-CN" /> </head> <body> </body> </html>正则:
<meta[^>]*?charset=(["'/>]?)([^"'\s/>]+)\1[^>]*?>
本文提供jQuery监控图片加载是否完成的处理方法。
本文介绍一下K2 SWF标签云模块的开发,同时也算是Joomla模块开发的教程。
本文讲解常见Apache法启动常见原因与故障排查。
本文介绍如何利用jQuery弹窗插件nyroModal给文章中的图片添加弹窗预览效果。
刚刚应朋友需求试了一下curl获取四六级成绩查询结果,还真做出来了。现在在本站提供一个接口让你查询。 查询地址:四六级成绩查询
本文介绍如何通过Joomla的语言本地化覆盖功能,提供中文2个字即可搜索的解决方法。
Error displaying the error page: Application Instantiation Error调试与解决
2013年08月19日 04:57:03 作者: Zjmainstay本文介绍Joomla网站无法打开,提示
Error displaying the error page: Application Instantiation Error
错误的调试与解决方法。
magic_quotes_gpc=on导致Joomla无法安装问题解决:
在installation/model/setup.php
中修改
$option->state = (ini_get('magic_quotes_gpc') == false);
为$option->state=true;
即可。
magic_quotes_gpc=on导致Joomla数据存储失败问题解决:
使用本人专门针对此问题开发了一个插件plg_autostripslashes
,对提交数据过滤,便可修复了magic_quotes_gpc=on
导致Joomla数据存储失败问题!