码迷,mamicode.com
首页 >  
搜索关键字:password    ( 12255个结果
Customizing and Overriding User Login page, Register, and Password Reset in Drupal 6 and 7
Customizing the user login, register, and password reset pages is fairly simple, and uses the following concepts:preprocessing to set variablesregistr...
分类:其他好文   时间:2014-05-19 21:32:08    阅读次数:487
Android -- SharedPreferences存储信息
背景 SharedPreferences我觉得是最容易上手的,以xml方式存储。代码 public class share { public static void saveInfo(Context context,String username,String password) { ...
分类:移动开发   时间:2014-05-18 00:35:54    阅读次数:360
Ubuntu下su:authentication failure的解决办法
$ su - rootPassword:su: Authentication failureSorry.这时候输入$ sudo passwd rootEnter new UNIX password:Retype new UNIX password:passwd: password updated s...
分类:其他好文   时间:2014-05-17 20:08:38    阅读次数:241
Thinkphp学习笔记------- RBAC
1.首先去extends扩展包里找到RBAC类2.复制里面创建四张表的SQL语句放到mysql里执行,得到四张表.3.需要自己创建一个user表,字段随意,一般是username password之类存储用户登录信息.4.RBAC一般就是六个方法:依次为-->用户列表 角色列表 节点列表 添加用.....
分类:Web程序   时间:2014-05-17 18:30:44    阅读次数:367
Oracle备份 还原命令
1、备份命令exp username/password file=d:/test/test.dmp;2、还原命令imp username/password full=y file=d:/test/test.dmp;
分类:数据库   时间:2014-05-16 05:39:25    阅读次数:355
RowMapper处理查询结果集
查询返回单个结果(一个值或一个类),以下例子是返回password,返回一个类与该方法类似,使用内部匿名类方式public boolean checkUser(User user) { String name = user.getUsername(); String pass = user.ge.....
分类:移动开发   时间:2014-05-15 21:36:12    阅读次数:476
html 前台通用表单
Document function validate() { if(loginform.username.value == ""){ alert("账号不能为空!"); return; } if(loginform.password.value == ""){ alert("密码不能为空!"); return; } loginform.submit...
分类:Web程序   时间:2014-05-15 18:39:01    阅读次数:501
quickFIX01 - initiator
一、首先到官网下载quickFIX源代码,编译连接,可以使用自带的某个例子作为框架进行修改 二、找到配置文件  * .cfg并打开, 修改文件中DataDictionary字段使其适应当前版本 三、如果要连接的Acceptor需要用户名密码将字段添加到配置文件中以便程序可以获取        UserName=name       Password=123       根据约定配置S...
分类:其他好文   时间:2014-05-15 04:14:57    阅读次数:494
struts2 结合extjs实现的一个登录实例
一、先搭建好struts2,可以通过myeclipse快速搭建。 二、再导入extjs所需的库文件。 三、写一个实体类User package com.ext.model; public class User { private Integer id; private String username; private String password; public Integer...
分类:Web程序   时间:2014-05-15 03:14:40    阅读次数:471
mysql安装完成后登入错误
ERROR1045(28000):Accessdeniedforuser‘root‘@‘localhost‘(usingpassword:YES)解决:1、先停止mysql服务,命令如下:#/etc/init.d/mysqlstop2、重新启动服务,命令如下:#/etc/init.d/mysqlstop#mysqld_safe--user=mysql--skip-grant-tables--skip-networking&3、登入mysql..
分类:数据库   时间:2014-05-14 16:36:13    阅读次数:368
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!