FaLang (JoomFish) copyright link

This forum is for general questions about extensions for Joomla! 2.5.

Moderators: pe7er, General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
User avatar
h3lios
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Fri Jun 11, 2010 10:00 am

FaLang (JoomFish) copyright link

Post by h3lios » Mon Feb 20, 2012 7:51 am

Those who maintain multi-lingual Joomla! websites probably know that there's a recent FaLang component for Joomla 1.7/2.5, which is a fork of Joomfish 2.1.7 that has been re-written to be compatible with Joomla! 1.7 and now Joomla! 2.5.

Has anyone figured out where to edit FaLang free version's copyright link yet? I don't mind leaving copyright link in place, just want to edit it a bit as currently it says "FaLang traduction system by Faboba", where "traduction" is a french word, probably due to french origins of the component's author.

umad
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Mon Apr 05, 2010 7:02 am

Re: FaLang (JoomFish) copyright link

Post by umad » Wed Mar 07, 2012 11:50 am

I have just found the answer of "how to remove Joomla FaLang (JoomFish) copyright link?"

Solution:

Falang version: 1.1.1

File Location: {joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php

Line #: 464

Replace following line
$cacheBuf2 = 'PGRpdj48YSBocmVmPSJodHRwOi8vd3d3LmZhYm9iYS5jb20iIHN0eWxlPSJmb250LXNpemU6IDhw'.
'eDt2aXNpYmlsaXR5OiB2aXNpYmxlOyBkaXNwbGF5OmlubGluZTsiIHRpdGxlPSJGYWJvYmEgQ3Im'.
'ZWFjdXRlO2F0aW9uIGRlIGNvbXBvc2FudCANCkpvb21sYSI+RmFMYW5nIHRyYWR1Y3Rpb24gc3lz'.
'dGVtIGJ5IEZhYm9iYTwvYT48L2Rpdj4=';

with this
$cacheBuf2 = '';


Have fun ;)

User avatar
h3lios
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Fri Jun 11, 2010 10:00 am

Re: FaLang (JoomFish) copyright link

Post by h3lios » Wed Mar 07, 2012 12:09 pm

Thank you!

sepp1805
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Wed Apr 04, 2012 5:35 am

Re: FaLang (JoomFish) copyright link

Post by sepp1805 » Wed Apr 04, 2012 5:46 am

umad wrote:I have just found the answer of "how to remove Joomla FaLang (JoomFish) copyright link?"

Solution:

Falang version: 1.1.1

File Location: {joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php

Line #: 464

Replace following line
$cacheBuf2 = 'PGRpdj48YSBocmVmPSJodHRwOi8vd3d3LmZhYm9iYS5jb20iIHN0eWxlPSJmb250LXNpemU6IDhw'.
'eDt2aXNpYmlsaXR5OiB2aXNpYmxlOyBkaXNwbGF5OmlubGluZTsiIHRpdGxlPSJGYWJvYmEgQ3Im'.
'ZWFjdXRlO2F0aW9uIGRlIGNvbXBvc2FudCANCkpvb21sYSI+RmFMYW5nIHRyYWR1Y3Rpb24gc3lz'.
'dGVtIGJ5IEZhYm9iYTwvYT48L2Rpdj4=';

with this
$cacheBuf2 = '';


Have fun ;)
It seems that the above mentioned solution is not correct. I found out that you have to delete the complete string:

{joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php

$cacheBuf2 = 'PGRpdj48YSBocmVmPSJodHRwOi8vd3d3LmZhYm9iYS5jb20iIHN0eWxlPSJmb250LXNpemU6IDhw'.
'eDt2aXNpYmlsaXR5OiB2aXNpYmxlOyBkaXNwbGF5OmlubGluZTsiIHRpdGxlPSJGYWJvYmEgQ3Im'.
'ZWFjdXRlO2F0aW9uIGRlIGNvbXBvc2FudCANCkpvb21sYSI+RmFMYW5nIHRyYWR1Y3Rpb24gc3lz'.
'dGVtIGJ5IEZhYm9iYTwvYT48L2Rpdj4=';

if (JRequest::getCmd('format') != 'raw')
$doc->setBuffer($cacheBuf . base64_decode($cacheBuf2),'component');

The file for replacement you will find in the attachment!
You do not have the required permissions to view the files attached to this post.

mohammadsamaha
Joomla! Apprentice
Joomla! Apprentice
Posts: 6
Joined: Sun Jan 23, 2011 7:26 am

Re: FaLang (JoomFish) copyright link

Post by mohammadsamaha » Fri Apr 06, 2012 4:58 am

Here is another solution:
in the falang options, enter any string in the key field (for example mykey) and save and close.

edit the file "yousite\administrator\components\com_falang\classes\FalangManager.class"
and add this line "$cosi = 'mykey';" after line 454 which is
$cosi = md5($cosi);
save and refresh your site.
regards,
MS

diverso
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 115
Joined: Tue Jun 14, 2011 3:40 pm
Contact:

Re: FaLang (JoomFish) copyright link

Post by diverso » Thu Apr 26, 2012 2:21 pm

sepp1805 wrote:
umad wrote:I have just found the answer of "how to remove Joomla FaLang (JoomFish) copyright link?"

Solution:

Falang version: 1.1.1

File Location: {joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php

Line #: 464

Replace following line
$cacheBuf2 = 'PGRpdj48YSBocmVmPSJodHRwOi8vd3d3LmZhYm9iYS5jb20iIHN0eWxlPSJmb250LXNpemU6IDhw'.
'eDt2aXNpYmlsaXR5OiB2aXNpYmxlOyBkaXNwbGF5OmlubGluZTsiIHRpdGxlPSJGYWJvYmEgQ3Im'.
'ZWFjdXRlO2F0aW9uIGRlIGNvbXBvc2FudCANCkpvb21sYSI+RmFMYW5nIHRyYWR1Y3Rpb24gc3lz'.
'dGVtIGJ5IEZhYm9iYTwvYT48L2Rpdj4=';

with this
$cacheBuf2 = '';


Have fun ;)
It seems that the above mentioned solution is not correct. I found out that you have to delete the complete string:

{joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php

$cacheBuf2 = 'PGRpdj48YSBocmVmPSJodHRwOi8vd3d3LmZhYm9iYS5jb20iIHN0eWxlPSJmb250LXNpemU6IDhw'.
'eDt2aXNpYmlsaXR5OiB2aXNpYmxlOyBkaXNwbGF5OmlubGluZTsiIHRpdGxlPSJGYWJvYmEgQ3Im'.
'ZWFjdXRlO2F0aW9uIGRlIGNvbXBvc2FudCANCkpvb21sYSI+RmFMYW5nIHRyYWR1Y3Rpb24gc3lz'.
'dGVtIGJ5IEZhYm9iYTwvYT48L2Rpdj4=';

if (JRequest::getCmd('format') != 'raw')
$doc->setBuffer($cacheBuf . base64_decode($cacheBuf2),'component');

The file for replacement you will find in the attachment!

Hi,

just wanted to get rid of the link myself, found your solution, problem is that in my case I don't really have that folder "classes" nor the file "falangmanager.class.php" I only have falang.class.php, defines.php and falang.php. Do you have any idea where shall I look?

any hint truly appreciated :)

wizarddesign
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 142
Joined: Sat Apr 28, 2012 3:20 pm

Re: FaLang (JoomFish) copyright link

Post by wizarddesign » Sat Apr 28, 2012 3:28 pm

the delete process worked well for me. in joomla 2.5 and the latest falang
thanks ;)

terab
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Sun Apr 29, 2012 4:16 pm

Re: FaLang (JoomFish) copyright link

Post by terab » Sun Apr 29, 2012 4:38 pm

sepp1805 wrote:
umad wrote:I have just found the answer of "how to remove Joomla FaLang (JoomFish) copyright link?"

Solution:

Falang version: 1.1.1

File Location: {joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php

Line #: 464

Replace following line
$cacheBuf2 = 'PGRpdj48YSBocmVmPSJodHRwOi8vd3d3LmZhYm9iYS5jb20iIHN0eWxlPSJmb250LXNpemU6IDhw'.
'eDt2aXNpYmlsaXR5OiB2aXNpYmxlOyBkaXNwbGF5OmlubGluZTsiIHRpdGxlPSJGYWJvYmEgQ3Im'.
'ZWFjdXRlO2F0aW9uIGRlIGNvbXBvc2FudCANCkpvb21sYSI+RmFMYW5nIHRyYWR1Y3Rpb24gc3lz'.
'dGVtIGJ5IEZhYm9iYTwvYT48L2Rpdj4=';

with this
$cacheBuf2 = '';


Have fun ;)
It seems that the above mentioned solution is not correct. I found out that you have to delete the complete string:

{joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php

$cacheBuf2 = 'PGRpdj48YSBocmVmPSJodHRwOi8vd3d3LmZhYm9iYS5jb20iIHN0eWxlPSJmb250LXNpemU6IDhw'.
'eDt2aXNpYmlsaXR5OiB2aXNpYmxlOyBkaXNwbGF5OmlubGluZTsiIHRpdGxlPSJGYWJvYmEgQ3Im'.
'ZWFjdXRlO2F0aW9uIGRlIGNvbXBvc2FudCANCkpvb21sYSI+RmFMYW5nIHRyYWR1Y3Rpb24gc3lz'.
'dGVtIGJ5IEZhYm9iYTwvYT48L2Rpdj4=';

if (JRequest::getCmd('format') != 'raw')
$doc->setBuffer($cacheBuf . base64_decode($cacheBuf2),'component');

The file for replacement you will find in the attachment!
THX ! Very easy ;)

kerck
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Thu Apr 26, 2012 3:00 pm

Re: FaLang (JoomFish) copyright link

Post by kerck » Sun Jun 24, 2012 10:24 am

this method does not working any more.....New Solution?

Carambozilla
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Tue Jun 26, 2012 2:06 pm

Re: FaLang (JoomFish) copyright link

Post by Carambozilla » Tue Jun 26, 2012 2:18 pm

Hi !
@kerck, @diverso
careful, you'll find the file {joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php (IN THE ADMINISTRATOR/COMPONENT folder in the "/www/administrator/components/com_falang/classes"

In the file "FalangManager.class.php", go to line 468
"$cacheBuf2"
and in line 471, give the property "none" to "display":

Code: Select all

 $cacheBuf2 =
        '<div><a title="Faboba : Cr&eacute;ation de composant'.
        'Joomla" style="font-size: 8px;; visibility: visible;'.
        'display:none;" href="http://www.faboba'.
        '.com" target="_blank">FaLang tra'.
        'nslation syste'.
        'm by Faboba</a></div>';
and the copyright (a little bit too much intrusive) disappears.

Hope it will be helpful.

kerck
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Thu Apr 26, 2012 3:00 pm

Re: FaLang (JoomFish) copyright link

Post by kerck » Wed Jul 25, 2012 11:31 am

:D Thanks

entalzar
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Mon Aug 24, 2009 12:29 am

Re: FaLang (JoomFish) copyright link

Post by entalzar » Sat Oct 27, 2012 4:22 am

None of the proposed solutions work in FaLang version 1.1.7. Any other suggestions?

nanozombi
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sat Jan 17, 2009 12:15 pm

Re: FaLang (JoomFish) copyright link

Post by nanozombi » Sun Oct 28, 2012 12:42 pm

In version 1.1.7 they moved the copyright process to {root}/plugins/system/falangdriver/falangdriver.php
You can either:
change line 63 from 'Joomla" style="font-size: 8px;; visibility: visible;'. to 'Joomla" style="font-size: 8px;; visibility: hidden;'.

or even better, as they are only including the footer in html files, you can change line 69 from if ($doc->_type == 'html') to if ($doc->_type == 'htmlj') and this will do the trick (unless you use htmlj files :p )

Enjoy!
NZB

fakelefteye
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sun Oct 21, 2012 11:20 pm
Location: Cabarete, Dominican Republic
Contact:

Re: FaLang (JoomFish) copyright link

Post by fakelefteye » Tue Oct 30, 2012 10:08 pm

seems like they changed it for joomla 2.5 anyone knows how to do it?

haldebaran
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Wed Jul 01, 2009 3:12 pm

Re: FaLang (JoomFish) copyright link

Post by haldebaran » Fri Nov 23, 2012 11:12 am

Thanxs nanozombi,

The the copyright is located into {root}/plugins/system/falangdriver/falangdriver.php on line 61.

Code: Select all

/*
$cacheBuf2 ='<div><a title="Faboba : Cr&eacute;ation de composant'.
 'Joomla" style="font-size: 8px;; visibility: visible;'.
 'display:inline;" href="http://www.faboba'.
'.com" target="_blank">FaLang tra'.
'nslation syste'.
 'm by Faboba</a></div>';
*/		
$cacheBuf2 = '';
Work fine for me with Joomla 2.5.8 and Falang 1.1.7

marioliveira
Joomla! Apprentice
Joomla! Apprentice
Posts: 48
Joined: Wed Oct 24, 2007 10:39 am

Re: FaLang (JoomFish) copyright link

Post by marioliveira » Sat Dec 08, 2012 8:31 pm

Thanks, haldebaran, your solution worked fine for me with Joomla 2.5.8 and falang 1.1.7!

Thanks again!

tomjacksondj
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Fri Dec 14, 2012 8:51 am

Re: FaLang (JoomFish) copyright link

Post by tomjacksondj » Fri Dec 14, 2012 11:31 am

I tried to get rid of Joomla Falang (JoomFish) copyright link by replacing the line number 464 with - $cacheBuf2 = ''; But unfortunately my attempt ended in a failure as I didn’t get the desired results. It would be great if someone can elaborate this whole process in a detailed manner.
Last edited by imanickam on Fri Dec 14, 2012 12:19 pm, edited 1 time in total.
Reason: Manual Signature Removed

User avatar
snajperista
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 159
Joined: Sun Feb 25, 2007 11:10 am
Location: Serbia Belgrade

Re: FaLang (JoomFish) copyright link

Post by snajperista » Thu Dec 20, 2012 10:10 pm

nanozombi wrote:In version 1.1.7 they moved the copyright process to {root}/plugins/system/falangdriver/falangdriver.php
You can either:
change line 63 from 'Joomla" style="font-size: 8px;; visibility: visible;'. to 'Joomla" style="font-size: 8px;; visibility: hidden;'.

or even better, as they are only including the footer in html files, you can change line 69 from if ($doc->_type == 'html') to if ($doc->_type == 'htmlj') and this will do the trick (unless you use htmlj files :p )

Enjoy!
NZB
THX

katalinakas
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Sun Feb 10, 2013 6:15 pm

Re: FaLang (JoomFish) copyright link

Post by katalinakas » Sun Feb 10, 2013 6:29 pm

THANKS

emmanu
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Sat Apr 01, 2006 7:26 pm

Re: FaLang (JoomFish) copyright link

Post by emmanu » Wed Mar 06, 2013 1:12 pm

umad wrote:I have just found the answer of "how to remove Joomla FaLang (JoomFish) copyright link?"

Solution:

Falang version: 1.1.1

File Location: {joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php

Line #: 464

Replace following line
$cacheBuf2 = 'PGRpdj48YSBocmVmPSJodHRwOi8vd3d3LmZhYm9iYS5jb20iIHN0eWxlPSJmb250LXNpemU6IDhw'.
'eDt2aXNpYmlsaXR5OiB2aXNpYmxlOyBkaXNwbGF5OmlubGluZTsiIHRpdGxlPSJGYWJvYmEgQ3Im'.
'ZWFjdXRlO2F0aW9uIGRlIGNvbXBvc2FudCANCkpvb21sYSI+RmFMYW5nIHRyYWR1Y3Rpb24gc3lz'.
'dGVtIGJ5IEZhYm9iYTwvYT48L2Rpdj4=';

with this
$cacheBuf2 = '';


Have fun ;)
Hello! Tried delete variable and tried cancel a content of the variable but copyright link still continue appear in all pages. How to remove it in falang 1.2 version?

vachos
Joomla! Apprentice
Joomla! Apprentice
Posts: 21
Joined: Sun Oct 14, 2012 5:30 am

Re: FaLang (JoomFish) copyright link

Post by vachos » Mon Mar 11, 2013 1:27 pm

version 1.2 falang some help nothing work!

wojtek_em
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Mon Mar 11, 2013 5:35 pm

Re: FaLang (JoomFish) copyright link

Post by wojtek_em » Mon Mar 11, 2013 5:43 pm

vachos wrote:version 1.2 falang some help nothing work!

in version 1.2 you must do this:
nanozombi wrote:In version 1.1.7 they moved the copyright process to {root}/plugins/system/falangdriver/falangdriver.php
You can either:
change line 63 from 'Joomla" style="font-size: 8px;; visibility: visible;'. to 'Joomla" style="font-size: 8px;; visibility: hidden;'.
I have this in line 69. and it works fine

janvdlaar
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Tue Jul 02, 2013 7:28 am

Replace instead of remove copyright link

Post by janvdlaar » Tue Jul 02, 2013 7:35 am

I had to build a multilanguage site and I used Falang to manage the languages. It is truely a nice component if you are forced to migrate a site that contains Joomfish translations. The copyrightlink was placed right near my articles and disturbed the design of the website.

Instead of completely remove the link I decided to place te link at the bottom of the template footer. I think that is a more fair solution.

Halaster2013
Joomla! Apprentice
Joomla! Apprentice
Posts: 14
Joined: Sun Jul 07, 2013 2:56 pm
Location: Mexico City
Contact:

Re: FaLang link

Post by Halaster2013 » Sun Jul 07, 2013 6:29 pm

plugins/system/falangdriver go to falangdriver.php open remove

title="Faboba : Création de composant'.
'Joomla" style="font-size: 8px;; visibility: visible;'.
'display:inline;" href="http://www.faboba'.
'.com" target="_blank">FaLang tra'.
'nslation syste'.
'm by Faboba


This worked for me, but you don't have to delete it - just set 'display:none;...

User avatar
bhaumik
Joomla! Apprentice
Joomla! Apprentice
Posts: 20
Joined: Fri May 18, 2012 6:24 am

Re: FaLang (JoomFish) copyright link

Post by bhaumik » Thu Apr 17, 2014 7:16 am

To remove "FaLang translation system by Faboba" link go to

plugins/system/falang dri ver/falang dri ver.php

go to function private function setBuffer()

in that you will find variable name $cacheBuf2

Set it to $cacheBuf2 = '';

Enjoy :pop

biirc
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 145
Joined: Thu Mar 12, 2009 11:34 am

Re: FaLang (JoomFish) copyright link

Post by biirc » Thu Apr 17, 2014 7:50 am

Hi,

Or you can buy a basic version and support developpment.

:)

Stéphane
Falang Team.

User avatar
ltheme
Joomla! Guru
Joomla! Guru
Posts: 666
Joined: Wed Dec 04, 2013 2:43 pm
Location: US
Contact:

Re: FaLang (JoomFish) copyright link

Post by ltheme » Mon Jul 20, 2015 9:00 am

Thanks for your info.
Steve (Mr.) - Fan of Joomla! CMS over 10 years
https://ltheme.com/joomla-templates/ <= 250+ Joomla! templates
https://agethemes.com/free-joomla-templates/ <= Joomla! templates on marketplace
^Compatible with Joomla! 3.x, Joomla! 4.x and Joomla! 5.x

rod_rio
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Tue Oct 19, 2010 10:28 pm

Re: FaLang (JoomFish) copyright link

Post by rod_rio » Thu Sep 24, 2015 6:08 am

bhaumik wrote:To remove "FaLang translation system by Faboba" link go to

plugins/system/falang dri ver/falang dri ver.php

go to function private function setBuffer()

in that you will find variable name $cacheBuf2

Set it to $cacheBuf2 = '';

Enjoy :pop

For version 2.1.0, besides what was written above, go to:

administrator/components/com_falang/classes/FalangManager.class.php

And there you'll find two more setBuffer() functions to remove...

iordanidisc
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Tue Nov 07, 2017 10:49 am

Re: FaLang (JoomFish) copyright link

Post by iordanidisc » Tue Nov 07, 2017 10:52 am

Carambozilla wrote:Hi !
@kerck, @diverso
careful, you'll find the file {joomlaroot}/administrator/components/com_falang/classes/FalangManager.class.php (IN THE ADMINISTRATOR/COMPONENT folder in the "/www/administrator/components/com_falang/classes"

In the file "FalangManager.class.php", go to line 468
"$cacheBuf2"
and in line 471, give the property "none" to "display":

Code: Select all

 $cacheBuf2 =
        '<div><a title="Faboba : Cr&eacute;ation de composant'.
        'Joomla" style="font-size: 8px;; visibility: visible;'.
        'display:none;" href="http://www.faboba'.
        '.com" target="_blank">FaLang tra'.
        'nslation syste'.
        'm by Faboba</a></div>';
and the copyright (a little bit too much intrusive) disappears.

Hope it will be helpful.
Thanks it worked for me


Locked

Return to “Extensions for Joomla! 2.5”