You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I try to upgrade my symfony project 2.8 to 3.4 and I got this error :
`In XmlFileLoader.php line 386:
Unable to parse file "E:\wamp\www\my-project.com\vendor\thephalcons\amazon-webservices-bundle\AmazonWebServicesBundle\DependencyInjection/../Resources/config\aws_config.xml".
In XmlUtils.php line 101:
[ERROR 1866] Element '{http://symfony.com/schema/dic/services}service', attribute 'factory-service': The attribute 'factory-service' is not allowed. (in file:/E:/wamp/www/my-project.com/ - line 35, column 0)
[ERROR 1866] Element '{http://symfony.com/schema/dic/services}service', attribute 'factory-method': The attribute 'factory-method' is not allowed. (in file:/E:/wamp/www/my-project.com/ - line 35, column 0)
`
Any issue ?
Thanks
The text was updated successfully, but these errors were encountered:
Hi,
indeed, with symfony +3.3 the attribute factory-method and factory-service are no more allowed
as a workaround you can change the config file as below
<service id="aws_service"> <factory class="%aws_factory.class%" method="get" /> </service>
it should be fixed in the next release
thanks for the report
Hello, I try to upgrade my symfony project 2.8 to 3.4 and I got this error :
`In XmlFileLoader.php line 386:
In XmlUtils.php line 101:
`
Any issue ?
Thanks
The text was updated successfully, but these errors were encountered: