douhui4831 2011-09-05 11:57
浏览 30
已采纳

从蛋糕PHP站点访问Wordpress会话

This is quite difficulty for me. Please help. I've a website created with cake PHP in root domain (say mysite.com) and a blog in a directory called "blog" (mysite.com/blog). I have a register/login feature in PHP site. So what I want here is, whenever a member login in the main site using the login form, whenever he open the blog (mysite.com/blog), he shoulb be as logged in as the same user logged in the main PHP site. In the same way, whenever a new user sign-up with the registration form in the main PHP site, he should become an user in the wordpress blog.

Thanks.

  • 写回答

2条回答 默认 最新

  • 普通网友 2011-09-05 14:58
    关注

    In your main site, you have to include WP's functions by using wp_signon

    define('WP_USE_THEMES', false); //this disables the theme
    require('/blog/wp-blog-header.php'); //includes wordpress functions
    

    And then, you can auto-login a user in WP by using

    $credentials = array();
    $credentials['user_login'] = 'example';
    $credentials['user_password'] = 'plaintextpw';
    $credentials['remember'] = true;
    $user = wp_signon( $creds, false );
    if ( is_wp_error($user) ) {
    //login failed
    echo $user->get_error_message();
    }
    

    This should work fine, I hope this helps you.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 路易威登官网 里边的参数逆向
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程
  • ¥20 模型在y分布之外的数据上预测能力不好如何解决
  • ¥15 processing提取音乐节奏
  • ¥15 gg加速器加速游戏时,提示不是x86架构
  • ¥15 python按要求编写程序
  • ¥15 Python输入字符串转化为列表排序具体见图,严格按照输入
  • ¥20 XP系统在重新启动后进不去桌面,一直黑屏。