I send same form data from different contollers and subdomain. But in one case I need disable CSRF validation.
Example:
Login form:
Location 1: main page example.com
Location 2: account.example.com/login
Location 3:
gate.example.com
And I need disable validation just in case when I send data from location 1 to location 2.
I Used $form = $this->beginWidget('CActiveForm',...
How can I do that?
I supose that csrf cookie is not crossdomain!