Page 1 of 1

Installation problem

Posted: 19 Nov 2011, 20:41
by riavanheerden
I installed version 3.1.1, but the link in the backend of joomla under components is not there.

I looked in the database and under the #_extensions table i can see the entry for com_phocagallery but its not displayed in the drop down when i click on components

I am using Joomla 1.7 and I have SEF turned on

I can still access the component by using the actual address - administrator/index.php?option=com_phocagallery

but this is not the solution, I have searched but cant find the answer, I hope someone can help me.

Kind Regards

Re: Installation problem

Posted: 23 Nov 2011, 11:22
by mar_ujita
I think I have the same problem
When you installed phoca gallery you can see 'the component is correctly'? I don't received this message
When you access the component by using 'administrator/index.php?option=com_phocagallery' there is a message 'Error cargando Componente: com_phocagallery, 1'?

Re: Installation problem

Posted: 23 Nov 2011, 17:50
by Jan
Hi, in some of RC of Joomla! there were some problems, see:
viewtopic.php?f=1&t=12837

Re: Installation problem

Posted: 23 Nov 2011, 18:50
by riavanheerden
Thank you Jan your link solved my problem

I used this code in my database to update the tables

Code: Select all

UPDATE `jos_menu`
SET `published` =  '1',
`component_id` = ( SELECT extension_id
FROM `jos_extensions`
WHERE element = 'com_phocagallery' )
WHERE `title` LIKE '%Phoca Gallery%';
and now I have a menu option for phoca gallery under components

Kind Regards
Ria

Re: Installation problem

Posted: 23 Nov 2011, 20:54
by Jan
Ok