I am trying to follow this symfony documentation: http://symfony.com/doc/current/book/forms.html
OK, so here is my thing, I implemented my form and created a special form class to process the process and the possibility of its reuse.
So what happens when I submit the form, no matter what information is suitable or not for my class, I get this fatal error:
Fatal error: calling setAttribute () member function for non-object in C: \ Program Files (X86) \ WAMP \ WWW \ QNetworks \ provider \ Symfony \ SRC \ Symfony \ Component \ Form \ Extension \ Kernel \ DataTransformer \ NumberToLocalizedStringTransformer. php on line 130 call stack
I am working with php 5.3.9 and my internal extension is installed and activated, but when I run the app / check.php command, I see:
[[WARNING]] Check for internal extension availability: FAILED
* Install and enable the intl extension (used for validators) *
So, I do not understand what the problem is with this extension. Should I reinstall it? When I go here: http://php.net/manual/en/intl.requirements.php I see that I can install the PECL or ICU library, but I do not know if I should, and if there is any connection with my problem.
source share