PdfContentByte pcb = pw.getDirectContent(); pcb.beginText(); pcb.setFontAndSize(bfChinese, 12); pcb.setTextMatrix(550...
分类:
其他好文 时间:
2015-04-04 10:34:48
阅读次数:
675
discuz 修改超级管理员密码 终极办法就是自己去修改数据库:
1.找到pre_ucenter_members表,获取salt字段的值
2.$pw = ''123456abc; //设置新密码
3.md5(md5($pw).$salt) //计算新密码加密后的字符串
4.把第三步的结果黏贴到数据库password字段
5.完成,新密码登入即可...
分类:
Web程序 时间:
2015-04-03 11:24:16
阅读次数:
116
[root@f6cc26a4a485 /]# passwd user1Changing password for user user1.New password:/usr/share/cracklib/pw_dict.pwd: No such file or directoryPWOpen: No ...
分类:
其他好文 时间:
2015-04-02 13:09:25
阅读次数:
223
利用程序SAPSHCUT.EXE 示例:sapshcut -type=Transaction -system=IDS -client=800 -user=barry -pw=123456 -language=E -command –maxgui 密码为明文 sapshcut -user=210TES...
分类:
其他好文 时间:
2015-03-13 18:25:37
阅读次数:
162
17.更新和删除数据更新: update table set columns = ‘value’ where ...mysql> update pw_price set price=10000 where uid=6;Query OK, 1 row affected (0.03 sec)Rows m...
分类:
数据库 时间:
2015-02-28 15:55:55
阅读次数:
193
16 插入 insert into table values()mysql> insert into pw_price values (5,5000,'cai');Query OK, 1 row affected (0.03 sec)mysql> select * from pw_price;\+-...
分类:
数据库 时间:
2015-02-28 12:42:52
阅读次数:
157
15.组合查询 unionmysql> select uid,first_name,price from pw_price where uid >2 union select uid,first_name,price from pw_price where price>=1000;+-----+--...
分类:
数据库 时间:
2015-02-28 11:22:30
阅读次数:
173
14.高级联结表 使用别名mysql> select uid as u,name as n,msg as m from pw_luck;+----+-----------+------+| u | n | m |+----+-----------+------+| 0 |...
分类:
数据库 时间:
2015-02-26 13:09:14
阅读次数:
240
12.子查询 子查询进行过滤mysql> select msg from pw_luck where name = 'wang5' -> ;+------+| msg |+------+| 1001 || 1000 || 1000 || 100 || 100 |+------+5 ro...
分类:
数据库 时间:
2015-02-15 18:05:11
阅读次数:
284