Hello,
I installed sfAjaxWebdebug plugin as described in the plugin webpage. In my gestion's settings.yml I enabled sfAjaxWebdebug:
dev:
.settings:
# E_ALL | E_STRICT = 4095
error_reporting: 6143
web_debug: on
cache: off
no_script_name: off
etag: on
enabled_modules: [default, ajaxWebdebug]
And when I use this link:
<?=
link_to_remote(
image_tag('file_broken.png'),
array(
'url' => 'admin/admingar?do=del&id='.$schema->getId(),
'update' => 'schema_'.$schema->getServicesId().'_'.$schema->getJour(),
'confirm' => "Êtes-vous sûr de vouloir supprimer le schéma de garde et tous les gardes associées ?",
'complete' => 'getAjaxWebDebug();'
)
);
?>
I've got a popup that says: You must enable the module "ajaxWebdebug"
Then cache has already been cleared many times and it doesn't work.
Any idea ? A bug ?