Here is my code: https://pastebin.com/Rr4MBD11
Can you please help me to solve?
|
Dec '14 |
5 |
1099 |
0 |
Thanks Thein for reply but no luck. I'm getting same error.
Hey man
you try this
{{ hidden_field(this.security.getTokenKey(), "value": this.security.getToken()) }}
Can you upload error ? Also in bootstrap file I don't see use Phalcon\Security
so You can't used
$di->set(
'security',
function () {
$security = new Security();
//Set the password hashing factor to 12 rounds
$security->setWorkFactor(12);
return $security;
},
true
);
It should like
$di->set(
'security',
function () {
$security = new \Phalcon\Security();
//Set the password hashing factor to 12 rounds
$security->setWorkFactor(12);
return $security;
},
true
);
At first, I want to thank you for your answers. Now, I've completed all steps with no luck. So uploaded actual files here: https://www.dropbox.com/sh/2sar95ry44t0g8c/AACMYd469ciinx9ZbYbJeITZa?dl=0
If you can manage some time to check, I would be really greatful.
Here is the output
array (size=3) 'email' => string '[email protected]' (length=18) 'password' => string '[email protected]' (length=8) 'jcYkyzKkV0uTkubn' => string 'b1d3a08cef6d2bde32f265a08a553ab0' (length=32)
What does the actual generated HTML look like? What does $_POST look like when the form is submitted?