unsubscribe.php help

stanbusk

Administrator
Staff member
$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');
 
Top