使用dvwa测试,安装了httpd MySQL php 发现 phpinfo 可以解析,但是dvwa的大部分php页显示不了,调试发现时数据库出错,所以显示不了,@错误抑制:不显示错误信息, 所以不会打印出错信息最后将php-mysql库安装好了 就行注意要配置php.ini文件,重启http服务。
分类:
Web程序 时间:
2014-07-19 21:01:14
阅读次数:
320
#!/usr/bin/python#-*-coding:utf-8-*-#-*-coding:utf-8-*-#filename:sendmail.pyimportsysimportsmtplibfromemail.mime.textimportMIMETextfromemail.headerimportHeaderfromemail.mime.multipartimportMIMEMultipartfromemailimportUtilsimportgetoptimportbase64smtp_server..
分类:
编程语言 时间:
2014-07-17 09:45:23
阅读次数:
245
在通过response导出文件数据的时候,不论是txt还是Excel,如果想让其文件名称为中文,解决方案:response.setCharacterEncoding("UTF-8");response.setContentType("application/txt");//“application/vnd.ms-excel”response.setHeader("Content-disposition","p_w_upload;fi..
分类:
其他好文 时间:
2014-07-17 09:21:52
阅读次数:
221
questionI am uploading images to jboss server by getting the absolute path using the following codegetServletContext().getRealPath("");The uploaded im...
分类:
数据库 时间:
2014-07-17 00:15:11
阅读次数:
429
一、上传操作html界面,upload.html 二、页面引用upload页面 三、点击提交 ...
分类:
Web程序 时间:
2014-07-16 19:17:35
阅读次数:
235
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Net.Mime; 6 using System.ComponentModel;....
分类:
其他好文 时间:
2014-07-16 18:35:35
阅读次数:
198
一、java获取web工程路径1),在servlet可以用一下方法取得: request.getRealPath(“/”) 例如:filepach = request.getRealPath(“/”) ”//upload//”; 2),不从jsp,或servlet中获取,只从普通java类中获取.....
分类:
编程语言 时间:
2014-07-16 13:37:16
阅读次数:
192
iOS中用系统提供的API能实现能实现文件的上传与下载,分别有两种方式。NSURLConnection与NSURLSession。
其中NSURLConnection是使用很久的的一种方式,NSURLSession是新出来的一种方式。
一、 POST方式上传
POST方式提交信息默认使用的是 :
*Content-Type:
application/x-www-form-u...
分类:
移动开发 时间:
2014-07-16 08:21:07
阅读次数:
414
CSS样式属性一、字体1.font-family:Tahoma,Arial,"Hiragino Sans GB";字体,第一种字体不能显示时,用第二种字体2.font-size:xx-small or 10px字体大小:绝对大小:xx-small、x-small、medium、large、x-la....
分类:
Web程序 时间:
2014-07-15 23:44:56
阅读次数:
647
文件上传框有时候,需要用户上传自己的文件,文件上传框看上去和其它 文本域差不多,只是它还包含了一个浏览按钮。访问者可以通 过输入需要上传的文件的路径或者点击浏览按钮选择需要上传 的文件。 代码格式:<input type=“file” name=“...” size=“15” input encty...
分类:
Web程序 时间:
2014-07-14 19:10:52
阅读次数:
294