Hallo,
ich habe nun den Link
https://www.phoca.cz/documents/50-phoca/ ... o-joomla-3 gefunden und durchgeführt. Mein Fehler war, dass ich schon Daten der alten Version drin hatte. Es musste alles deinstalliert und neu installiert werden, damit die richtigen Tabellen angelegt werden.
Allerdings hat das Manual ein paar kleine Fehler, bei denen jemand, der sich damit nicht auskennt wohl nicht weiterkommt. Vielleicht kann der Ersteller das kurz ändern.
bei Step 6 enthält der Query die Extension ID des Gästebuches. Wenn diese eine andere als 10013 ist, geht es schief und er würde andere Kategorien zuordnen. Also erst in der Tabelle #prefix_extensions die richtige Extension ID des Gästebuches auslesen und im Query ändern.
In Step 8 sind die Anführungszeichen der letzten Zahl falsch - SQL denkt, er hätte es mit einer Spalte zu tun. Hier müssen die richtigen getauscht werden, dann geht es. Der richtige Query wäre also
Code: Select all
UPDATE `jos_phocaguestbook_items` SET `catid` = '8';
UPDATE `jos_phocaguestbook_items` SET `catid` = '0' WHERE `id`='1';
Hello,
I had found now the Link
https://www.phoca.cz/documents/50-phoca/ ... o-joomla-3 and done it, it has worked fine, but I have some things, that are false in the how-to, maybe you can change it:
The query of step 6 is not right, if the phoca guestbook has not the extension id 10013 (by me it has the id 10025)
At first you must look in the table #prefix_extensions which id the guestbook has and then change it.
The query in step 8 has an error: the quotes of the last number are the false. SQL things, you mean a row. You must change it like normal quotes. the others are right.
Maybe it helps someone.
Viele Grüße, wedeen