###########################################################################
## MySQL CLuster 配置文件
## 带有[!]的注释表示该参数有详细说明,建议参考官方描述.
## 带有[!!]的注释表示设置该参数时应该详细阅读官方描述.
## SCI 连接方式的配置请详细阅读官方描述.
...
分类:
数据库 时间:
2014-06-05 05:15:57
阅读次数:
362
第一次使用session,需要:
$this->load->library('session');
的同时,还需要修改配置文件:config.php 找到 $config['encryption_key'] = ‘’
将$config['encryption_key'] 的内容随便设置,就可以用了。
附录:
1.添加session内容:
$this->session->set_us...
分类:
其他好文 时间:
2014-06-05 01:18:12
阅读次数:
201
在对Android进行编译时,用的ji,使用图形界面来对整个系统进行裁剪。当然,除了这条指令,还包括很多配置命令,比如make defconfig, make oldconfig等。这里主要就make menuconfig的执行过程进行解析。...
分类:
移动开发 时间:
2014-06-05 00:12:54
阅读次数:
371
git提交代码时,出现这个错误“error: The requested URL returned error: 403 Forbidden while accessing https”
解决方法:
编辑.git目录下的config文件即可。
vim .git/config
#修改对于的配置
#原来的url = https://github.com/elitecodegr...
分类:
数据库 时间:
2014-06-03 00:03:44
阅读次数:
349
android 在log中提示TimeOut Error后,应用程序弹出application
errorthe connection to the server was unsuccessful
的错误的处理方法:第一步找到项目中res/xml目录下的config.xml,把你的外网的域名地址添加...
分类:
移动开发 时间:
2014-06-02 22:24:37
阅读次数:
361
系统优化脚本#!/bin/sh
user=alan
#shutdowniptables
chkconfigiptablesoff&&/etc/init.d/iptablesstop
#shutdownselinux
sed-i‘s/SELINUX=enforcing/SELINUX=disabled/g‘/etc/selinux/config
cat/etc/selinux/config
setenforce0
getenforce&&
#createause..
分类:
其他好文 时间:
2014-06-01 13:45:01
阅读次数:
292
如题
#define USE_AND_MASKS
#include
#include
#include
#include
#pragma config OSC = INTIO67 //internal oscillator
#pragma config WDT = OFF //watchdog timer off
#pragma config LVP = OFF...
分类:
其他好文 时间:
2014-06-01 11:16:04
阅读次数:
246
最近在做uboot中nand启动相关的工作,遇到一个问题一直纠结着。现在终于明白了这个问题,想想还有好多兄弟在某个黑暗的角落里或者某台电脑前纠结着呢,所以赶紧写下来以供查阅。
uboot version 2014.4
/* Architecture-specific global data */
struct arch_global_data {
#if defined(CONFIG_FS...
分类:
其他好文 时间:
2014-06-01 10:27:38
阅读次数:
314
1.找到 /libraries/config.default.php文件(config.default.php复制到phpmyadmin目录下,然后更名为config.inc.php),该文件有如下项目(2-8)须自行配置,windows用写字板(不要用记事本,这是UTF8编码)进行编辑,在linux下直接用vim编辑.
2.查找 $cfg['PmaAbsoluteUri'] 修改为你将上传到空间的phpMyAdmin的网址
如:$cfg['PmaAbsoluteUri'] = 'http://****...
分类:
Web程序 时间:
2014-06-01 02:08:36
阅读次数:
275
Phonegap 解决错误:Alert[ERROR]Error initializing
Cordova:Class not found发现bug后找原因网上说是 因为找不到 res/xml文件夹下的 config.xml
文件;但我有这个config.xml我想了一下 是不是因为没有找到指定的co...
分类:
移动开发 时间:
2014-05-31 20:21:27
阅读次数:
245