Remote IP address and IPN Signup Notifications.
Posted: November 27th, 2010, 8:43 am
Thank you Jason and PrimoThemes,
I am not a professional programmer, but I am really impressed with the value that you are providing here...
I wish the s2member could include soon an integration with Get Response Autoresponders...
Aweber is great, but Get Response just introduced some video features that are really cool, so I think they are a really good bet.
Now I am looking for help integrating Get Response API with s2member, through IPN Notifications, and my main problem at that point is passing the Remote IP to Get Response through the http call.
Unfortunately,I do not have enough PHP/WP experience at this point to do this job elegantly, but for a quick dirty custom integration job, I am considering creating a sandwich code page using similar code to https://github.com/GetResponse/DevZone/blob/master/API/examples/php_synopsis.php where I pass the parameters though with an API Signup Notification...
I understand how to pass the IP address after paypal (for payment notifications, through the shortcodes in the paypal button), but how would I apply this explanation:
to pass the remote server IP address to $custom, so that I can retrieve it through %%cv1%%?
Thanks!
I am not a professional programmer, but I am really impressed with the value that you are providing here...
I wish the s2member could include soon an integration with Get Response Autoresponders...
Aweber is great, but Get Response just introduced some video features that are really cool, so I think they are a really good bet.
Now I am looking for help integrating Get Response API with s2member, through IPN Notifications, and my main problem at that point is passing the Remote IP to Get Response through the http call.
Unfortunately,I do not have enough PHP/WP experience at this point to do this job elegantly, but for a quick dirty custom integration job, I am considering creating a sandwich code page using similar code to https://github.com/GetResponse/DevZone/blob/master/API/examples/php_synopsis.php where I pass the parameters though with an API Signup Notification...
I understand how to pass the IP address after paypal (for payment notifications, through the shortcodes in the paypal button), but how would I apply this explanation:
- Code: Select all
This example uses cv1 to track a User's IP address:
( The IP address could be referenced using %%cv1%% )
custom="mydomain.com|<?php echo $_SERVER["REMOTE_ADDR"]; ?>"
to pass the remote server IP address to $custom, so that I can retrieve it through %%cv1%%?
Thanks!