In the Administration Manual it seems to be missing some PHP code, it ends with the json_encode and it doesn't have the send back function/code to HSNM machine, could you please check it?Hi Andrushka,
For better explanation regarding Custom Validation of registration data, please read HSNM Administration Manual pages 138 and then 263.
Best Regards,
Ok, now a I have something "working", by working I mean I receive the data, I check it but when I return it the hotspot (checked with tcpdum, I send back a packet containing the json object) it doesn't behave as intended, it doesn't matter if the ErrorCode is 0, 2, 10.... and also it doesn't matter if the ErrorMessage is "bla bla", "test".... it always returns "Check Registration Data. error." From what I understand if I return a ErrorCode = 0 it assumes the data is correct and the register process can continue, right?Hi Gerard,
there isn't any send back code. The example is complete.
There is the json_encode that provide the coded error for the GET request.
Best Regards.
I don't get when you say I don't have to check the received data because this is the main goal of this feature.Hi Gerard,
You don't have to check received data and you don't have to send back a packet containing the json object. Data are unchangeable and you only have to set the error code and description you desire. Then, once HSNM call your web server your json_encode will print the error code with the description or let user proceeding with the registration process if the error code is 0 (zero). About the validation process with your web server, you just have to set HSNM URL in the Access-Control-Allow-Origin parameter of his .htaccess file. In this way request will be accepted only from HSNM.
Best Regards,
Code: Select all
Receive data from HSNM using $_GET["field"]
Check if this data is right by checking another database (this is my problem)
If the data is right:
$ErrorCode = 0;
$ErrorMessage = "";
echo json_encode(array("error"=>$ErrorCode, "errormessage"=>$ErrorMessage));
If the data is wrong:
$ErrorCode = 20;
$ErrorMessage = " The data you entered in the field is not right .......";
echo json_encode(array("error"=>$ErrorCode, "errormessage"=>$ErrorMessage));
Code: Select all
<?php
set_time_limit(30);
error_reporting(E_ERROR);
session_write_close();
if (isset($_GET["state"])) {$state = trim($_GET["state"]);}
if (strlen($state) > 5) {
$ErrorCode = 2;
$ErrorMessage = "To much lenght";
}
else {
$ErrorCode = 0;
$ErrorMessage = "";
}
echo json_encode(array("error"=>$ErrorCode, "errormessage"=>$ErrorMessage));
?>
Hi!Hi Gerard,
sorry but I explained myself badly.
As you said checking data is the main goal of the function. So yes, you can check those data but you can't modify them.
Based on the example you posted in your previous post, did you actually receive the call to your function.
What do you see, in your browser inspector (F12 button), when you perform the registration attempt?
If you only get Check Registration Data. error. could also means that the request doesn't reach your web server.
Best Regards.
Could this be what you said previously?Failed to load http://<my_ip>/my_script.php?lang=en&rechargeprocess=0&domain=DOMAIN&socialtype=&username=&mobileprefix=&mobilephone=&password=&lastname=LastName&firstname=Name&address=&zip=&city=&state=test123&country=ES&email=test%40test.com&phone=&fax=&yearofbirth=2000&taxcode=&gender=&companyname=&roomorsite=&acceptmkt=true&captcha=&contractconditions=true&acceptprivacypolicy=true&newsletter=false&rndm=57372: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://MY_DOMAIN.COM' is therefore not allowed access.
Users browsing this forum: No registered users and 1 guest