kristain

博客园 首页 新随笔 联系 订阅 管理

文章分类 -  PHP

摘要:转自:http://lusongsong.com/reed/79.html1:网页挂马的种类.目前流行的网站被黑,是在相应的asp,htm,js等文件中,插入以js调用方式的。更详细的资料,请点击查看挂马代码大全。卢松松以前做过的‘极品源码下载站’就遇到过JS挂马‘校园闹翻天论坛’就遇到用户提权,利... 阅读全文
posted @ 2014-08-16 12:07 kristain 阅读(511) 评论(0) 推荐(0) 编辑

摘要:在CentOS编译PHP5的时候有时会遇到以下的一些错误信息,基本上都可以通过yum安装相应的库来解决。以下是具体的一些解决办法:checking for BZip2 support… yes checking for BZip2 in default path… not found configu... 阅读全文
posted @ 2014-06-26 01:14 kristain 阅读(7898) 评论(0) 推荐(1) 编辑

摘要:利用站长工具的http状态查询工具查询可以看到类似如下的一段http HEAD信息X-Pingback:http://www.kristain.com/wordpress真实路径/xmlrpc.php其实这样就已经暴露了wordpress网站的真实路径了,那么如何来隐藏wordpress默认http... 阅读全文
posted @ 2014-06-03 10:30 kristain 阅读(650) 评论(0) 推荐(0) 编辑

摘要:mod_rewrite是Apache的一个非常强大的功能,它可以实现伪静态页面。下面我详细说说它的使用方法!对初学者很有用的哦!1.检测Apache是否支持mod_rewrite通过php提供的phpinfo()函数查看环境配置,通过Ctrl+F查找到“Loaded Modules”,其中列出了所有apache2handler已经开启的模块,如果里面包括“mod_rewrite”,则已经支持,不再需要继续设置。如果没有开启“mod_rewrite”,则打开目录 您的apache安装目录“/apache/conf/” 下的 httpd.conf 文件,通过Ctrl+F查找到“LoadModule 阅读全文
posted @ 2013-11-26 00:05 kristain 阅读(246) 评论(0) 推荐(0) 编辑

摘要:1php5.4下安装的时候处理问题,StrictStandards:Non-staticmethodcls_image::gd_version()shouldnotbecalledstaticallyin\install\includes\lib_installer.phponline31 解决:找到install/includes/lib_installer.php中的第31行returncls_image::gd_version();然后在找到include/cls_image.php中的678行,发现gd_version()方法未声明静态static,所以会出错。这时候只要: 将fu.. 阅读全文
posted @ 2013-11-14 13:28 kristain 阅读(6636) 评论(2) 推荐(1) 编辑

摘要:有三种解决办法:1. php文件中设置时区 2. 设置php.ini data.timezone = "Asia/Shanghai"3. 设置date_timezone.ini date.timezone = "Asia/Shanghai"如果使用zend server ,在 Server Setup -> Directives -> date.timezone 设置成Asia/Shanghai 。然后点击Save Changes, Restart PHP对应的时区参考:timezones 阅读全文
posted @ 2013-09-13 23:46 kristain 阅读(138) 评论(0) 推荐(0) 编辑

摘要:如果mysql连接出现Warning: mysqli_connect() [function.mysqli-connect]: [2002] No such file or directory (trying to connect via unix:///var/mysql/mysql.sock) in xxx.php on line 14查看mysql.sock的位置,一般处于ls /var/mysqlls /tmp默认位于 /var/mysqlsudo vi /etc/php.ini这里根据你的位置来设置,下面三处都要修改pdo_mysql.default_socket=/tmp/mysq 阅读全文
posted @ 2013-09-13 23:34 kristain 阅读(510) 评论(0) 推荐(0) 编辑

摘要:转自:http://blog.lixiphp.com/new-to-cakephp-install-config/#axzz2eYpR53T4一、什么是CakePHP?CakePHP是一个开源的PHP on rails的full-stack framework。最开始从Ruby On Rails框架里得到灵感。程序员可使用它来快速创建的Web应用程序。我们的首要目的是使你以一种预置的快速且不失灵活性的方式开展工作。二、安装、配置CakePHP1、httpd.conf 文件中的定义 Options Indexes MultiViews AllowOverride All Order allow, 阅读全文
posted @ 2013-09-12 09:47 kristain 阅读(390) 评论(0) 推荐(0) 编辑

摘要:准备安装软件: 1、httpd-2.2.22-win32-x86-openssl-0.9.8t.msi 2、mysql-5.1.28 3、php-5.2.6-win32.zip 4、zendoptimizer-3.3.0a-windows-i386.exe第一步:安装apache第二步:安装mysql第三步:解压php至C:\php-5.2.6 将PHP以模块方式加载到apache中去:在apache的httpd.conf中加入: #LoadModule vhost_alias_module modules/mod_vhost_alias.soLoadModule php5_... 阅读全文
posted @ 2012-12-15 00:03 kristain 阅读(163) 评论(0) 推荐(0) 编辑

摘要:显示或禁用php显示目录结构功能要禁止 Apache 显示目录结构列表,只需将 Option 中的 Indexes 去掉即可。比如我们看看一个目录的目录配置:<Directory "D:/Apa/blabla"> Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all</Directory>你只需要将上面红色代码中的 Indexes 去掉,就可以禁止 Apache 显示该目录结构。用户就不会看到该目录下的文件和子目录列表了。Indexes 的作 阅读全文
posted @ 2012-07-16 14:56 kristain 阅读(485) 评论(0) 推荐(0) 编辑