`
yl.fighter
  • 浏览: 258518 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
安装GIT, 及初始化配置连接GITHUB 参照:http://help.github.com/linux-set-up-git/ 以及 http://help.github.com/win-set-up-git/   1.  安装完成GIT后运行Git Bash(Windows用户)2.  创建新的ssh keys    a) $ ssh-keygen -t rsa -C "your_email@youremail.com" ,  b) 输入你的passphrase(密码), 注:此密码并非是你的github密码,可以自己创建 c) 记录ssh keys的存 ...

PHP 读写 CSV

    博客分类:
  • PHP
1. 读取csv数据, 输出到sales.csv文件中 $sales = array( array('Northeast', '2004-01-01', '2004-02-01', 12.54), array('Northwest', '2004-01-01', '2004-02-01', 546.33), array('Southeast', '2004-01-01', '2004-02-01', 93.26), array('Southwest', '2004-01-01', '2004-02-01', 945.21), array('All Regions', '--- ...
摘自: http://www.enet.com.cn/article/2011/0303/A20110303833892.shtml 1.下载软件  操作系统ubuntu:http://www.ubuntu.com/desktop/get-ubuntu/download  系统引导软件EasyBCD:http://neosmart.net/dl.php?id=1  2.设置NeoGrub启动项  1)ubuntu下载文件放在d:/system/ubuntu-10.10-desktop-i386.iso,并将iso中的casper目录下的vmlinuz和 initrd.lz解压到C盘根目录 ...
出现的问题: 1. 安装 /opt/eclipse/android-sdk-linux/platform-tools/adb: error while loading shared libraries:libncurses.so.5: wrong ELF class: ELFCLASS64 解决方案: apt-get install ia32-libs 2. Eclipse不能安装adt插件 打开eclipse: windows->preferences->Install/Update->Av ...
摘自: http://hi.baidu.com/leixiaojunxj/blog/item/32a429942ee2c00bd21b70b6.html 平时都用root用户登录测试服务器,今天使用个人普通用户leixj登录后想通过su切换到root,在使用su时,结果提示“密码不正确” : [leixj@lanpay ~]$ su - root 口令: su: 密码 ...
摘自: http://holy2010.blog.51cto.com/1086044/353101 在 Redhat 上面使用編譯的方式安裝 Apache 後,將 bin/apachectl 複製到 /etc/rc.d/init.d/ 目錄,並想用 chkconfig 將 Apache 設定成自動啟動,但出現了 "service httpd does not support chkconfig"。 解決方法是開解 /etc/rc.d/init.d/httpd (或 /etc/init.d/httpd),在第二行加入以下兩句: # chkconfig: 2345 10 90 ...
解决方法:编辑[代码仓库目录下]/conf/svnserve.conf 1. 将[anon-access]的值设置为[none]。如下: [general] ### These options control access to the repository for unauthenticated ### and authenticated users.  Valid values are "write", "read", ### and "none".  The sample settings below are the defaul ...

SVN 自动发布

实现过程,是使用了svn的一个hook的功能,我们调用了 post-commit 来做一些当提交完成后的操作。 1. 在版本库的hooks目录下面,有一些基于事件触发的执行脚本,比如post-commit, 去掉后缀.tmpl 2. 编辑svn代码库服务器上文件: svn/test/hooks/post-commit #!/bin/sh REPOS="$1" REV="$2" export PATH="/usr/local/svn/bin:$PATH"  #由于代码是apache的进程用户www运行,所以需要设置环境变量 ex ...
#!/bin/bash # chkconfig: - 60 50 #description:vsftpd #conf:/etc/vsftpd/vsftp.conf #cp vsftpd /etc/init.d/vsftpd #chmod 755 /etc/init.d/vsftpd #chkconfig --add vsftpd #chkconfig vsftpd on if [ -f /etc/init.d/functions ] then . /etc/init.d/functions eli ...
[list] 预先加载数据库操作类和Session类 即在autoload.php中,$autoload['libraries'] = array('database', 'session'); a. 注: 使用session , 要设定 encryption key : config.php中:  $config['encryption_key'] = '!@#$%^&*()'; 登录表单页(view) : login_view.php 注: 由于该页面使用了CI的form标签, 所以需要在渲染该页面前加载form_helper, 即: 在config/autoload.ph ...

XSS

    博客分类:
  • PHP
XSS又叫CSS (Cross Site Script) ,跨站脚本攻击。它指的是恶意攻击者往Web页面里插入恶意html代码,当用户浏览该页之时,嵌入其中Web里面的html代码会被执行,从而达到恶意攻击用户的特殊目的。XSS属于被动式的攻击,因为其被动且不好利用,所以许多人常忽略其危害性。 CI中配置XSS 过滤 在配置文件config.php中   $config['global_xss_filtering'] = true;
1. 在config/目录下添加 email.php类 $config['protocol'] = 'smtp'; $config['smtp_host'] = 'ssl://smtp.gmail.com'; $config['charset'] = 'utf-8'; $config['smtp_port'] = 465; $config['smtp_user'] = 'yl.fighter@gmail.com'; $config['smtp_pass'] = '*************'; $config['smtp_timeout'] = '5'; $confi ...
cURL官网:http://curl.haxx.se/download.html   以下方法在ubuntu下没有尝试成功,sudo apt-get install php5,找不到下文所谓php源码目录安装在哪里。 后来发现sudo apt-get install php5-curl即可安装php cURL扩展。以下文章以后再研究 今天又重新装了一 ...
转自http://koda.iteye.com/blog/665761 这里用的是第一个(memcache),安装过程如下:  环境: CenOS5.2已经安装好了php5.2.13(在/usr/local/php).  1. 下载解压缩  从http://pecl.php.net/get/memcache-3.0.6.tgz 下载beta版(最新版)包并解压缩  tar vxzf memcache-3.0.4.tgz  cd memcache-3.0.4  2. 执行/usr/local/bin/phpize  显示  Configuring for:  PHP Api Version:  ...
首先要下载三个软件(下载地址是我提供的,里面有不同的压缩版本),分别是 libmcrypt-2.5.8.tar.gz 下载地址: http://sourceforge.net/project/showfiles.php?group_id=87941&package_id=91774&release_id=487459 mhash-0.9.9.tar.gz 下载地址: http://sourceforge.net/project/showfiles.php?group_id=4286&package_id=4300&release_id=645636 mcrypt- ...
Global site tag (gtag.js) - Google Analytics