//重构XMLHttpRequestvar net = new Object(); //名字空間對象net.READY_STATE_UNINITIALIZED = 0;net.READY_STATE_LOADING = 1;net.READY_STATE_LOADED = 2;net.READY_....
分类:
其他好文 时间:
2014-07-09 13:57:08
阅读次数:
225
Eclipse从svn上迁出项目的时候报以下的错误:SVN: '0x0040010b: Obtain Project Name' operation finished with error: Selected SVN connector library is not available or can...
分类:
其他好文 时间:
2014-07-07 20:34:09
阅读次数:
1988
SELECT*FROMteradata_education.emp_fl;在做查询时碰到2652错误。SELECT Failed. 2652: Operation not allowed: Teradata_Education.emp_fl is being loaded.2652 Operatio...
分类:
其他好文 时间:
2014-07-07 16:27:52
阅读次数:
296
1.检测Apache是否支持mod_rewrite通过php提供的phpinfo()函数查看环境配置,通过Ctrl+F查找到“Loaded Modules”,其中列出了所有apache2handler已经开启的模块,如果里面包括“mod_rewrite”,则已经支持,不再需要继续设置。如果没有开启“...
分类:
Web程序 时间:
2014-06-28 14:57:15
阅读次数:
196
DOMContentLoadedThe DOMContentLoaded event is fired when the document has been completely loaded and parsed, without waiting for stylesheets, images, ...
分类:
其他好文 时间:
2014-06-27 00:35:05
阅读次数:
289
1、错误描述
usage: java org.apache.catalina.startup.Catalina [ -config {pathname} ] [ -nonaming ] { -help | start | stop }
2014-6-23 20:15:55 org.apache.catalina.core.AprLifecycleListener init
信息: Loaded...
分类:
Web程序 时间:
2014-06-24 18:34:48
阅读次数:
175
在使用cacti监控linux主机上的apache时,apache需要加载mod_status.so模块.编辑httpd.conf,手动添加下行:LoadModulestatus_modulemodules/mod_status.so在重启apache时报错如下:httpd:Syntaxerroronline58of/etc/httpd/httpd.conf:modulestatus_moduleisbuilt-inandcan‘tbel..
分类:
其他好文 时间:
2014-06-24 16:58:35
阅读次数:
5390
The list of colors used in LibreOffice has already been defined in “Options=>Colors”, which is loaded from the file /home/orlando/.config/libreoffice/...
分类:
其他好文 时间:
2014-06-24 13:58:41
阅读次数:
216
Libraries and frameworks are designated as Required by default, but you can change this designation to Optional.Required libraries must be present on ...
分类:
其他好文 时间:
2014-06-21 11:46:17
阅读次数:
199
/**
* 游览器友好输出
* 无线参数
*/
function dump() {
$data=func_get_args();
ob_start ();
foreach($data as $v){
var_dump ( $v );
}
$output = ob_get_clean ();
if (! extension_loaded ( 'xdebug' )) {
$o...
分类:
Web程序 时间:
2014-06-17 21:56:57
阅读次数:
322