Reputation: 577
I have Symfony CMF (se1.1) installed with Corebundle, Blockbundle & Adminbundle all working without errors. Now I installed Sonata Cachebundle (needed for Sonata Pagebundle) and the site now shows this error:
InvalidConfigurationException: Unrecognized options "symfony" under "sonata_cache.caches"
(I used Composer to install this bundle.)
Here a list of my configuration files regarding the Cachebundle;
app/AppKernel.php:
new Sonata\CacheBundle\SonataCacheBundle(),
app/autoload.php
<?php
use Doctrine\Common\Annotations\AnnotationRegistry;
use Composer\Autoload\ClassLoader;
/**
* @var ClassLoader $loader
*/
$loader = require __DIR__.'/../vendor/autoload.php';
$loader->add('Sonata', __DIR__);
AnnotationRegistry::registerLoader(array($loader, 'loadClass'));
return $loader;
app/config/config.yml
sonata_cache:
caches:
esi:
token: an unique security key # a random one is generated by default
servers:
- varnishadm -T 127.0.0.1:2000 {{ COMMAND }} "{{ EXPRESSION }}"
ssi:
token: an unique security key # a random one is generated by default
mongo:
database: cache
collection: cache
servers:
- {host: 127.0.0.1, port: 27017, user: username, password: pASS'}
- {host: 127.0.0.2}
memcached:
prefix: test # prefix to ensure there is no clash between instances
servers:
- {host: 127.0.0.1, port: 11211, weight: 0}
predis:
servers:
- {host: 127.0.0.1, port: 6379, database: 42}
apc:
token: s3cur3 # token used to clear the related cache
prefix: test # prefix to ensure there is no clash between instances
servers:
- { domain: kooqit.local, ip: 127.0.0.1, port: 80}
symfony:
token: s3cur3 # token used to clear the related cache
php_cache_enabled: true # Optional (default: false), clear APC or PHP OPcache
types: [mytype1, mycustomtype2] # Optional, you can restrict allowed cache types
servers:
- { domain: kooqit.local, ip: 127.0.0.1, port: 80}
app/config/routing.yml
sonata_cache_cache:
resource: '@SonataCacheBundle/Resources/config/routing/cache.xml'
prefix: /
I hope someone can point out what exactly is going wrong here..
Upvotes: 0
Views: 1196
Reputation: 577
The final answer is actually pretty simple (that's always the case when looking back).
In the app/config/config.yml file it is (obviously) not allowed to have 'options' wich are not properly configured in Symfony CMF.
An option like 'mongo' will produce an error message if this function is not properly installed and configured in Symfony CMF (sounds logical).
So, my advice (credits to @ReynierPM) is to indeed comment out those sections that give an error. But beware that if you later on will use the full 'mongo' functionality, you have to uncomment that specific section to activate cache for it.
Upvotes: 0
Reputation: 18690
Your configuration have some errors: indent before caches
and others should be four spaces, working example:
sonata_cache:
caches:
esi:
token: an unique security key # a random one is generated by default
servers:
- varnishadm -T 127.0.0.1:2000 {{ COMMAND }} "{{ EXPRESSION }}"
ssi:
token: an unique security key # a random one is generated by default
mongo:
database: cache
collection: cache
servers:
- {host: 127.0.0.1, port: 27017, user: username, password: pASS'}
- {host: 127.0.0.2}
memcached:
prefix: test # prefix to ensure there is no clash between instances
servers:
- {host: 127.0.0.1, port: 11211, weight: 0}
predis:
servers:
- {host: 127.0.0.1, port: 6379, database: 42}
apc:
token: s3cur3 # token used to clear the related cache
prefix: test # prefix to ensure there is no clash between instances
servers:
- { domain: kooqit.local, ip: 127.0.0.1, port: 80}
symfony:
token: s3cur3 # token used to clear the related cache
php_cache_enabled: true # Optional (default: false), clear APC or PHP OPcache
types: [mytype1, mycustomtype2] # Optional, you can restrict allowed cache types
servers:
- { domain: kooqit.local, ip: 127.0.0.1, port: 80}
Try it!!! And of course as always run the commands cache:clear
and cache:warmup
Upvotes: 1