重定向IPN发布数据,还通过htaccess发送到原始数据?

问题描述 投票:0回答:1

好的,我正在将PayPal定期订阅从我的vBulletin移动到一个会员。 PayPal不允许您更改现有定期订阅的IPN,因此当我在会员中需要时,它们仍会将通知发送到vBulletin。

经过大量的试验和错误+浏览后,我找到了另一个用户的解决方案:

# ensure only rewrite old paypal when query has exactly right parameter
RewriteCond %{QUERY_STRING} (?:^|&)method=paypal(?:$|&)
# should only happen on first request and allow the pretty url to be routed normally on the next pass through the rules
RewriteRule ^ aMember/payment/ipn [NS,DPI,QSD]

现在我的问题是:这是否仍然允许通知点击vBulletin软件或者我可以做些什么来允许它?因为如果可以的话,这意味着我可以同时运行,并允许我更灵活地将人员转移到...而在目前的情况下,我需要一次完成所有这些。

.htaccess paypal paypal-ipn vbulletin amember
1个回答
0
投票

您可以从aMember将PayPal通知重新发送到vBulletin IPN侦听器。

您需要在PayPal插件配置中启用“重新发送回发”选项: aMember CP - > Configuration - > Setup / Configuration - > PayPal

并设置vBulletin IPN处理程序的URL。

© www.soinside.com 2019 - 2024. All rights reserved.