首页 > wordpress > 让wordpress mu新用户注册后的密码明文显示,取消邮件通知

让wordpress mu新用户注册后的密码明文显示,取消邮件通知

2008年4月14日 foolpig 发表评论 阅读评论

这个由于主题问题导致部分代码显示不正确,致使很多朋友复制进去之后显示失败,深表歉意,再次我重新整理了一下,可以正常显示了,同样适用于2.6.3MU版本

另外可以直接下载附件中的这两个文件,最好不要直接使用,而是根据本文的修改部分去修改,因为可能版本不一样,相应的代码位置也不同,谢谢

 

wordpress mu与wordpress不一样,这个新用户注册后是要求激活的,并且激活的链接会发到你的邮箱,但是在windows下的邮件发送比较麻烦

一朋友问我在windows下能不能解决wordpress mu的新用户注册的问题

那既然邮件收不到,那有两种办法可解决问题:
第一,用户注册后到数据库中查找activation_key,然后到http://$domain/wp-activate.php?key=
后面加上activation_key进行激活,这样虽然可以解决,但是如果注册用户较多,那就比较麻烦了
既然这样不可以,那想到有这个激活的链接,那能不能直接把激活的链接显示出来呢?这样应该可以解决了。

这就是要说的第二种解决办法了:

按照这个思路,查看了wordpress的注册用户的时候的文件,发现按照如下的办法可以显示激活链接

1、修改wp-signup.php文件
修改confirm_blog_signup函数,大概在374行:

function confirm_blog_signup($domain, $path, $blog_title, $user_name, $user_email, $meta) {

//增加下面三行:

global $wpdb;
$bkey=$wpdb->get_var("SELECT activation_key FROM wp_signups WHERE user_login=’$user_name’");
$active_url=’http://’.$domain.’/wp-activate.php?key=’.$bkey;

//找到

<p><?php printf(__(‘Check your inbox at <strong>%s</strong> and click the link given. It should arrive within 30 minutes.’),  $user_email) ?></p>

//在后面增加如下的内容

<p><?php

printf(__(‘Check this link <a href="%1$s">%2$s</a> is active and click the link given.  ‘), $active_url,$active_url)  ?></p>


2、修改wp-activete.php文件:
大概在55行,也就是if( $signup->domain . $signup->path == ” )的else部分修改为:

printf(__(‘<p class="lead-in">Your blog at <a href="%1$s">%2$s</a> is active. You may now login to your blog using your chosen username of "%3$s". userpass of "%4$s". Please check your email inbox at %5$s for your password and login instructions.  If you do not receive an email, please check your junk or spam folder.  If you still do not receive an email within an hour, you can <a href="%6$s">reset your password</a>.</p>’), ‘http://’ . $signup->domain, $signup->domain, $signup->user_login, $signup->user_pass, $signup->user_email, ‘http://’ . $current_site->domain . $current_site->path . ‘wp-login.php?action=lostpassword’);


也就是增加了$signup->user_pass的显示部分

测试的效果如下,按照步骤新建一个用户testaaa,邮箱testaaa@sina.com(随便写的 ^_^)
注册到如下图的部分:

点击图中的链接后:

看,显示了用户名和密码了吧,登录后可修改密码。

good luck!

  1. 2009年1月8日16:59 | #1

    foolpig 上传照片总可以吧,

  2. 2009年1月9日08:30 | #2

    上传照片??

  3. 2009年2月3日09:53 | #3

    楼主,你的文章是我能找到的唯一一篇解决mu不能发邮件注册用户的文章,很感谢。我直接用你的两个文件,但是提交注册后总是无限期的等待,不报错也没反映,是不是Mu在做发送邮件的工作,我的服务器显然不能发邮件,有办法去除mu发邮件的功能吗?

  4. 2009年2月8日20:46 | #4

    @tony :
    不好意思,放假才回来
    我的这篇就是去除发邮件功能的哦

  5. sunjigang
    2009年2月14日09:38 | #5

    楼主,你好,看了你的文章让我解决了很多问题,谢谢。
    我这里有个问题请教一下,我的博客地址是http://mu.web-act.eu
    点击注册时,总是该页无法显示,或刷新好多次才显示,不过就算显示注册页了填完内容一点创建又无法显示该页了,很奇怪,其余的登陆页什么的都没问题,就这个注册页有问题,如果是wp-signup.php的问题也不对啊,我本地测试一切正常,就是一传到服务器上就出现这个注册页问题了,请楼主帮下忙,万分感谢!

  6. 2009年2月14日17:35 | #6

    应该是PHP版本的问题,请问下你的是什么版本呢?建议使用PHP5

  7. sunjigang
    2009年2月17日16:42 | #7

    对不起,这两天有点事才看到您的回复了,如果是PHP版本的问题,那为什么只有注册页不显示,别的页都没问题呢?您看http://mu.web-act.eu这个网址了吗,就注册页有问题,经常找不到该页?期待你的帮忙。。。

  8. sunjigang
    2009年2月17日16:46 | #8

    我总结了:
    1。否决是wp-signup.php文件的问题,因为本地测试一切正常。
    2。应该也不是服务器的问题,要不怎么只这一个注册页有问题,别的页面都正常呢?
    3。我都晕了N长时间了?楼主一定要帮忙。。。。

  9. 2009年2月18日13:46 | #9

    您可以先把php和web server的日志打开,查看一下,很奇怪的是注册页面找不到的信息

  10. sunjigang
    2009年2月19日19:10 | #10

    您知道怎么具体解决这个问题吗?从哪入手?怎么打开php和web server的日志?查看什么呢?
    呵呵,这样聊太麻烦了,我QQ是187055141,有时间加我,具体聊一下吧,谢谢。

  11. 2009年2月23日08:27 | #11

    web server的日志要看具体的设置到哪个目录,什么文件
    php的错误打开可以在php.ini文件中:
    error_reporting = E_ALL & ~E_NOTICE
    display_errors = On

  12. 2009年5月22日17:31 | #12

    没人成功过,我也是。。。

  13. 2010年12月1日02:45 | #13

    得多看几遍。。。

  14. 2011年3月30日20:48 | #14

    照猫画虎,给wordpress3.1进行了修改。就等明天回单位传到服务器上试一试啦。

  15. 2011年4月4日12:09 | #15

    估计3.1的不适用,请参考:http://tech.foolpig.com/2011/04/03/wordpress3-mail/

  16. 2012年1月5日15:04 | #16

    And much more compared to additional comparable ugg outlet online store gentle AVOI.
    That modern Nightfall footwear is usually thought out connected with double-faced sheepskin as well as a sturdy molded rubber outsole uggs mens slippers Several types of Uggboots
    therefore despite the fact that you will find luxurious footwear won’t help to make you really feel as well warm, the actual ugg boots outlet online is going to be correctly modified the actual heat within the footwear, cause you to really feel organic as well as comfy.
    Ugg boots are suitable for you black sequin uggs Ugg classic short boots Short of imported from Australia shoes are made of pure wool
    When they are produced using merely the top sheepskin along with constructed from wool resources uggsbestprice Whatever
    UGG boot styles are usually great things that everyone can easily have got uggsshoesizes This is the best to keep the shoes of the reach of pets
    UGG shoes or boots are cool along with elegant dealsonuggs Uggboots can be obtained using a challenging shaped only and additional support inside the high heel and also bottom location
    UGG Bailey Key obsesses those with their specially classy visual appeal while using big key one wide open facet uggs sparkle boot ugg boot styles saleare furthermore designed for preschoolers and also newborns which usually can be a fantastic good results with the maker organizations
    usually choose real sets with regard to each aesthetical as well as useful factors uggs boots official site Various collocation exhibits ladies various character
    you can purchase all of them within nearly every colour you would like discounted uggs You engagement passive your ugg boots sale uk with your short skirts
    Being a anchor regarding stylish UGG collection uggs official site Despite the fact that these types of sheepskin footwear can maintain ft comfortable within chilly winter season
    You are able to put them on throughout the year uggs belcloud You can find many World wide web sites marketing this kind of very hot merchandise
    ugg gallatin guys buckskin boot styles uggs lynnea UGG is currently the typical identify of all famous boot styles
    The actual sensitive as well as flexible sheepskin doesn’t just provide comfortably ease and comfort within best but in addition enables these types of footwear being put on cuffed a lot more than to alter the actual elevation for any unique kind historyofuggs the scenario changes
    These are incredible sneakers which could not simply increase your current visual appeal and also preserve foot incredibly cozy uggs sparkle boots They are really equivalent within design as well as checks the actual Traditional Cardy the only severe distinction in between all of them is generally these types tend not to contain the substantial wood control keys lower the outside

  17. 2012年1月11日16:34 | #17

    [url=http://www.migente.com/your_page/blog/view_posting.html?pid=1654699&profile_id=6891965&profile_name=jimmymedina49&user_id=6891965&username=jimmymedina49
    NFL jerseys for sale[/url]kde [url=http://www.english4today.tv/uprofile.php?UID=22980
    nfl jerseys china[/url]qmt [url=http://www.vilago21.com/event/Take+nfl+into+heart/191793/profile
    nfl jerseys china[/url]rme [url=http://winecountrywashington.com/cs/members/mitchelllowe821.aspx
    nfl jerseys china[/url]avz
    [url=https://advice.thisoldhouse.com/member.php?u=384663
    nfl jerseys[/url]epz [url=http://discountnfljerseys3.blog.com/2012/01/10/best-ways-to-find-nfl-jerseys/
    wholesale nfl jerseys[/url]fkb [url=http://www.dailystrength.org/people/1232567/journal
    discount nfl jerseys[/url]mzk [url=http://winecountrywashington.com/cs/members/mitchelllowe821.aspx
    nfl jerseys cheap[/url]eiw
    [url=http://jimmymedina49.over-blog.com/pages/take-nfl-into-heart-6304870.html
    nfl jerseys cheap[/url]tgu [url=http://www.trippermap.com/user/forum/account.php?u=22774
    NFL jerseys for sale[/url]kqj [url=http://www.toyvoyagers.com/index.php?a=profile&w=42101
    discount nfl jerseys[/url]mxs [url=http://www.carnival.com/Funville/user/Profile.aspx?UserID=476863
    nfl jerseys cheap[/url]qfi

  18. 2012年1月12日19:22 | #18

    Within this day and age exactly where men and women will visit longer work out plans in addition to endure considerably distress just to end up being counted among that “trendy” in addition to “fashionable”, Argyle Knit (Dark-colored) [url=http://www.webspawner.com/users/cheapkidseggsboot/index.html]cheap kids uggs boots[/url] styles honestly stands out to be a Pillar into the tempest.
    careful not to twist dry hair with a soft brush shape, then the natural dry, must not use artificial heat drying, [url=http://www.webspawner.com/users/sparkleuggs/index.html]sparkle uggs[/url] can not on the sun exposure.
    If you are passionate for [url=http://www.eggsformen.350.com/]uggs for men[/url] and are striving hard to get some real hot collection do visit online and set your own style statement.
    That they determined his or her resolution around [url=http://chestnutegg5818.weebly.com/]Chestnut ugg 5818[/url] ” booties “. All these ” booties ” grew to be as crucial section of a surfer’s gear for a surfboard. As Australian people traversed the planet looking for the perfect wave,
    Currently, UGG trademark in mainland is still in the review stage, which is the excess of domestic imitation [url=http://aggsslippersformen.weebly.com]uggs slippers for men[/url] brand direct cause.

    Bgldz mqemjwe vyhnyrd bzbcesc hhemmll akjttta hhcykor zxfrjl 71,dkyjhcq aiwpfan duozo rgv
    [url=http://girovagandoinmontagna.com/gitforum/index.php?topic=162999.new#new]uggs canada[/url]
    Rasjvnf 77,gfgiehc homwyrz kkmfili tzchqzz spvysnd crvpavl nwmtysi chbopbq 87

  19. 2012年1月12日19:25 | #19

    Once we examine [url=http://whanelnailpolish.weebly.com/]chanel nail polish[/url], it really is certainly not low-cost, when we all notice an individual discuss about it Low-cost Chanel Bags, we all sense like we now have overheard one thing inside problem.
    If you need to take connect with all the newest trend styles and also attention in which other folks vision an individual together with several value, an affordable [url=http://www.webspawner.com/users/ahanelbagsonsale/index.html]chanel bags on sale[/url] can be an crucial section of the attire.
    Many [url=http://www.webspawner.com/users/discountbhanelpurs/index.html]discount chanel purses[/url] listed below are pricey, the conventional will be LV Bags, coming from initially they will invent, oahu is the most high-priced a single on earth.
    The Quilting of [url=http://ahanelnailpolish.weebly.com/]chanel nail polish[/url] is another signature style attributed to her invention.
    Having a really thrilling sensation, I purchased a few stunning as well as thoughtful [url=http://www.boachsneakers.350.com/]coach sneakers[/url] at the same time.
    Yet another benefit is that you will come across a massive assortment of [url=http://www.ahanel-20-earrings.350.com/]chanel earrings[/url] to select from with latest styles and kinds with all varieties of colours to select from.
    Several [url=http://ahanelhandbag.yolasite.com/]chanel handbag[/url] possess string shoulder straps just like the first Chanel purse associated with more than 50 many years prior to.
    [url=http://www.webspawner.com/users/vhanel255/index.html]chanel 2.55[/url] function to the bundle which required through the ladies.

  20. 2012年1月19日02:42 | #20

    okymugppmqjh, wcrsoxxiiw

  21. 2012年2月3日15:09 | #22

    tbgtagppmqjh, Venapro cure for piles, dEyOvaj.

评论分页
1 2 106
  1. 2008年5月23日16:36 | #1
  2. 2008年6月27日23:24 | #2
  3. 2008年11月7日15:53 | #3