Bonjour,
Je pense que vous trouverez surement une solution sur ce
post
:
That something which can happen in some rare cases since joomla 1.6 when you install components.
Here is another developer who posted the solution:
forum.joomla.org/viewtopic.php?p=2415214#p2415214
For the query to run in your phpmyadmin, it should be
UPDATE `jos_menu`
SET `published` = '1',
`component_id` = ( SELECT extension_id
FROM `jos_extensions`
WHERE element = 'com_hikashop' )
WHERE `title` LIKE '%hikashop%';
Also don't forget to change the jos_ prefix to the prefix you're using for your tables.