Fishpig 在 Magento 中的 WordPress 集成错误
我已经在 magento 中安装了 Fishpig 的 WordPress 集成,集成后我收到“登录 WordPress 时出错”。请检查下面您的 WordPress 管理员凭据,然后重试“magento 管理端的错误”。
我该如何解决这个问题?
I have installed the Fishpig's Wordpress Integration in magento, After the integration i got the 'There was an error logging you into WordPress. Please check your WordPress Admin credentials below and try again' error in magento admin end.
How might I troubleshoot this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在您的 Magento 管理页面中,您应该在菜单栏中看到 Wordpress。按照 WordPress 的导航 ->设置-> WP 自动登录详细信息。在那里,您应该能够输入登录 WordPress 管理员时使用的用户名和密码。
In your Magento Admin page, you should see the Wordpress in your menu bar. Follow the navigation for Wordpress -> Settings -> WP-Auto-Login Details. There, you should be able to enter the username and password you use when signing into Wordpress admin.
我遇到了同样的问题,尽管我知道登录名和密码是正确的,但它显示了相同的错误消息。我通过导航到 WP 管理员登录页面、使用忘记密码并从电子邮件链接更新密码来修复此问题。在发送电子邮件提醒之前,我必须在我的服务器上安装 PEAR 和 postfix。
I had same problem, even though I knew the login and password were correct it showed same error message. I fixed it by navigating to the WP admin-login page, using forgot password and updating password from the email link. I had to install PEAR and postfix on my server before the email reminder would send.
Fishpig WordPress 扩展中的自动登录问题,因为标头(HTTP 请求)中未设置 REFERER 位置。
在第 532 行后添加此代码
$curl->addOption(CURLOPT_REFERER, true);
在 Fishpig_Wordpress_Helper_System 中
Auto login problem in fishpig wordpress extension because there are not set REFERER Location in header (HTTP Request).
Add this code after 532 line
$curl->addOption(CURLOPT_REFERER, true);
in Fishpig_Wordpress_Helper_System