CATEGORY ACCESS GREATER THAN 255
Posted: 04 Oct 2011, 14:30
Hi,
first of all this component is smart and useful.
I only find an issue setting access to a category when the IDentification of the Access is greater than 255.
In developing phase, (with many deletion an ID greater than 255 is not so weird).
To fix this problem i suggest to change the file install.bak.sql row 23:
`access` tinyint(3) unsigned NOT NULL default '0',
(you can define access id from the JOOMLA table viewlevels, only if ID is less than 255)
TO
`access` int(11) unsigned NOT NULL default '0',
(now you can define any access id from the JOOMLA table viewlevels)
Best regards
Lorenzo Frigerio
first of all this component is smart and useful.
I only find an issue setting access to a category when the IDentification of the Access is greater than 255.
In developing phase, (with many deletion an ID greater than 255 is not so weird).
To fix this problem i suggest to change the file install.bak.sql row 23:
`access` tinyint(3) unsigned NOT NULL default '0',
(you can define access id from the JOOMLA table viewlevels, only if ID is less than 255)
TO
`access` int(11) unsigned NOT NULL default '0',
(now you can define any access id from the JOOMLA table viewlevels)
Best regards
Lorenzo Frigerio