Joomla + Mambelfish, Translation doesnt get saved after adding it in backend

How to support more than one language on your site.

Moderator: General Support Moderators

Forum rules
Locked
j3d
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Sat Oct 22, 2005 9:05 am

Joomla + Mambelfish, Translation doesnt get saved after adding it in backend

Post by j3d » Sat Oct 22, 2005 9:59 am

Hi
I have installed mambelfish with the mamberfish init mambot that was provided here in the forums with no problems, configured everything with no problems aswell.
Now I am trying to translate content through backend, I go to Components>Mambelfish>Translate choose the Item I wish to translate, type the text, choose the language and publish, click save and nothing happens. It doesn't get saved and the list still shows "no translations". Anyone had this problem?
Thanks.

j3d
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Sat Oct 22, 2005 9:05 am

Re: Joomla + Mambelfish, Translation doesnt get saved after adding it in backend

Post by j3d » Sat Oct 22, 2005 10:07 am

In fact any actions I do on the items (delete, unpublish) don't affect anything  ???

j3d
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Sat Oct 22, 2005 9:05 am

Re: Joomla + Mambelfish, Translation doesnt get saved after adding it in backend

Post by j3d » Sat Oct 22, 2005 10:24 am

I have found a solution.
It was originally posted here: http://mamboforge.net/tracker/index.php ... 7&atid=109

Code: Select all

line ~295 add "&" (ampersand) before function name
getTable
BEFORE:
~~~~~~~~~~~~~~~~~~~~~~~
<?php
...
function getTable() {
if( !isset($this->referenceInformation["table"])
&&
isset($this->_xmlFile) ) {
$tableElement =
$this->_xmlFile->getElementsByPath('reference/table', 1);
...
?>
~~~~~~~~~~~~~~~~~~~~~~
AFTER
~~~~~~~~~~~~~~~~~~~~~~~
<?php
...
function & getTable() {
if( !isset($this->referenceInformation["table"])
&&
isset($this->_xmlFile) ) {
$tableElement =
$this->_xmlFile->getElementsByPath('reference/table', 1);
...
?>
~~~~~~~~~~~~~~~~~~~~~~
Seems like its a problem caused by PHP 4.40


Locked

Return to “Joom!Fish and Multilingual Sites”