In the latest version of our SAAS product, we are designing it to allow our customers to deploy multiple instances of the software. We require the sign up and login to be tightly integrated into the primary domain – the “sells the product to new customers” website PrimaryDomain.com which features “Sign Up” and “Login” forms that use jQuery/AJAX to give
Tag: cross-domain
Cookies error when connect via ssh port forwarding
I have a PHP script running on the remote server inside private network. And I need to give only access to it via ssh port forwarding (ssh -L ….) remote port 80 to local 8080. The script sets …
CORS not working php
I am trying to post form data from www.siteone.com to www.sitetwo.com via CORS. My ajax code is this: and the file cors.php in www.sitetwo.com is as follows: But still Access-control-Allow-Origin error is thrown. The error thrown is this: I came to know that, using CORS by just allowing the remote website via headers, we can use cross-domain request. But when