Domanda

That look easy but... I'm trying to find the translation content but In which table in phpmyadmin ? Thank you!

È stato utile?

Soluzione

In J1.5, the tables included "jf" in the name - jos_jf_content.

If you can determine the right table, this SQL should get you started:

SELECT
    j.`introtext`,j.`fulltext`      
    jf.`introtext`,jf.`fulltext`      
FROM jos_content AS j
INNER JOIN jmo_jfcontent AS jf ON (j.id = jf.id)
WHERE (j.alias ='branchen')

It wont run as is, because I don't know the table structure or column names, but it should be relatively easy to adapt when you identify the table and the primary key.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top