Git Product home page Git Product logo

platform's Introduction

OroPlatform

Scrutinizer Code Quality

OroPlatform is a PHP Business Application Platform (BAP) designed to make development of custom business applications easier and faster. Built with Symfony full-stack web framework, it offers unlimited flexibility, high quality of the code and powerful features like:

  • Intuitive user interface based on layouts and themes
  • Advance navigation and menu management
  • Multi layer application configuration
  • Entity and entity fields manager
  • Users, roles and multi scope permissions management
  • REST API with JSON:API standard support
  • Reports, Workflows, Data audit and many other features

OroPlatform is a good starting point for any kind of business applications, from custom intranet apps to modern open-source solutions like OroCRM and OroCommerce.

Installation

OroPlatform is a composer package that requires an application to initialize and run it. A platform-application is an example of such application which simplifies initial project setup and configuration.

Resources

platform's People

Contributors

alex-n-2k7 avatar alexandrdmitriev avatar amuzalevskiy avatar anyt avatar arbitbet avatar dkhrysev avatar dxops avatar emishusta avatar encoder32 avatar eu-ge-ne avatar grygir avatar ignat-s avatar inri13666 avatar ishakuta avatar ishirko avatar kotfalya avatar lexxcode avatar mccar avatar nenadalm avatar nidup avatar rgrebenchuk avatar valeriyyustunyk avatar vitaliyberdylo avatar vladimirseniuk avatar vsoroka avatar webevt avatar x86demon avatar yshyshkin avatar yurio avatar zgeist avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

platform's Issues

Entity Delete Consistency

When deleting an entity the ORM components aren't working. Both the tables remain and the values in the oro_entity_* tables. I believe there needs to be an UPDATE SCHEMA at the Entities view window not just at the individual Entity level. This could do a data check on the oro_entity_* tables to ensure consistency.

Profile edit cancel button

If you go to 'My User' with url /#url=/user/profile/edit
Button 'Cancel' should go to /#url=/user/profile/view

It's currently pointing to /user

Collection filter

In the groups datagrid on the platform there is an optional filter for the groups roles collection. Trying to use this filter causes a 500 error with:
"[Semantical Error] line 0, col 71 near 'roles LIKE :': Error: Invalid PathExpression. Must be a StateFieldPathExpression."
Tracing through the filter code, I can't see how this would work as there does not seem to be a point at which a table can be joined on a string filter and the error above would obviously occur because roles is a table/collection not a field.
Is this just currently waiting to be implemented, will there be a collection filter?

Composer gives an error

When running composer it fails to install the besimple/soap-bundle:

$ php composer.phar install
Loading composer repositories with package information
Installing dependencies (including require-dev)

  • Installing besimple/soap-bundle (dev-master 57a05d5)
    Cloning 57a05d5c82f1401e9ab2aa2e89f94d72e602d2c9

    [RuntimeException]
    Failed to execute git checkout '57a05d5c82f1401e9ab2aa2e89f94d72e602d2c9' && git reset --hard '57a05d5c82f1401e9ab2aa2e89f94d72e602d2c9'

    fatal: reference is not a tree: 57a05d5c82f1401e9ab2aa2e89f94d72e602d2c9

Detached entities throw error in navigation bundle

If an entity has state "UnitOfWork::STATE_DETACHED" then the navigation bundle DoctrineTagGenerator will attempt to get the entity identifier from the unit of work which does not have the entity identifier so throws a notice level warning. This in turn breaks the array_merge...

https://github.com/orocrm/platform/blob/master/src/Oro/Bundle/NavigationBundle/Content/DoctrineTagGenerator.php#L74

https://github.com/orocrm/platform/blob/master/src/Oro/Bundle/NavigationBundle/Content/DoctrineTagGenerator.php#L77

Installer not adding API

When creating a record using the entity form receiving lots of file to load errors. There is no api directory not being created in install so everything is failing. Looks like a pagestate (404) is failing due to the api.

NULL reflection class when running doctrine:generate:entities on command line

When running doctrine:generate:entities I have been getting the following error:

[ErrorException]                                                                                                                                                     
  Catchable Fatal Error: Argument 1 passed to Oro\Bundle\DataAuditBundle\Metadata\Driver\AnnotationDriver::loadMetadataForClass() must be an instance of ReflectionCl  
  ass, null given, called in /host/platform-application/vendor/oro/platform/src/Oro/Bundle/DataAuditBundle/Metadata/Driver/AnnotationDriver.php on line 53 and define  
  d in /host/platform-application/vendor/oro/platform/src/Oro/Bundle/DataAuditBundle/Metadata/Driver/AnnotationDriver.php line 88  

This is because the loadClassMetadata listener is passing classMetadata objects that have no reflection class.

I have gotten around this temporarily by calling the wakeupReflection method on the classMetadata object that is passed to the AnnotationDriver:

public function extendLoadMetadataForClass(DoctrineClassMetadata $doctrineClassMetadata)
{
    $rrs = new RuntimeReflectionService();
    $doctrineClassMetadata->wakeupReflection($rrs);

I guess you could check if the reflection class is null in the first if statement too if your not worried about having a reflection class.

SecurityBundle: ACLWalker builds incomplete SQL queries

I have a problem with SecurityBundle. It generates wrong SQL-queries if a mapped field name is different to its column name. Have a look at this example:

class Order {
 /**
  * @ORM\Id
  * @ORM\Column(type="integer")
  * @ORM\GeneratedValue(strategy="AUTO")
  */
 protected $id;

 /**
  * @ORM\ManyToOne(targetEntity="\Acme\StoreBundle\Entity\Store")
  * @ORM\JoinColumn(name="storeid", referencedColumnName="storeid")
  */
 protected $store;
}
/**
 * @ORM\Entity
 * @ORM\Table(name="stores")
 * @Config(
 *    routeName="acme_store_index",
 *    defaultValues={
 *      "entity"={"label"="Store", "plural_label"="Stores"},
 *      "ownership"={
 *          "owner_type"="BUSINESS_UNIT",
 *          "owner_field_name"="owner",
 *          "owner_column_name"="business_unit_owner_id"
 *      },
 *      "security"={
 *          "type"="ACL",
 *          "group_name"=""
 *      }
 *    }
 * )
 */
class Store {
 /**
  * @ORM\Id
  * @ORM\Column(name="storeid", type="string", length=100)
  * @ORM\GeneratedValue(strategy="NONE")
  * @Type("string")
  */
 protected $id;
}

Now I created a DataGrid with this query:

  query:
      select:
          - o.id
          - s.name as storeName
      from:
          - { table: Acme\Order, alias: o }
      join:
          left:
              store:
                  join: o.store
                  alias: s

Since Store is protected on BusinessUnit-access level the query will be extended to ensure access of restricted users. Thats fine, but the query is defect. This is my query without any modification:

SELECT r0_.id AS id0, u1_.store AS store3 
FROM orders r0_ 
  LEFT JOIN stores u1_ ON r0_.storeid = u1_.storeid

And this is the modified query with access protection:

SELECT r0_.id AS id0, u1_.store AS store3 
FROM orders r0_ 
  LEFT JOIN stores u1_ ON (r0_.storeid = u1_. AND u1_.business_unit_owner_id IN (9, 10, 152))

As you can see, the right side column name in JOIN is missing now. Doctrine reports a notice:

Notice: Undefined index: storeid in /home/rene/oro-app/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/DefaultQuoteStrategy.php on line 42

This problems comes up because of different name of field and column in entity Store. The primary key is named storeid, but the field name is id. The mapping of field "store" in entity Order defines the referencedColumnName with storeid. This is correct! But Oro\Bundle\SecurityBundle\ORM\Walker\ACLWalker uses this value to create a PathExpression:

$pathExpression = new PathExpression(
     self::EXPECTED_TYPE,
     $condition->getEntityAlias(),
     is_string($joinCondition) ? 
      $joinCondition : $joinCondition['referencedColumnName']
);

I think this is wrong, because PathExpression requires a field name. The annotation attribute referencedColumnName contains not a field name, but a column name. So this will work only if column name and field name are equal.

Can you confirm this? Is there a workaround possible? It is no option for me, to rename any columns...

Can't translate buttons correctly

OroPlatform has many buttons, like "Create User." They are displayed correctly in English, but other languages that have different construction of sentence are not correctly displayed.
For example, I translated "Create" as "ไฝœๆˆ and "User" as "ใƒฆใƒผใ‚ถใƒผ".
I expected "Create User" is translated in "ใƒฆใƒผใ‚ถใƒผไฝœๆˆ", but OroPlatform displays "ไฝœๆˆ ใƒฆใƒผใ‚ถใƒผ". It's not correct.

This issue is caused by OroPlatform's button generation process. One button should be mapped on one locale entry, but current is not.

I think, German, Dutch and Korean may have same issue.

Javascript deprecated functions

Receiving these JS warnings in latest Chrome (31.0.1650.26 beta) in Ubuntu.
event.returnValue is deprecated. Please use the standard event.preventDefault() instead.

Entity Many-to-One Relationship

When creating a Many to One relationship after selecting target entity the field does not update. This can be worked around by trying to save which will fail due to a required field. The values will then be pulled from the database and can then be set.

Beta 6: PHP 5.3 computability

The OroCRM installer states OroCRM is compatible with PHP 5.3, which presumably means the platform is as well.

screen shot 2014-01-06 at 7 15 48 pm

However, the oro/platform package folder contains numerous PHP files with PHP 5.4+ syntax. This syntax raises parse error for PHP 5,3. (full list below)

These files should be brought into line with PHP 5.3.

Assuming your /usr/bin/php points to PHP 5.3, the following script may be used to generate a lint for all the project files.

find vendor/oro/platform/ -name '*.php' -exec /usr/bin/php -l '{}' \;

resulting in

PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/BusinessEntitiesBundle/Tests/Unit/Entity/BaseCartTest.php on line 50
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/BusinessEntitiesBundle/Tests/Unit/Entity/BasePersonGroupTest.php on line 46
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/BusinessEntitiesBundle/Tests/Unit/Entity/BasePersonTest.php on line 52
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/BusinessEntitiesBundle/Tests/Unit/Entity/BaseProductTest.php on line 50
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/CalendarBundle/Form/Type/CalendarEventType.php on line 18
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/ConfigBundle/Config/ConfigManager.php on line 105
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/ConfigBundle/Controller/ConfigurationController.php on line 46
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/ConfigBundle/DependencyInjection/Compiler/ConfigPass.php on line 20
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/CronBundle/Controller/JobController.php on line 28
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DashboardBundle/Controller/DashboardController.php on line 40
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DashboardBundle/DependencyInjection/OroDashboardExtension.php on line 23
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DashboardBundle/Manager.php on line 50
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataAuditBundle/Controller/AuditController.php on line 28
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataAuditBundle/EventListener/AuditHistoryGridListener.php on line 22
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Common/Object.php on line 79
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Controller/GridController.php on line 53
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Datagrid/Builder.php on line 33
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Datagrid/Common/MetadataObject.php on line 20
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Datagrid/Manager.php on line 47
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Datagrid/RequestParameters.php on line 26
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Datasource/Orm/QueryConverter/QueryConfiguration.php on line 76
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Datasource/Orm/QueryConverter/YamlConverter.php on line 73
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Datasource/ResultRecord.php on line 10
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/DependencyInjection/CompilerPass/ActionsPass.php on line 26
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/DependencyInjection/CompilerPass/ConfigurationPass.php on line 41
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/DependencyInjection/CompilerPass/FormattersPass.php on line 27
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/DependencyInjection/CompilerPass/MassActionsPass.php on line 26
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Event/BuildBefore.php on line 30
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/EventListener/BaseOrmRelationDatagridListener.php on line 69
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Acceptor.php on line 16
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Action/ActionExtension.php on line 36
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Action/Actions/AbstractAction.php on line 13
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Action/Actions/AjaxAction.php on line 10
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Action/Actions/DeleteAction.php on line 12
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Action/Actions/NavigateAction.php on line 10
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Formatter/FormatterExtension.php on line 17
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Formatter/Property/AbstractLocalizedProperty.php on line 20
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Formatter/Property/AbstractProperty.php on line 17
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Formatter/Property/CallbackProperty.php on line 12
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Formatter/Property/FieldProperty.php on line 27
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Formatter/Property/TranslatableProperty.php on line 13
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Formatter/Property/TwigTemplateProperty.php on line 13
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Formatter/Property/UrlProperty.php on line 17
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/GridViews/AbstractViewsList.php on line 75
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/GridViews/GridViewsExtension.php on line 45
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/GridViews/View.php on line 16
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/Actions/Ajax/AjaxMassAction.php on line 11
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/Actions/Ajax/DeleteMassAction.php on line 10
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/Actions/Redirect/RedirectMassAction.php on line 11
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/Actions/Widget/WidgetMassAction.php on line 11
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/DeleteMassActionHandler.php on line 108
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/MassActionDispatcher.php on line 51
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/MassActionExtension.php on line 16
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/MassActionMediator.php on line 33
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/MassActionParametersParser.php on line 21
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/MassAction/MassActionResponse.php on line 14
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Pager/AbstractPager.php on line 64
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Pager/Orm/Pager.php on line 19
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Pager/OrmPagerExtension.php on line 78
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Sorter/OrmSorterExtension.php on line 48
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Toolbar/ToolbarExtension.php on line 34
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Provider/ChainConfigurationProvider.php on line 10
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Provider/ConfigurationProvider.php on line 16
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Tests/Unit/Datagrid/BuilderTest.php on line 78
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Tests/Unit/Datagrid/ManagerTest.php on line 26
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Tests/Unit/Provider/SystemAwareResolverTest.php on line 60
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Twig/DataGridExtension.php on line 39
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Command/ListInstalledPackagesCommand.php on line 24
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Command/ListUpdatesCommand.php on line 27
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Command/UninstallPackageCommand.php on line 50
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Console/Grid.php on line 37
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Controller/PackageController.php on line 36
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Controller/SecurityController.php on line 35
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/DependencyInjection/OroDistributionExtension.php on line 43
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Entity/PackageRequirement.php on line 44
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/EventListener/NavigationListener.php on line 48
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Manager/Helper/ChangeSetBuilder.php on line 18
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Manager/PackageManager.php on line 108
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Script/Runner.php on line 70
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Security/AccessDeniedListener.php on line 48
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Test/PhpUnit/Helper/MockHelperTrait.php on line 4
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Test/PhpUnit/Helper/ReflectionHelperTrait.php on line 5
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/Console/GridTest.php on line 13
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/Entity/BundleTest.php on line 48
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/Entity/PackageRequirementTest.php on line 35
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/Manager/Helper/ChangeSetBuilderTest.php on line 30
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EmailBundle/Controller/EmailTemplateController.php on line 38
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EmailBundle/Datagrid/EmailTemplatesGridHelper.php on line 12
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EmailBundle/Form/Type/EmailTemplateTranslationType.php on line 35
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EmailBundle/Form/Type/EmailTemplateType.php on line 92
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EmailBundle/Tests/Unit/Form/Type/EmailTemplateTranslationTypeTest.php on line 41
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/Controller/EntitiesController.php on line 55
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/EventListener/CustomEntityGridListener.php on line 37
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/EventListener/RelationEntityGridListener.php on line 44
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/Form/Type/CustomEntityType.php on line 34
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/Form/Type/EntityChoiceType.php on line 68
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/Form/Type/EntityFieldChoiceType.php on line 165
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/Form/Type/OptionSelectType.php on line 107
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/Grid/ExtendExtension.php on line 55
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/Provider/EntityFieldProvider.php on line 247
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityBundle/Tests/Unit/Provider/EntityProviderTest.php on line 52
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Command/TransCommand.php on line 93
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Config/ConfigManager.php on line 126
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Controller/AuditController.php on line 37
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Controller/ConfigController.php on line 51
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/EventListener/AbstractConfigGridListener.php on line 84
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/EventListener/EntityConfigGridListener.php on line 22
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/EventListener/OptionSetListener.php on line 57
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Tests/Unit/Fixture/Repository/FoundEntityConfigRepository.php on line 29
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/Command/UpdateCommand.php on line 114
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/Controller/ConfigFieldGridController.php on line 132
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/EventListener/ConfigSubscriber.php on line 51
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/Form/Type/OptionSetCollectionType.php on line 37
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/Form/Type/OptionSetType.php on line 24
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/Form/Type/RelationType.php on line 87
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/Tools/ExtendConfigDumper.php on line 69
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/FilterBundle/Filter/AbstractFilter.php on line 55
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/FilterBundle/Filter/ChoiceFilter.php on line 57
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/FilterBundle/Filter/FilterUtility.php on line 21
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/FilterBundle/Filter/PercentFilter.php on line 16
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/FilterBundle/Filter/SelectRowFilter.php on line 61
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/FilterBundle/Grid/Extension/OrmFilterExtension.php on line 27
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/FormBundle/Form/DataTransformer/ArrayToJsonTransformer.php on line 15
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/InstallerBundle/ScriptExecutor.php on line 50
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/InstallerBundle/ScriptManager.php on line 48
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/InstallerBundle/Tests/Unit/ScriptManagerTest.php on line 28
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Command/SyncCommand.php on line 81
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Controller/ChannelController.php on line 37
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/DependencyInjection/CompilerPass/TypesPass.php on line 30
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Entity/Repository/ChannelRepository.php on line 13
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Entity/Status.php on line 184
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Form/EventListener/ChannelFormSubscriber.php on line 28
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Form/Type/ChannelType.php on line 36
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Manager/TypesRegistry.php on line 16
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Model/IntegrationEntityTrait.php on line 7
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Provider/AbstractConnector.php on line 97
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Provider/SimpleTransport.php on line 43
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Provider/SOAPTransport.php on line 35
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Provider/SyncProcessor.php on line 89
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Provider/TransportInterface.php on line 20
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Tests/Unit/Entity/ChannelTest.php on line 12
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Tests/Unit/Provider/AbstractConnectorTest.php on line 30
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Tests/Unit/Provider/SoapTransportTest.php on line 19
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Tests/Unit/Provider/SyncProcessorTest.php on line 62
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/LocaleBundle/DependencyInjection/Configuration.php on line 113
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/MeasureBundle/Manager/MeasureManager.php on line 33
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Content/DataGridTagListener.php on line 37
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Content/DoctrineTagGenerator.php on line 17
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Content/SimpleTagGenerator.php on line 24
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Content/TagGeneratorChain.php on line 8
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Content/TopicSender.php on line 48
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Event/DoctrineTagEventSubscriber.php on line 19
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Provider/TitleService.php on line 194
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Tests/Unit/Content/DataGridTagListenerTest.php on line 39
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Tests/Unit/Content/DoctrineTagGeneratorTest.php on line 77
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Tests/Unit/Content/SimpleTagGeneratorTest.php on line 38
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Tests/Unit/Content/Stub/SimpleGeneratorStub.php on line 29
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Tests/Unit/Content/TagGeneratorChainTest.php on line 29
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Tests/Unit/Content/TopicSenderTest.php on line 87
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Tests/Unit/Twig/ContentTagsExtensionTest.php on line 34
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Title/TitleReader/AnnotationsReader.php on line 17
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Twig/ContentTagsExtension.php on line 22
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/Controller/EmailNotificationController.php on line 33
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/Entity/Repository/EventRepository.php on line 22
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/EventListener/LocaleListener.php on line 60
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/Form/Type/RecipientListType.php on line 31
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/Processor/EmailNotificationProcessor.php on line 185
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/Provider/EmailNotificationGridHelper.php on line 59
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/Tests/Unit/EventListener/LocaleListenerTest.php on line 57
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/Tests/Unit/Processor/EmailNotificationProcessorTest.php on line 82
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/OrganizationBundle/Entity/Manager/BusinessUnitManager.php on line 94
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/OrganizationBundle/Entity/Organization.php on line 181
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/OrganizationBundle/Entity/Repository/BusinessUnitRepository.php on line 67
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/OrganizationBundle/Form/Extension/OwnerFormExtension.php on line 340
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/OrganizationBundle/Tests/Unit/Entity/Manager/BusinessUnitManagerTest.php on line 77
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/DependencyInjection/Compiler/ConfigurationPass.php on line 31
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/Form/Type/AbstractQueryDesignerType.php on line 77
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/Grid/DatagridConfigurationQueryConverter.php on line 80
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/Grid/Extension/GroupingOrmFilterDatasourceAdapter.php on line 113
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/Grid/Extension/OrmDatasourceExtension.php on line 88
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/QueryDesigner/AbstractOrmQueryConverter.php on line 57
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/QueryDesigner/AbstractQueryConverter.php on line 92
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/QueryDesigner/Manager.php on line 15
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/Tests/Unit/DependencyInjection/Compiler/ConfigurationPassTest.php on line 14
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/Tests/Unit/OrmQueryConverterTest.php on line 7
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/ReportBundle/Controller/ReportController.php on line 31
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/ReportBundle/Entity/Manager/ReportManager.php on line 31
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SearchBundle/Extension/SearchDatasource.php on line 23
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SearchBundle/Extension/SearchResultsExtension.php on line 81
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/AccessLevel.php on line 93
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/EventListener/OwnerTreeListener.php on line 19
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/ORM/Walker/AclHelper.php on line 60
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/ORM/Walker/AclWalker.php on line 159
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/ORM/Walker/OwnershipConditionDataBuilder.php on line 91
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Owner/OwnerTree.php on line 240
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Tests/Unit/Acl/Domain/RootBasedAclProviderTest.php on line 147
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Tests/Unit/EventListener/OwnerTreeListenerTest.php on line 68
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Tests/Unit/ORM/Walker/AclHelperTest.php on line 71
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Tests/Unit/ORM/Walker/Condition/AclConditionStorageTest.php on line 13
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Tests/Unit/ORM/Walker/Condition/JoinAclConditionTest.php on line 10
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Tests/Unit/ORM/Walker/Condition/JoinAssociationConditionTest.php on line 11
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/SoapBundle/DependencyInjection/Compiler/LoadPass.php on line 16
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/TranslationBundle/EventListener/RequestListener.php on line 38
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/TranslationBundle/Translation/OrmTranslationLoader.php on line 37
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/TranslationBundle/Translation/OrmTranslationMetadataCache.php on line 27
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/TranslationBundle/Translation/Translator.php on line 12
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/UIBundle/DependencyInjection/Compiler/TwigConfigurationPass.php on line 23
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/UserBundle/Autocomplete/UserAclHandler.php on line 123
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/UserBundle/Controller/Dashboard/DashboardController.php on line 26
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/UserBundle/Form/Type/UserType.php on line 123
PHP Parse error:  parse error in vendor/oro/platform/src/Oro/Bundle/UserBundle/Tests/Functional/API/RestUsersTest.php on line 144
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/ConfigBundle/Tests/Unit/Entity/ConfigTest.php on line 88
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Datagrid/Datagrid.php on line 43
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Datasource/Orm/OrmDatasource.php on line 39
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Sorter/Configuration.php on line 36
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Extension/Toolbar/Configuration.php on line 25
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Provider/SystemAwareResolver.php on line 99
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Tests/Unit/Event/BuildBeforeTest.php on line 15
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Tests/Unit/Extension/AbstractExtensionTest.php on line 57
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/DataGridBundle/Tests/Unit/Extension/AcceptorTest.php on line 20
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/EmailBundle/Tests/Unit/Form/Type/EmailTemplateApiTestTest.php on line 29
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/EmailBundle/Tests/Unit/Form/Type/EmailTemplateTest.php on line 29
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/EntityBundle/Tests/Unit/Provider/EntityFieldProviderTest.php on line 84
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Config/ConfigModelManager.php on line 132
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Entity/Repository/OptionSetRelationRepository.php on line 18
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Entity/Repository/OptionSetRepository.php on line 17
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Tools/ConfigHelper.php on line 33
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/Controller/ApplyController.php on line 95
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/FilterBundle/Datasource/Orm/OrmExpressionBuilder.php on line 22
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/FilterBundle/Datasource/Orm/OrmFilterDatasourceAdapter.php on line 61
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/FormBundle/Tests/Unit/Form/DataTransformer/ArrayToJsonTransformerTest.php on line 68
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/ImportExportBundle/Tests/Unit/Processor/ImportProcessorTest.php on line 47
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Logger/LoggerStrategy.php on line 66
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/IntegrationBundle/Utils/ConverterUtils.php on line 24
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/LocaleBundle/Tests/Unit/Model/LocaleSettingsTest.php on line 435
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/DependencyInjection/OroNavigationExtension.php on line 75
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/NavigationBundle/Tests/Unit/Provider/TitleServiceTest.php on line 90
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/Tests/Unit/Entity/Repository/RecipientListRepositoryTest.php on line 71
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/NotificationBundle/Tests/Unit/Event/Handler/EmailNotificationAdapterTest.php on line 82
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/QueryDesigner/ConfigurationResolver.php on line 63
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/Tests/Unit/Grid/DatagridConfigurationBuilderTest.php on line 18
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/Tests/Unit/Grid/Extension/GroupingOrmFilterDatasourceAdapterTest.php on line 17
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/QueryDesignerBundle/Tests/Unit/Grid/Extension/OrmDatasourceExtensionTest.php on line 72
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/ReportBundle/EventListener/NavigationListener.php on line 53
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Tests/Unit/ORM/Walker/Condition/SubRequestAclConditionStorageTest.php on line 15
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Tests/Unit/ORM/Walker/OwnershipFilterBuilderTest.php on line 221
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Tests/Unit/Owner/OwnerTreeProviderTest.php on line 104
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/TranslationBundle/Entity/Repository/TranslationRepository.php on line 20
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/UIBundle/DependencyInjection/OroUIExtension.php on line 33
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/UserBundle/Entity/User.php on line 1419
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/UserBundle/Form/Type/GroupApiType.php on line 27
PHP Parse error:  parse error, expecting `')'' in vendor/oro/platform/src/Oro/Bundle/UserBundle/Form/Type/RoleApiType.php on line 69
PHP Parse error:  parse error, expecting `T_FUNCTION' in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/Entity/Security/GroupTest.php on line 12
PHP Parse error:  parse error, expecting `T_FUNCTION' in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/Entity/Security/RoleTest.php on line 11
PHP Parse error:  parse error, expecting `T_FUNCTION' in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/Entity/Security/UserTest.php on line 12
PHP Parse error:  parse error, expecting `T_FUNCTION' in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/EventListener/NavigationListenerTest.php on line 11
PHP Parse error:  parse error, expecting `T_FUNCTION' in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/Exception/VerboseExceptionTest.php on line 10
PHP Parse error:  parse error, expecting `T_FUNCTION' in vendor/oro/platform/src/Oro/Bundle/DistributionBundle/Tests/Unit/Manager/PackageManagerTest.php on line 32

Automatic redirect on 500 error

I mentioned this in the forums http://www.orocrm.com/forums/topic/redirect-on-500-error but figured it would be useful in the repo to track. If we are in dev mode, please can this full redirect not occur, it is very frustrating to debug when 500 errors just get ignored and forwarded. I can see why its useful for production mode but not for development mode.

https://github.com/orocrm/platform/blob/master/src/Oro/Bundle/NavigationBundle/Event/ResponseHashnavListener.php#L48

orocrm/platform-application js error

I've installed orocrm platform following the instructions here https://github.com/orocrm/platform-application.

The package willdurand/expose-translation-bundle: 1.1.* not available any more if I'm correct https://packagist.org/packages/oro/platform thus I've added this line to my composer.json

"replace": {
"willdurand/expose-translation-bundle": "1.1.*"
},

After that all installation steps passed successfully but on login I'm getting js error
screenshot from 2014-02-24 22 00 10

the error exists in chrome / firefox browser
Need your advise / fix on this issue, many thanks


my configuration:
fedora20
apache webserver
PHP Version 5.5.9
database 5.5.34-MariaDB

do not support EAV

EAV is mostly useful to deal with unstructured data while still being able to do some sort of searching. however as the platform provides for an inverted index solution for fallback when solr etc are not available for searching I would highly recommend to not provide EAV. instead consider simply serializing such data into json or xml. EAV is simply very hard to scale and also tends to lead to very inefficient use of data types.

another alternative would be to consider PHPCR for such data. related to this see this PR I recreated for sylius:
Sylius/Sylius#247

Root ACL permission

In the ACL table, there is a root node. If an area in the system does not have a specific ACL id then the user is evaluated against the root node. Thats fine and seems to make sense.

However:

If I edit the ACL tree (originally all ticked) and remove one permission that is not the root node, saving the config now removes the permission I want to remove and the root node permission. Which means system areas without specific ACL id's cannot be accessed.

Is this intended functionality? Am I only meant to have access to routes without ACL id's if I have the entire ACL tree ticked?

Search Bar

hi,

I don't know if the search bar is exactly the main problem yet... I created a new user with a custom role... For playing, I edited role ACL and I removed "address manipulation" for example. I decided to connect me with this new account. The search bar was not printed... and when I wanted to access to a page I got the following JavaScript error : "TypeError: queryString2 is undefined" (file searchBar.js from the searchBundle, line 104).

Indeed, the script try to get the value of the element with the id #search-bar-search which does not exist... The javascript execution was stoped and the loader was not removed...

What is the best way to fix this bug?

Thanks

Autocomplete Fulltext query broken for Owners

When attempting to search using the dropdown for users when adding a contact or a contact group the autocomplete query returns a 500:

The query it runs produces:
#1191 - Can't find FULLTEXT index matching the column list

I've confirmed that it is the query and not the script. I can get the query to run by removing the MATCH() in the SELECT but don't want to do that in the code base.

The full query and params below:

An exception occurred while executing 'SELECT DISTINCT MATCH(o0_.value) AGAINST (? ) AS sclr0, o1_.id AS id1, o1_.entity AS entity2, o1_.alias AS alias3, o1_.record_id AS record_id4, o1_.title AS title5, o1_.changed AS changed6, o1_.created_at AS created_at7, o1_.updated_at AS updated_at8, o2_.id AS id9, o2_.field AS field10, o2_.value AS value11, o2_.item_id AS item_id12 FROM oro_search_item o1_ LEFT JOIN oro_search_index_text o2_ ON o1_.id = o2_.item_id AND (o2_.field = ?) LEFT JOIN oro_search_index_text o0_ ON o1_.id = o0_.item_id LEFT JOIN oro_search_index_integer o3_ ON o1_.id = o3_.item_id LEFT JOIN oro_search_index_decimal o4_ ON o1_.id = o4_.item_id LEFT JOIN oro_search_index_datetime o5_ ON o1_.id = o5_.item_id WHERE o1_.alias IN ('oro_user') AND (((MATCH(o0_.value) AGAINST (? IN BOOLEAN MODE ) > 0 AND o0_.field = ?) OR o0_.value LIKE ?)) ORDER BY sclr0 DESC LIMIT 11' with params ["d", "all_text", "d*", "all_text", "d%"]:

Entity Field Name Case

The field labels are being case converted instead of using the field's label field (unaltered). e.g. firstName would become Firstname.

Beta 6: Check PhpExecutableFinder Version

Assuming the OroEntityExtendBundle class in

 vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/OroEntityExtendBundle.php

will ship with the ensureCacheInitialized method as is, an installer check should be added to ensure the version of PHP returned by PhpExecutableFinder meets the minimum PHP version requirements.

On my system the getPhp method

#File: vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/OroEntityExtendBundle.php

private function getPhp()
{
    $phpFinder = new PhpExecutableFinder();
    if (!$phpPath = $phpFinder->find()) {
        throw new \RuntimeException(
            'The php executable could not be found, add it to your PATH environment variable and try again'
        );
    }

    return $phpPath;
}

returned a path to a PHP 5.3 binary. This botched the call to oro:entity-extend:dump,

#File: vendor/oro/platform/src/Oro/Bundle/EntityExtendBundle/OroEntityExtendBundle.php
$process = new Process($console . ' oro:entity-extend:dump' . ' --env ' . $env);
$process->setTimeout(100000);
$process->run();

and led to an incompletely installed system. Beyond this specific example, the command line version of PHP available in a web context is often different than the one handling web requests. Assuming it the same seems like a bad idea.

OroConfig work only for tree named by prefix "oro_"

check:

  • platform / src / Oro / Bundle / ConfigBundle / DependencyInjection / Compiler / ConfigPass.php
  • line : 17
  • if (strpos($name, 'oro_') !== false) {

It's correct? i need rewrite for use with other names? or i need use oro_my_tree always?

Lack of documentation

Hi guys!

I just found this projects via a tweet by @fabpot (after following some links) and I find the concept really nice.

Howeverโ€ฆ
I find your lack of documentation disturbing
โ€ฆ there is no documentation.
A simple getting started should do the job of presenting what the tool can do to the rest of us.

PS: English is not my ative tongue (as you may have noticed), so I don't feel very comfortable doing that myself. Also, I think there is no one better to document the features than the devs who so passionately implemented them. ๐Ÿ˜‰

Roles edit/update bug?

System / User management / Roles with url host/#url=/user/role/update/(userid)

Changing Entity Role to None or Division / Organization / System always falls back to Business Unit.

OutOfMemory with DataGrid

I'm trying to do my first steps with ORO. I want to build a simple datagrid based on a table with about 250.000 records. But I run into OutOfMemory errors, caused by class Oro\Bundle\GridBundle\Datagrid\ORM\ProxyQuery in getTotalCount

public function getTotalCount()
{
    $qb = clone $this->getResultIdsQueryBuilder();
    $qb->setFirstResult(null);
    $qb->setMaxResults(null);
    $qb->resetDQLPart('orderBy');

    $ids = $qb->getQuery()->execute();

    return count($ids);
}

This method is called from Pager in computeNbResult() to find the total number of entries. Unfortunately the count is done in PHP and not in database. This will take too much memory with huge tables.

Duplicate locale returned

getTranslationLocales in AbstractTranslatableEntityFixture.php should return unique list of existing translation locales for current translation domain.

If you have backup or temporary file in Resources/translations, then the function may return duplicate locale. For example, entities.en.yml and entities.en.yml~ in Resources/translations directory.

DB Errors when Upgrading

When upgrading to version 1.0.0-rc3 using https://github.com/orocrm/platform/blob/master/UPGRADE.md I receive an whille running php app/console oro:platform:update --env=prod:

[Doctrine\DBAL\DBALException]
An exception occurred while executing 'SELECT o0_.name AS name0, o0_.label AS label1,...... FROM oro_workflow_definition o0_ WHERE o0_.start_step_id IS NOT NULL':

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'o0_.related_entity' in 'field list'

All previous commands ran without any problems or errors. Do I need to patch DB first? If so, how?

Working without access

Hi , I am working on Symfony 2.3 , project ; for which i want to use ORO as admin of my project . my problem is that i have integrated the same entities to ORO Package as well as my front end package . Can i merge these both package in same because if i merge both , obviously for going on any unanimous page , it will require a authentication . but i want to authentication on only admin page ; and remaining page should be accessed without authentication . is it possible , if it is , please help me ..

Thanks a lot !!

Create User: Automatic initialization is only supported on root forms

When trying to create a new user I get the following error:

Automatic initialization is only supported on root forms. You should set the "auto_initialize" option to false on the field "company"

I get this from the create user page : /app_dev.php/user/create and it's just a one line fix as prompted in the error

Beta 6: PHP 5.4 only features

The following file contain PHP 5.4 only features.

vendor/oro/platform/src/Oro/Bundle/EntityConfigBundle/Config/ConfigManager.php

Specifically, the "short array" syntax is used.

    $this->localCache       = [];
    $this->persistConfigs   = [];
    $this->originalConfigs  = [];
    $this->configChangeSets = [];

OroCRM/OroBAP have a stated PHP 5.3+ compatibility. This file makes OroCRM/OroBAP incompatible with PHP 5.3.

The standard PHP array() syntax should be used here to maintain PHP 5.3 compatibility.

Postgresql Reserved word for column name in CalendarEvent Class

HI,
I was playing around with the platform and I was trying to install it on postgresql database ,
it gave me some errors but the one am reporting here is the use of a reserved word for a column name

the calendarEvent class is using the word "end" as a column name for the end property and as well for the index
this word is a reserved word in postgresql

just letting you know

cheers

move to stable dependencies

I noticed that several dependencies are on non stable versions .. some even on specific commits. before going to stable it would be wise to push for releases in all dependencies and ideally stable releases too. some bundles, like FOSRestBundle, already have stable releases by now already.

Debug mode (assetic)

hi,

I activated the debug mode in the config.yml file (assetic.debug: true). Lot of JavaScripts are not compressed but the JavaScripts defined in the app/Resources/view/Default/components.html.twig are compressed. If those scripts are not compressed, your browser can freeze... but if you have to debug those scripts, it can be useful to uncompressed them... Is there a simple way to disable all JavaScripts compression?

Thank

Domain Object exception when trying to put oro code into "/admin" prefix

I am trying to set a prefix "/admin" on all oro routes. To do this I added

#navigation.yml
oro_default:
    pattern:  /admin
    defaults:
        _controller: OroDashboardBundle:Dashboard:index

oro_auto_routing:
    prefix:   /admin
    resource: .
    type:     oro_auto

I also added the prefix to login areas of the security.yml and I have the following access control:

        install:
            pattern:                        ^/admin/installer
#...
        wsse_secured:
            pattern:                        ^/admin/api/(rest|soap).*
#...
        login:
            pattern:                        ^/admin/user/(login|reset-request|send-email|check-email)$
#...
        reset_password:
            pattern:                        ^/admin/user/reset/*
#...
    access_control:
        - { path: ^/admin/user/(login|reset-request|send-email|check-email), role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/admin/user/reset/*, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/admin/, role: ROLE_ADMINISTRATOR }
        - { path: ^/api/rest/(latest|v1)/pinbars, role: ROLE_USER }

I am getting the following exception:

$domainObject must either implement the DomainObjectInterface, or have a method named "getId".
in /vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Domain/ObjectIdAccessor.php at line 27
at ObjectIdAccessor ->getId (object(Request))

in /vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Extension/AclExtensionSelector.php at line 84
at AclExtensionSelector ->select (object(Request))

in /vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Voter/AclVoter.php at line 85
at AclVoter ->vote (object(AnonymousToken), object(Request), array('IS_AUTHENTICATED_ANONYMOUSLY'))

in kernel.root_dir/cache/dev/classes.php at line 4606
at AccessDecisionManager ->decideUnanimous (object(AnonymousToken), array('IS_AUTHENTICATED_ANONYMOUSLY'), object(Request))

in kernel.root_dir/cache/dev/classes.php at line 4531
at AccessDecisionManager ->decide (object(AnonymousToken), array('IS_AUTHENTICATED_ANONYMOUSLY'), object(Request))

in /vendor/symfony/symfony/src/Symfony/Component/Security/Http/Firewall/AccessListener.php at line 69

Can't install alpha4 with composer (requirement confilct)

I have been trying to install the alpha4 but I am getting a requirement conflict from composer:

  Problem 1
    - Conclusion: don't install oro/platform 1.0.0-alpha4
    - sonata-project/admin-bundle dev-master requires knplabs/knp-menu-bundle ~1.1 -> satisfiable by knplabs/knp-menu-bundle[1.1.x-dev, v1.1.0, v1.1.1, v1.1.2].
    - Can only install one of: knplabs/knp-menu-bundle[dev-master, 1.1.x-dev].
    - Can only install one of: knplabs/knp-menu-bundle[v1.1.0, dev-master].
    - Can only install one of: knplabs/knp-menu-bundle[v1.1.1, dev-master].
    - Can only install one of: knplabs/knp-menu-bundle[v1.1.2, dev-master].
    - oro/platform 1.0.0-alpha4 requires knplabs/knp-menu-bundle dev-master -> satisfiable by knplabs/knp-menu-bundle[dev-master].
    - oro/platform 1.0.0-alpha4 requires sonata-project/admin-bundle dev-master -> satisfiable by sonata-project/admin-bundle[dev-master].
    - Installation request for oro/platform 1.0.0-alpha4 -> satisfiable by oro/platform[1.0.0-alpha4].

My composer.json looks like this:

{
    "name": "oro/platform-application",
    "description": "Oro Platform Empty Application",
    "autoload": {
        "psr-0": { "": "src/" }
    },
    "require": {
        "php": ">=5.3.3",
        "oro/platform": "1.0.0-alpha4"

    },
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/orocrm/platform.git",
            "branch": "master"
        }
    ],
    "scripts": {
        "post-install-cmd": [
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreate",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
            "php app/console fos:js-routing:dump --target=web/js/routes.js"
        ],
        "post-update-cmd": [
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreate",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
            "php app/console fos:js-routing:dump --target=web/js/routes.js"
        ]
    },
    "minimum-stability": "dev",
    "extra": {
        "symfony-app-dir": "app",
        "symfony-web-dir": "web"
    }
}

statut code 403 after install 1.0.0-alpha4

Hi

thx for this promized crm,

But after installed the 1.0.0-alpha and load default data fixtures, i try to connect to application with admin user (with ROLE_SUPER_ADMIN role) , but i got 403 Error, i don't why and know how to fix it.

thanx.

It seems it doesn't work well...

  • incorrect links, bad formatting

steps to reproduce:

dashboard seems to be ok:
http://postimg.org/image/3s0l2mt8d/

config page seems to be bad:
http://postimg.org/image/4n5ua8mxv/
http://postimg.org/image/jmk2q97ct/

and when I click some link inside configuration:
http://postimg.org/image/k15oe09mb/

  • steps to reproduce may be slightly different - just writing what I remember (+ gui installation failed for me - the page with removing cache, installing db... that's why I tried console)
  • I just tried to install this crm without checking something more... so can't say more to these errors

Split to multiple bundles

Hey guys,
It's seems like you did a really cool job.. but actually, in the current state- it almost unusable- this bundle maybe can connect them all.. but all the bundles should be released as standalone bundles on composer...

Fatal error: Maximum function nesting level of '100' reached, aborting! in /var/www/oroplatform/vendor/twig/twig/lib/Twig/Node.php on line 17

Hi OROCRM Team.

try to start an ormcrm plattform package, and run permanantly into issue with over 100 calls.

here is my stack trace:

[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP Stack trace:, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 1. {main}() /var/www/oroplatform/web/app.php:0, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 2. Symfony\Component\HttpKernel\Kernel->handle() /var/www/oroplatform/web/app.php:22, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 3. Symfony\Component\HttpKernel\DependencyInjection\ContainerAwareHttpKernel->handle() /var/www/oroplatform/app/bootstrap.php.cache:2218, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 4. Symfony\Component\HttpKernel\HttpKernel->handle() /var/www/oroplatform/app/bootstrap.php.cache:2916, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 5. Symfony\Component\HttpKernel\HttpKernel->handleException() /var/www/oroplatform/app/bootstrap.php.cache:2792, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 6. Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch() /var/www/oroplatform/app/bootstrap.php.cache:2839, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 7. Symfony\Component\EventDispatcher\EventDispatcher->dispatch() /var/www/oroplatform/app/cache/prod/classes.php:2132, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 8. Symfony\Component\EventDispatcher\EventDispatcher->doDispatch() /var/www/oroplatform/app/cache/prod/classes.php:1968, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 9. call_user_func() /var/www/oroplatform/app/cache/prod/classes.php:2035, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 10. Symfony\Component\HttpKernel\EventListener\ExceptionListener->onKernelException() /var/www/oroplatform/app/cache/prod/classes.php:2035, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 11. Symfony\Component\HttpKernel\DependencyInjection\ContainerAwareHttpKernel->handle() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/EventListener/ExceptionListener.php:65, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 12. Symfony\Component\HttpKernel\HttpKernel->handle() /var/www/oroplatform/app/bootstrap.php.cache:2916, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 13. Symfony\Component\HttpKernel\HttpKernel->handleRaw() /var/www/oroplatform/app/bootstrap.php.cache:2787, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 14. call_user_func_array() /var/www/oroplatform/app/bootstrap.php.cache:2813, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 15. FOS\RestBundle\Controller\ExceptionController->showAction() /var/www/oroplatform/app/bootstrap.php.cache:2813, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 16. FOS\RestBundle\View\ViewHandler->handle() /var/www/oroplatform/vendor/friendsofsymfony/rest-bundle/FOS/RestBundle/Controller/ExceptionController.php:81, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 17. FOS\RestBundle\View\ViewHandler->createResponse() /var/www/oroplatform/vendor/friendsofsymfony/rest-bundle/FOS/RestBundle/View/ViewHandler.php:262, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 18. FOS\RestBundle\View\ViewHandler->renderTemplate() /var/www/oroplatform/vendor/friendsofsymfony/rest-bundle/FOS/RestBundle/View/ViewHandler.php:366, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 19. Symfony\Component\Templating\DelegatingEngine->render() /var/www/oroplatform/vendor/friendsofsymfony/rest-bundle/FOS/RestBundle/View/ViewHandler.php:316, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 20. Symfony\Bundle\TwigBundle\TwigEngine->render() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Component/Templating/DelegatingEngine.php:50, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 21. Symfony\Bridge\Twig\TwigEngine->render() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/TwigEngine.php:79, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 22. Twig_Template->render() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Bridge/Twig/TwigEngine.php:53, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 23. Twig_Template->display() /var/www/oroplatform/app/cache/prod/classes.php:4723, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 24. Twig_Template->displayWithErrorHandling() /var/www/oroplatform/app/cache/prod/classes.php:4716, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 25. __TwigTemplate_95164c99c25f61ee942b9127a99bf2ad11fc4da6c476cb33748dc88dc99377c4->doDisplay() /var/www/oroplatform/app/cache/prod/classes.php:4735, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 26. Twig_Template->display() /var/www/oroplatform/app/cache/prod/twig/95/16/4c99c25f61ee942b9127a99bf2ad11fc4da6c476cb33748dc88dc99377c4.php:34, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 27. Twig_Template->displayWithErrorHandling() /var/www/oroplatform/app/cache/prod/classes.php:4716, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 28. __TwigTemplate_f50a4d43f95b0379ee6819ffe5b0e774e03c95fec36897b3fe3c927bf9324d54->doDisplay() /var/www/oroplatform/app/cache/prod/classes.php:4735, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 29. Twig_Template->displayBlock() /var/www/oroplatform/app/cache/prod/twig/f5/0a/4d43f95b0379ee6819ffe5b0e774e03c95fec36897b3fe3c927bf9324d54.php:45, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 30. call_user_func() /var/www/oroplatform/app/cache/prod/classes.php:4685, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 31. __TwigTemplate_f50a4d43f95b0379ee6819ffe5b0e774e03c95fec36897b3fe3c927bf9324d54->block_head() /var/www/oroplatform/app/cache/prod/classes.php:4685, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 32. Twig_Template->displayBlock() /var/www/oroplatform/app/cache/prod/twig/f5/0a/4d43f95b0379ee6819ffe5b0e774e03c95fec36897b3fe3c927bf9324d54.php:107, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 33. call_user_func() /var/www/oroplatform/app/cache/prod/classes.php:4685, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 34. __TwigTemplate_f50a4d43f95b0379ee6819ffe5b0e774e03c95fec36897b3fe3c927bf9324d54->block_script() /var/www/oroplatform/app/cache/prod/classes.php:4685, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 35. Twig_Template->display() /var/www/oroplatform/app/cache/prod/twig/f5/0a/4d43f95b0379ee6819ffe5b0e774e03c95fec36897b3fe3c927bf9324d54.php:148, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 36. Twig_Template->displayWithErrorHandling() /var/www/oroplatform/app/cache/prod/classes.php:4716, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 37. __TwigTemplate_cc88e20ae1750837685b00bfad7bda7d287347efa8d9c0397e309da47c31d4df->doDisplay() /var/www/oroplatform/app/cache/prod/classes.php:4735, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 38. Symfony\Bridge\Twig\Extension\RoutingExtension->getPath() /var/www/oroplatform/app/cache/prod/twig/cc/88/e20ae1750837685b00bfad7bda7d287347efa8d9c0397e309da47c31d4df.php:25, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 39. Symfony\Component\Routing\Router->generate() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Bridge/Twig/Extension/RoutingExtension.php:45, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 40. Symfony\Component\Routing\Router->getGenerator() /var/www/oroplatform/app/cache/prod/classes.php:1571, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 41. Symfony\Bundle\FrameworkBundle\Routing\Router->getRouteCollection() /var/www/oroplatform/app/cache/prod/classes.php:1607, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 42. Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader->load() /var/www/oroplatform/app/cache/prod/classes.php:1796, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 43. Symfony\Component\Config\Loader\DelegatingLoader->load() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Routing/DelegatingLoader.php:57, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 44. Symfony\Component\Routing\Loader\YamlFileLoader->load() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Component/Config/Loader/DelegatingLoader.php:52, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 45. Symfony\Component\Routing\Loader\YamlFileLoader->parseImport() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php:91, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 46. Symfony\Component\Config\Loader\FileLoader->import() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php:153, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 47. Oro\Bundle\AsseticBundle\Routing\AsseticLoader->load() /var/www/oroplatform/vendor/symfony/symfony/src/Symfony/Component/Config/Loader/FileLoader.php:86, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 48. Oro\Bundle\AsseticBundle\Factory\OroAssetManager->getAssets() /var/www/oroplatform/vendor/oro/platform/src/Oro/Bundle/AsseticBundle/Routing/AsseticLoader.php:47, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 49. Oro\Bundle\AsseticBundle\Factory\OroAssetManager->checkLoad() /var/www/oroplatform/vendor/oro/platform/src/Oro/Bundle/AsseticBundle/Factory/OroAssetManager.php:63, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 50. Oro\Bundle\AsseticBundle\Factory\OroAssetManager->load() /var/www/oroplatform/vendor/oro/platform/src/Oro/Bundle/AsseticBundle/Factory/OroAssetManager.php:159, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 51. Twig_Environment->parse() /var/www/oroplatform/vendor/oro/platform/src/Oro/Bundle/AsseticBundle/Factory/OroAssetManager.php:110, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 52. Twig_Parser->parse() /var/www/oroplatform/app/cache/prod/classes.php:3366, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 53. Twig_Parser->subparse() /var/www/oroplatform/vendor/twig/twig/lib/Twig/Parser.php:99, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 54. Twig_TokenParser_Block->parse() /var/www/oroplatform/vendor/twig/twig/lib/Twig/Parser.php:191, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 55. Twig_Parser->subparse() /var/www/oroplatform/vendor/twig/twig/lib/Twig/TokenParser/Block.php:47, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 56. Twig_TokenParser_If->parse() /var/www/oroplatform/vendor/twig/twig/lib/Twig/Parser.php:191, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 57. Twig_Parser->subparse() /var/www/oroplatform/vendor/twig/twig/lib/Twig/TokenParser/If.php:41, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 58. Twig_TokenParser_Set->parse() /var/www/oroplatform/vendor/twig/twig/lib/Twig/Parser.php:191, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 59. Twig_ExpressionParser->parseMultitargetExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/TokenParser/Set.php:47, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 60. Twig_ExpressionParser->parseExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:535, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 61. Twig_ExpressionParser->getPrimary() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:41, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 62. Twig_ExpressionParser->parsePrimaryExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:84, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 63. Twig_ExpressionParser->parsePostfixExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:174, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 64. Twig_ExpressionParser->parseFilterExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:285, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 65. Twig_ExpressionParser->parseFilterExpressionRaw() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:418, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 66. Twig_ExpressionParser->parseArguments() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:430, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 67. Twig_ExpressionParser->parseExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:470, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 68. Twig_ExpressionParser->getPrimary() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:41, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 69. Twig_ExpressionParser->parsePrimaryExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:84, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 70. Twig_ExpressionParser->parseArrayExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:166, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 71. Twig_ExpressionParser->parseExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:225, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 72. Twig_ExpressionParser->getPrimary() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:41, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 73. Twig_ExpressionParser->parsePrimaryExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:84, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 74. Twig_ExpressionParser->parseHashExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:168, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 75. Twig_ExpressionParser->parseExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:268, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 76. Twig_ExpressionParser->getPrimary() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:41, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 77. Twig_ExpressionParser->parsePrimaryExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:84, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 78. Twig_ExpressionParser->parseArrayExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:166, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 79. Twig_ExpressionParser->parseExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:225, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 80. Twig_ExpressionParser->getPrimary() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:41, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 81. Twig_ExpressionParser->parsePrimaryExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:84, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 82. Twig_ExpressionParser->parseHashExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:168, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 83. Twig_ExpressionParser->parseExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:268, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 84. Twig_ExpressionParser->getPrimary() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:41, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 85. Twig_ExpressionParser->parsePrimaryExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:84, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 86. Twig_ExpressionParser->parseArrayExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:166, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 87. Twig_ExpressionParser->parseExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:225, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 88. Twig_ExpressionParser->parseConditionalExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:59, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 89. Twig_ExpressionParser->parseExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:92, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 90. Twig_ExpressionParser->getPrimary() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:41, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 91. Twig_ExpressionParser->parsePrimaryExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:84, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 92. Twig_ExpressionParser->getFunctionNode() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:147, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 93. Twig_ExpressionParser->parseArguments() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:321, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 94. Twig_ExpressionParser->parseExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:470, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 95. Twig_ExpressionParser->getPrimary() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:41, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 96. Twig_ExpressionParser->parsePrimaryExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:84, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 97. Twig_ExpressionParser->parsePostfixExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:174, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 98. Twig_ExpressionParser->parseSubscriptExpression() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:283, referer: http://oroplatform/user/login
[Mon Aug 12 15:47:51 2013] [error] [client 192.168.56.1] PHP 99. Twig_Node_Expression_Array->__construct() /var/www/oroplatform/vendor/twig/twig/lib/Twig/ExpressionParser.php:345, referer: http://oroplatform/user/login

Warning file name too long

Hi there,

I was playing around with OroPlatform and OroCRM. For some reason I needed to reload my fixtures. HOwever I got the following output on a Ubuntu system:

loading [25] Oro\Bundle\SecurityBundle\DataFixtures\ORM\LoadAclRoles

Warning: file_put_contents(/home/michael/public/oro-crm/app/cache/dev/oro_acl/sf2_acl_[sf2_acl_9bc4619176b8667b084f8b6e79b14cbbb0c5913aaa5bd61cb039fb96e0b99209b62ad035_418c5509e2171d55b0aee5c2ea4442b534eb4c4ef005207e8b8f916b9f1fffacccd6945e][7].doctrinecache.data): failed to open stream: File name too long in /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php on line 112

Call Stack:
0.0001 230000 1. {main}() /home/michael/public/oro-crm/app/console:0
0.1296 21556944 2. Symfony\Component\Console\Application->run() /home/michael/public/oro-crm/app/console:23
0.1343 21783304 3. JMS\JobQueueBundle\Console\Application->doRun() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:121
0.1343 21783392 4. Symfony\Bundle\FrameworkBundle\Console\Application->doRun() /home/michael/public/oro-crm/vendor/jms/job-queue-bundle/JMS/JobQueueBundle/Console/Application.php:44
0.1956 26935424 5. Symfony\Component\Console\Application->doRun() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Console/Application.php:96
0.1975 26936688 6. Symfony\Component\Console\Application->doRunCommand() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:191
0.1979 26966832 7. Symfony\Component\Console\Command\Command->run() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:904
0.1982 26971072 8. Doctrine\Bundle\FixturesBundle\Command\LoadDataFixturesDoctrineCommand->execute() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Command/Command.php:244
2.2655 30682416 9. Doctrine\Common\DataFixtures\Executor\ORMExecutor->execute() /home/michael/public/oro-crm/vendor/doctrine/doctrine-fixtures-bundle/Doctrine/Bundle/FixturesBundle/Command/LoadDataFixturesDoctrineCommand.php:106
2.2656 30683672 10. Doctrine\ORM\EntityManager->transactional() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/ORMExecutor.php:85
2.2661 30687304 11. call_user_func() /home/michael/public/oro-crm/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:223
2.2661 30687336 12. Doctrine\Common\DataFixtures\Executor\ORMExecutor->Doctrine\Common\DataFixtures\Executor{closure}() /home/michael/public/oro-crm/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:223
28.4210 96657288 13. Doctrine\Common\DataFixtures\Executor\AbstractExecutor->load() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/ORMExecutor.php:83
28.4212 96657624 14. Oro\Bundle\SecurityBundle\DataFixtures\ORM\LoadAclRoles->load() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/AbstractExecutor.php:121
28.4233 96957384 15. Oro\Bundle\SecurityBundle\DataFixtures\ORM\LoadAclRoles->loadSuperAdminRole() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/DataFixtures/ORM/LoadAclRoles.php:38
28.4265 97051232 16. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->setPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/DataFixtures/ORM/LoadAclRoles.php:56
28.4266 97051536 17. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->setObjectPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:339
28.4266 97051776 18. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->doSetPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:580
28.4266 97052144 19. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->getAcl() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:641
28.4271 97088704 20. Symfony\Component\Security\Acl\Dbal\AclProvider->findAcl() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:989
28.4271 97089192 21. Symfony\Component\Security\Acl\Dbal\MutableAclProvider->findAcls() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/AclProvider.php:86
28.4271 97089472 22. Symfony\Component\Security\Acl\Dbal\AclProvider->findAcls() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/MutableAclProvider.php:116
28.4307 97384456 23. Symfony\Component\Security\Acl\Domain\DoctrineAclCache->putInCache() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/AclProvider.php:174
28.4308 97388240 24. Doctrine\Common\Cache\CacheProvider->save() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Domain/DoctrineAclCache.php:139
28.4308 97388640 25. Doctrine\Common\Cache\FilesystemCache->doSave() /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php:94
28.4308 97391944 26. file_put_contents() /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php:112

Warning: file_put_contents(/home/michael/public/oro-crm/app/cache/dev/oro_acl/sf2_acl_[sf2_acl_9bc4619176b8667b084f8b6e79b14cbbb0c5913aaa5bd61cb039fb96e0b99209b62ad035_f5e638cc78dd325906c1298a0c21fb6be711631380ef1b422ae392db3ca08b8e061aea4e][7].doctrinecache.data): failed to open stream: File name too long in /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php on line 112

Call Stack:
0.0001 230000 1. {main}() /home/michael/public/oro-crm/app/console:0
0.1296 21556944 2. Symfony\Component\Console\Application->run() /home/michael/public/oro-crm/app/console:23
0.1343 21783304 3. JMS\JobQueueBundle\Console\Application->doRun() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:121
0.1343 21783392 4. Symfony\Bundle\FrameworkBundle\Console\Application->doRun() /home/michael/public/oro-crm/vendor/jms/job-queue-bundle/JMS/JobQueueBundle/Console/Application.php:44
0.1956 26935424 5. Symfony\Component\Console\Application->doRun() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Console/Application.php:96
0.1975 26936688 6. Symfony\Component\Console\Application->doRunCommand() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:191
0.1979 26966832 7. Symfony\Component\Console\Command\Command->run() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:904
0.1982 26971072 8. Doctrine\Bundle\FixturesBundle\Command\LoadDataFixturesDoctrineCommand->execute() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Command/Command.php:244
2.2655 30682416 9. Doctrine\Common\DataFixtures\Executor\ORMExecutor->execute() /home/michael/public/oro-crm/vendor/doctrine/doctrine-fixtures-bundle/Doctrine/Bundle/FixturesBundle/Command/LoadDataFixturesDoctrineCommand.php:106
2.2656 30683672 10. Doctrine\ORM\EntityManager->transactional() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/ORMExecutor.php:85
2.2661 30687304 11. call_user_func() /home/michael/public/oro-crm/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:223
2.2661 30687336 12. Doctrine\Common\DataFixtures\Executor\ORMExecutor->Doctrine\Common\DataFixtures\Executor{closure}() /home/michael/public/oro-crm/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:223
28.4210 96657288 13. Doctrine\Common\DataFixtures\Executor\AbstractExecutor->load() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/ORMExecutor.php:83
28.4212 96657624 14. Oro\Bundle\SecurityBundle\DataFixtures\ORM\LoadAclRoles->load() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/AbstractExecutor.php:121
28.4233 96957384 15. Oro\Bundle\SecurityBundle\DataFixtures\ORM\LoadAclRoles->loadSuperAdminRole() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/DataFixtures/ORM/LoadAclRoles.php:38
28.4315 97387144 16. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->setPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/DataFixtures/ORM/LoadAclRoles.php:56
28.4316 97387192 17. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->setObjectPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:339
28.4316 97387368 18. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->doSetPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:580
28.4316 97387416 19. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->getAcl() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:641
28.4316 97387592 20. Symfony\Component\Security\Acl\Dbal\AclProvider->findAcl() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:989
28.4316 97388032 21. Symfony\Component\Security\Acl\Dbal\MutableAclProvider->findAcls() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/AclProvider.php:86
28.4316 97388032 22. Symfony\Component\Security\Acl\Dbal\AclProvider->findAcls() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/MutableAclProvider.php:116
28.4331 97403576 23. Symfony\Component\Security\Acl\Domain\DoctrineAclCache->putInCache() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/AclProvider.php:174
28.4332 97406720 24. Doctrine\Common\Cache\CacheProvider->save() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Domain/DoctrineAclCache.php:139
28.4332 97407072 25. Doctrine\Common\Cache\FilesystemCache->doSave() /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php:94
28.4332 97410352 26. file_put_contents() /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php:112

loading [26] Oro\Bundle\CalendarBundle\DataFixtures\ORM\UpdateAclRoles

Warning: file_put_contents(/home/michael/public/oro-crm/app/cache/dev/oro_acl/sf2_acl_[sf2_acl_6c2b12b23d29e83fdcbabde1797d3d0c319ff9e358de38a5dd9df98f87fc7ed9c56c6e81_f5e638cc78dd325906c1298a0c21fb6be711631380ef1b422ae392db3ca08b8e061aea4e][7].doctrinecache.data): failed to open stream: File name too long in /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php on line 112

Call Stack:
0.0001 230000 1. {main}() /home/michael/public/oro-crm/app/console:0
0.1296 21556944 2. Symfony\Component\Console\Application->run() /home/michael/public/oro-crm/app/console:23
0.1343 21783304 3. JMS\JobQueueBundle\Console\Application->doRun() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:121
0.1343 21783392 4. Symfony\Bundle\FrameworkBundle\Console\Application->doRun() /home/michael/public/oro-crm/vendor/jms/job-queue-bundle/JMS/JobQueueBundle/Console/Application.php:44
0.1956 26935424 5. Symfony\Component\Console\Application->doRun() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Console/Application.php:96
0.1975 26936688 6. Symfony\Component\Console\Application->doRunCommand() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:191
0.1979 26966832 7. Symfony\Component\Console\Command\Command->run() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:904
0.1982 26971072 8. Doctrine\Bundle\FixturesBundle\Command\LoadDataFixturesDoctrineCommand->execute() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Command/Command.php:244
2.2655 30682416 9. Doctrine\Common\DataFixtures\Executor\ORMExecutor->execute() /home/michael/public/oro-crm/vendor/doctrine/doctrine-fixtures-bundle/Doctrine/Bundle/FixturesBundle/Command/LoadDataFixturesDoctrineCommand.php:106
2.2656 30683672 10. Doctrine\ORM\EntityManager->transactional() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/ORMExecutor.php:85
2.2661 30687304 11. call_user_func() /home/michael/public/oro-crm/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:223
2.2661 30687336 12. Doctrine\Common\DataFixtures\Executor\ORMExecutor->Doctrine\Common\DataFixtures\Executor{closure}() /home/michael/public/oro-crm/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:223
28.4372 97416576 13. Doctrine\Common\DataFixtures\Executor\AbstractExecutor->load() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/ORMExecutor.php:83
28.4374 97416912 14. Oro\Bundle\CalendarBundle\DataFixtures\ORM\UpdateAclRoles->load() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/AbstractExecutor.php:121
28.4374 97417336 15. Oro\Bundle\CalendarBundle\DataFixtures\ORM\UpdateAclRoles->updateUserRole() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/CalendarBundle/DataFixtures/ORM/UpdateAclRoles.php:38
28.4396 97472208 16. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->setPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/CalendarBundle/DataFixtures/ORM/UpdateAclRoles.php:51
28.4396 97472304 17. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->setClassPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:343
28.4396 97472560 18. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->doSetPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:562
28.4396 97472608 19. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->getAcl() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:641
28.4397 97472832 20. Symfony\Component\Security\Acl\Dbal\AclProvider->findAcl() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:989
28.4397 97473272 21. Symfony\Component\Security\Acl\Dbal\MutableAclProvider->findAcls() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/AclProvider.php:86
28.4397 97473272 22. Symfony\Component\Security\Acl\Dbal\AclProvider->findAcls() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/MutableAclProvider.php:116
28.4420 97488560 23. Symfony\Component\Security\Acl\Domain\DoctrineAclCache->putInCache() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/AclProvider.php:174
28.4421 97491112 24. Doctrine\Common\Cache\CacheProvider->save() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Domain/DoctrineAclCache.php:139
28.4421 97491464 25. Doctrine\Common\Cache\FilesystemCache->doSave() /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php:94
28.4422 97494096 26. file_put_contents() /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php:112

Warning: file_put_contents(/home/michael/public/oro-crm/app/cache/dev/oro_acl/sf2_acl_[sf2_acl_5bf141491ea35b8f0769a861be4524f3f15e6cd491ef94beeeab5a979e0a6ab8407bd1d2_f5e638cc78dd325906c1298a0c21fb6be711631380ef1b422ae392db3ca08b8e061aea4e][7].doctrinecache.data): failed to open stream: File name too long in /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php on line 112

Call Stack:
0.0001 230000 1. {main}() /home/michael/public/oro-crm/app/console:0
0.1296 21556944 2. Symfony\Component\Console\Application->run() /home/michael/public/oro-crm/app/console:23
0.1343 21783304 3. JMS\JobQueueBundle\Console\Application->doRun() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:121
0.1343 21783392 4. Symfony\Bundle\FrameworkBundle\Console\Application->doRun() /home/michael/public/oro-crm/vendor/jms/job-queue-bundle/JMS/JobQueueBundle/Console/Application.php:44
0.1956 26935424 5. Symfony\Component\Console\Application->doRun() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Console/Application.php:96
0.1975 26936688 6. Symfony\Component\Console\Application->doRunCommand() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:191
0.1979 26966832 7. Symfony\Component\Console\Command\Command->run() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Application.php:904
0.1982 26971072 8. Doctrine\Bundle\FixturesBundle\Command\LoadDataFixturesDoctrineCommand->execute() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Console/Command/Command.php:244
2.2655 30682416 9. Doctrine\Common\DataFixtures\Executor\ORMExecutor->execute() /home/michael/public/oro-crm/vendor/doctrine/doctrine-fixtures-bundle/Doctrine/Bundle/FixturesBundle/Command/LoadDataFixturesDoctrineCommand.php:106
2.2656 30683672 10. Doctrine\ORM\EntityManager->transactional() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/ORMExecutor.php:85
2.2661 30687304 11. call_user_func() /home/michael/public/oro-crm/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:223
2.2661 30687336 12. Doctrine\Common\DataFixtures\Executor\ORMExecutor->Doctrine\Common\DataFixtures\Executor{closure}() /home/michael/public/oro-crm/vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:223
28.4372 97416576 13. Doctrine\Common\DataFixtures\Executor\AbstractExecutor->load() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/ORMExecutor.php:83
28.4374 97416912 14. Oro\Bundle\CalendarBundle\DataFixtures\ORM\UpdateAclRoles->load() /home/michael/public/oro-crm/vendor/doctrine/data-fixtures/lib/Doctrine/Common/DataFixtures/Executor/AbstractExecutor.php:121
28.4374 97417336 15. Oro\Bundle\CalendarBundle\DataFixtures\ORM\UpdateAclRoles->updateUserRole() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/CalendarBundle/DataFixtures/ORM/UpdateAclRoles.php:38
28.4441 97488456 16. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->setPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/CalendarBundle/DataFixtures/ORM/UpdateAclRoles.php:65
28.4442 97488552 17. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->setClassPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:343
28.4442 97488728 18. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->doSetPermission() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:562
28.4442 97488776 19. Oro\Bundle\SecurityBundle\Acl\Persistence\AclManager->getAcl() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:641
28.4443 97489000 20. Symfony\Component\Security\Acl\Dbal\AclProvider->findAcl() /home/michael/public/oro-crm/vendor/oro/platform/src/Oro/Bundle/SecurityBundle/Acl/Persistence/AclManager.php:989
28.4443 97489440 21. Symfony\Component\Security\Acl\Dbal\MutableAclProvider->findAcls() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/AclProvider.php:86
28.4443 97489440 22. Symfony\Component\Security\Acl\Dbal\AclProvider->findAcls() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/MutableAclProvider.php:116
28.4461 97504736 23. Symfony\Component\Security\Acl\Domain\DoctrineAclCache->putInCache() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Dbal/AclProvider.php:174
28.4462 97507296 24. Doctrine\Common\Cache\CacheProvider->save() /home/michael/public/oro-crm/vendor/symfony/symfony/src/Symfony/Component/Security/Acl/Domain/DoctrineAclCache.php:139
28.4462 97507648 25. Doctrine\Common\Cache\FilesystemCache->doSave() /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php:94
28.4462 97510408 26. file_put_contents() /home/michael/public/oro-crm/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php:112

Did I accidently changed some configuration or is there a bug?

Datagrid doesn't work for Entities with string typed primary keys

I want to create a datagrid for an entity with a primary key of type string. The result is always empty. No error message at all.
The reason is a bug in Class Oro\Bundle\GridBundle\Datagrid\ORM\EntityProxyQuery. In method getResultIds() all string ids are quoted. This is wrong and destroyes all values for the next database query.

Wrong:

foreach ($results as $id) {
    $idx[] = is_int($id[$this->getIdFieldName()])
        ? $id[$this->getIdFieldName()]
        : $connection->quote($id[$this->getIdFieldName()]);
}

Correct:

foreach ($results as $id) {
    $idx[] = $id[$this->getIdFieldName()];
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.