I have order a plugin which works fine on my local computer and on the developers test server. But the plugin is not working on my prod. server.
After registretion, I should get $_GET = add_success
. But I'm getting edit_success
.
In the code, they are cheking different $_POST values, one of them being 'mode'.
Trying to output $_POST["mode"], gives me an empty result, even though I can see the data using Firebug:
default_role subscriber
license_agreement_page on
mode addRec
terms on
user_email [email protected]
user_fname sdf
user_lname sdf
username ssdfsdf
web_address
Trying a simple echo $_POST["mode"]
, I get nothing.
Also tried print_r($_POST)
, and that only gives me Array ( ) 1
.