我有一个包含用户表的数据库,其中包含以下字段:id name email password status我的用户通过提供电子邮件和密码登录.我已经安装了一个有mysite.com/news路径的博客.我想要的是,如果某个用户在我的网站中注册,它...
我有一个包含用户表的数据库,其中包含以下字段:
id
name
email
password
status
我的用户通过提供电子邮件和密码登录.我已经安装了一个有mysite.com/news路径的博客.
我想要的是,如果某个用户在我的网站中注册,它应该在我的wordpress数据库中自动添加一行.我想获取我的用户表的所有记录并存储在wordpress用户表中.此外,如果有人登录我的网站,它应该在他们访问博客时登录.
解决方法:
为何重复这些信息?您还必须采取措施在两个数据库之间获得一致的用户管理.
我建议使用现有数据库作为WordPress的身份验证源,使用此插件:http://wordpress.org/extend/plugins/external-database-authentication/
更新:
要允许用户登录到WordPress,请在您的网站上登录时设置WordPress身份验证cookie.您可以通过包含所需的最低WordPress代码并调用wp_setcookie()函数来完成此操作.
// include the wordpress files necessary to run its functions
include('../classpages/wp-config.php'); // this includes wp-settings.php, which includes wp-db.php, which makes the database connection
include(ABSPATH . WPINC . '/pluggable-functions.php');
// use wordpress's function to create the login cookies
// this creates a cookie for the username and another for the hashed password, which wordpress reauthenticates each time we call its wp_get_current_user() function
wp_setcookie($user_login, $user_pass, false, '', '', $cookieuser);
从Using wordpress login functions开始
本文标题为:php – 将wordpress身份验证与现有用户数据库集成
基础教程推荐
- PbootCMS网站标题描述等标签限制字数的办法 2023-07-08
- dedecms织梦全局变量调用方法总结 2023-07-08
- 织梦DedeCMS搜索指定多个栏目文档的办法 2022-11-11
- pbootcms二次开发必须要了解的后台目录结构 2023-07-09
- dedecms织梦无需登录注册可下单购买的修改 2022-11-04
- pbootcms网站自动清理runtime缓存方法 2023-07-09
- 织梦dedecms如何在dede:sql中使用[field:global.autoindex/] 2022-08-27
- dedecms织梦cms常用判断语句汇总 2022-06-24
- dedecms根据来访IP区域自动跳转对应页面的方法 2022-07-21
- 织梦dedecms调用当前栏目文章数的方法 2022-11-08