Details
-
Bug
-
Resolution: Fixed
-
None
-
Empty show more show less
Description
problem
LanguageResource administration is not running in generic translate5 installation.
reason
The Customer administration was formerly implemented as optional to be used.
Therefore the frontend right to use the customer stuff was removed by default and only enabled on some installations.
Now the LanguageResource administration needs the customer administration, so either the LanguageResource components has to require the needed classes, or we activate the whole CustomerAdministration for all PMs. The latter one is the fastest solution.
solution
INSERT INTO `Zf_acl_rules` (`module`, `role`, `resource`, `right`)
VALUES ('editor', 'pm', 'frontend', 'customerAdministration')
ON DUPLICATE KEY UPDATE `module`='editor';
tlauria Here is the query