Skip to main content
Version: 2023.1

Installation

Installation Process

For Pimcore >= 10.5

To install Advanced Object Search Bundle for Pimcore 10.5 or higher, follow the three steps below:

  1. Install the required dependencies:
composer require pimcore/advanced-object-search
  1. Make sure the bundle is enabled in the config/bundles.php file. The following lines should be added:

return [
// ...
AdvancedObjectSearchBundle\AdvancedObjectSearchBundle::class => ['all' => true],
// ...
];
  1. Install the bundle:
bin/console pimcore:bundle:install AdvancedObjectSearchBundle

For Older Versions

To install the Advanced Object Search Bundle for older versions of Pimcore, please run the following commands instead:

composer require pimcore/advanced-object-search
bin/console pimcore:bundle:enable AdvancedObjectSearchBundle
bin/console pimcore:bundle:install AdvancedObjectSearchBundle

Required Backend User Permission

To access the Advanced Object Search feature, a user needs to meet at least one of the following criteria:

  • Be an admin user.
  • Have bundle_advancedsearch_search permission.