Your URL is wrong. Look at the last part &Itemid
. The fact is that Itemid must always be a positive integer which corresponds to the primary key of a #__menu
table entry. Since you have not provided a value, it's implicit value is NULL
which is equivalent to numeric zero (0
). Therefore, it is an invalid value in Joomla!, which is why the Suspicious Core Parameter feature is correctly blocking it.
You need to fix your custom component.
For what it's worth, creating a .htaccess
file is irrelevant. The bug fixed in 7.4.9 was that the Suspicious Core Parameter feature always applied the CMD
filter instead of an appropriate filter per core parameter (you can see this is the case in the release notes of 7.4.9). 7.4.8 did not complain because a NULL
value does satisfy the CMD
filter which accepts either NULL, or any string consisting of the characters a-z, A-Z, numbers 0-9, dots, and underscores.
Nicholas K. Dionysopoulos
Lead Developer and Director
🇬🇷Greek: native 🇬🇧English: excellent 🇫🇷French: basic • 🕐 My time zone is Europe / Athens
Please keep in mind my timezone and cultural differences when reading my replies. Thank you!