21297 Posts in 5734 Topics by 2603 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 385 Views |
-
SS3 - Ajax - Form - Session timed out

4 November 2012 at 5:08am
Hi
I try to load a form from my pagecontroller via an ajaxrequest.
->mypage/UploadFormAs an answer I get the error message : "Sorry, your session has timed out."
My code:
public static $allowed_actions = array (
'UploadForm'
);
public function UploadForm(){
$thumbField = new UploadField('ProfilePicture', 'Profile picture');
$thumbField->getValidator()->setAllowedExtensions(array('jpg', 'jpeg', 'png', 'gif'));
$thumbField->setConfig('allowedMaxFileNumber', 10);
$form = new Form (
$this,
"ApplyForm",
new FieldList (
//$thumbField
),
new FieldList (
new FormAction('doApply', _t('Angebot.APPLYNOW','Angebot senden'))
));
return $form;
}Don't know what to do.
An help appreciated ;)Thx in advnace
Lukin -
Re: SS3 - Ajax - Form - Session timed out

6 November 2012 at 1:17pm
Hi there,
You need to ensure the SecurityID hidden field in the form is also passed when submitting the form via AJAX.
Cheers,
Sean
| 385 Views | ||
|
Page:
1
|
Go to Top |


