| Author |
Message |
voglermc
Joined: 09 Feb 2007 Posts: 1
|
Posted: Fri Feb 09, 2007 1:47 pm Post subject: unsubscribe.php help |
|
|
My question is, what format needs to be placed here:
$success_url = "";
A full url? Can you give me an example? Both of my files are in the root of my site.
Also when I use this link to test I get no response from script:
http://www.MYSITE.com/unsubscribe.php?email=john@doe.com
Thanks for such a great product and your help |
|
| Back to top |
|
 |
stanbusk Site Admin
Joined: 28 Dec 2005 Posts: 2434
|
Posted: Fri Feb 09, 2007 5:21 pm Post subject: |
|
|
$success_url has to be a full working URL.
For example:
$success_url = "http://www.mydomain.com/mysuccesspage.html";
About second problem, if what you get is an empty page, it is very likely because 'register_globals' is set to OFF on your server php.ini file. In such case add the following line right before '//--SETTINGS-...':
import_request_variables('GPC'); |
|
| Back to top |
|
 |
|