Thanks for your reply.
As a test, I have entered a URL (
www.mywebsitename.com/postexaminer3.php
) in the Plan-Integrations-URL-First Subscription Activation slot that calls a simple script (postexaminer3.php) that places a string in a text file in the root directory.
<?php //postexaminer3.php
$fp=fopen("thepostexaminer3.txt",'w');
fwrite($fp, "This is the postexaminer3.txt file, and I hope it got called by the CB Subs URL option.");
fclose($fp);
?>
When I have a new user register (front end) for that plan, I hoped I would get the text file created. However, I get no file generated. I set the method to POST, with just [first_name] as the field name. This same code worked well when I used it with the CB Code OnAfterRegistration trigger.
I know I must be doing something wrong. Can you help?
Thanks