Tcpdf error could not include font definition file helvetica

I am a web programmer with no in-depth knowledge of fonts and am struggling to get TCPDF to include our custom OpenType font. We have bought OpenType font files (.oft), which are not protected by any

Are you sure that you are getting that error when calling addTTFfont()? The reason I ask is because I checked the TCPDF code (just did a global search on «Could not include font definition file») and that message only appears in the addFont() method.

These two methods can be a bit confusing, but I wrote myself some notes a few months ago, which I will partially reproduce below in the hope that it helps you somehow:

  • addTTFfont() — The primary function of this method is to convert a font from TTF (or OTF) to the «raw» version that TCPDF needs. The way this function is implemented you could, in theory, use it as your primary method of adding fonts to a document. It will check the tcpdf font folder first and if the converted files aren’t there it will go ahead and do the conversion. It is only a little bit more overhead, but still not my preferred method of adding fonts to files, as you need to know what style of font you are converting for the process to even work successfully. IMO, it is better to use this method to pre-convert any fonts that you plan on using and simply use addFont() to add the «raw» versions to the document.

  • AddFont() — This adds a «raw» (ie. already converted) font to the document, which means it is then available for writing text.

  • SetFont() — This sets the font for the next chunk of text that you write.

So I would use addTTFfont() to pre-convert the font to the «raw» version, then use addFont() and setFont() in the code that actually creates the PDF.

If addFont() is failing with the error message above, it means it cannot find the font definition file. Keep in mind that if you call addFont() with style set (‘i’, ‘b’, ‘bi’, etc), all it does is append this to the file name (before the extension).

Most importantly, you need to make sure that your call to addTTFFont() is producing the «raw» font files and saving them into your fonts folder. There should be three files per style, with extensions of .php, .z and .ctg.z. So if you converted a font called blah.ttf you will end up with blah.php, blah.z and blah.ctg.z. If you convert blah bold.ttf, TCPDF will figure out that it is a bold font and append the ‘b’ to the end of the file names: blahb.php, blahb.z and blahb.ctg.z.

Hopefully there will be some nugget in here that will help! Good luck!

0 Пользователей и 1 Гость просматривают эту тему.

  • 10 Ответов
  • 6641 Просмотров

Здравствуйте.

В Joomla я абсолютный ноль, видимо отсюда и вопрос: после оформления заказа нажимаю на кнопочку «Подтвердить» и тут же экран озаряется надписью «TCPDF ERROR: Could not include font definition file: helvetica».

Собственно, как вылечить эту заразу?

Joomla 1.5, joomShoping 2.9

Заранее спасибо.

А на родном шаблоне что происходит?

А на родном шаблоне что происходит?

Не совсем понял вопрос, но после нажатия просто белый экран и сверху эта строчка.

Счет в ПДФ пытается сформироваться, а шрита helvetica, который он использует не существует, он не может его сгенерить потому.
Вообщето используются по дефолту вроде freesans шрифт.

Счет в ПДФ пытается сформироваться, а шрита helvetica, который он использует не существует, он не может его сгенерить потому.
Вообщето используются по дефолту вроде freesans шрифт.

А как это исправить можно?

Вы правили счет который формируется в пдф ?
И главное после чего это начало происходить ?

Здравствуйте. у меня тож такая же проблема, что делать где искать ??((((

Здравствуйте.

В Joomla я абсолютный ноль, видимо отсюда и вопрос: после оформления заказа нажимаю на кнопочку «Подтвердить» и тут же экран озаряется надписью «TCPDF ERROR: Could not include font definition file: helvetica».

Собственно, как вылечить эту заразу?

Joomla 1.5, joomShoping 2.9

Заранее спасибо.

onemg от чайника ))чайнику я решила эту проблему так НастройкизаказПрисылать PDF-счет для заказчика-убрать галочку и всё))

а если ПДФ отправление всё таки нужно, то откуда взять и куда запихать шрифт?

Загрузи логотип сайта и сразу после после подтверждения заказа JoomShopping выдаёт такую ошибку.

TCPDF error: Not a JPEG file: /home/мой хост/мой сайт/htdocs/www/components/com_jshopping/images/header.jpg

 Картинка есть и она загружена на сайте в папку компонента — components/com_jshopping/images/header.jpg

 Подскажите как исправить  ошибку

Записан

Тут дарят бакс просто за регистрацию! Успей получить!
Все советы на форуме раздаю бесплатно, то есть даром. Индивидуально бесплатно консультирую только по вопросам стоимости индивидуальных консультаций

Moderator: General Support Moderators

adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

PDF TCPDF Error using Helvetica

I get the following error when trying to use the PDF icon:

Warning: TCPDF::include(/language/pdf_fonts/helvetica.php) [function.TCPDF-include]: failed to open stream: No such file or directory in /libraries/tcpdf/tcpdf.php on line 1661

Warning: TCPDF::include() [function.include]: Failed opening ‘language/pdf_fonts/helvetica.php’ for inclusion (include_path=’.:/usr/local/php5/lib/php:/usr/local/lib/php’) in /libraries/tcpdf/tcpdf.php on line 1661
TCPDF error: Could not include font definition file

Can anyone help me resolve this?

Thanks


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Wed Mar 26, 2008 4:26 pm

Is this because i’m using Helvetica as my font on the site? Surely it can’t be as simple as that?


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Thu Mar 27, 2008 10:48 am

The tcpdf font to use when creating a pdf has to be included in the language/pdf_fonts/ folder
It is defined in the language/xx-XX/xx-XX.xml file (i.e.e for English in language/en-GB/en-GB.xml

Code: Select all

<pdfFontName>freesans</pdfFontName>

The default font in Joomla! official release is freesans.
It is included in the 1.5.x releases.
I suggest you use 1.5.2 as the tcpdf library has also been updated.

If you use another language, the fonts may be available here:
http://joomlacode.org/gf/project/pdffonts15/frs/

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Thu Mar 27, 2008 3:51 pm

Ok, thanks for this — i think i understand. Because i’m using HELVETICA as my font on the site, it is trying to export a PDF using HELVETICA- but because the HELVETICA file can’t be found in the Language folder it can’t export the PDF.

If i can locate the ‘HELVETICA.PHP’ file and include it in the language folder — should this resolve the issue? Do i also need to edit the ‘Language/en-GB/en-GB.xml’ file to use:

Code: Select all

<pdfFontName>helvetica</pdfFontName>

instead of freesans?


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Thu Mar 27, 2008 4:11 pm

adam_fake wrote:Ok, thanks for this — i think i understand. Because i’m using HELVETICA as my font on the site, it is trying to export a PDF using HELVETICA- but because the HELVETICA file can’t be found in the Language folder it can’t export the PDF.

If i can locate the ‘HELVETICA.PHP’ file and include it in the language folder — should this resolve the issue? Do i also need to edit the ‘Language/en-GB/en-GB.xml’ file to use:

Code: Select all

<pdfFontName>helvetica</pdfFontName>

instead of freesans?

No. Font used in the site is not concerned.
Use the freesans font as all European languages do. It is composed of 3 files.
Look in the pdf_fonts folder to check they are present and then make sure <pdfFontName>freesans</pdfFontName> is in your site xml file.
Are you using English as your site language? If not which language?

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Thu Mar 27, 2008 5:07 pm

Yeah — i’m using English as the language (en-GB). Inside my ‘pdf_fonts’ folder i have the following:

freesans.ctg.z
freesans.php
freesans.z
freesansb.php
freesansbi.php
freesansbold.ctg
freesansbold.z
freesansboldoblique.ctg.z
freesansboldoblique.z
freesansi.php
freesansoblique.ctg.z
freesansoblique.z
index.html
tcpdf.php

In my ‘en_GB.xml’ file i have

Code: Select all

<pdfFontName>freesans</pdfFontName>


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Fri Mar 28, 2008 6:01 am

tcpdf.php has nothing to do in this folder.
Looks like you may be missing something in your install.
I suggest you upgrade to 1.5.2 using a the full stable release and check again.

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Sat Mar 29, 2008 10:18 pm

Hmm, i’m currently using 1.5.2 — installed via my web host’s ‘one-click’ install option. Shame as i don’t want to have to start again…


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Sun Mar 30, 2008 7:21 am

You do not have to start again, just pick-up 1.5.2 full package on Joomlacode and overwrite your remote install (after putting aside anything custom you would have modified in core)

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Sun Mar 30, 2008 10:26 am

Forgive my ignorance on all of this — So i go ahead and put aside the templates/css that i’ve changed and simply replace everything else with a fresh upload of 1.5.2?


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Sun Mar 30, 2008 2:11 pm

Forgive us, me made a mistake in tcpdf.php

Comment this line:
require_once(dirname(__FILE__).’/config/tcpdf_config.php’);
i.e.
change to
//require_once(dirname(__FILE__).’/config/tcpdf_config.php’);

we found some other mistakes… ;)

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Sun Mar 30, 2008 4:41 pm

I’ve made this change and re-uploaded the TCPDF.php file — is there any other changes required? I’m still getting the same error unfortunately.


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Sun Mar 30, 2008 4:55 pm

I noticed this in the TCPDF.php file — my error appears on line 1661, this comment is just above it:

Code: Select all

		/**
		* Imports a TrueType or Type1 font and makes it available. It is necessary to generate a font definition file first with the makefont.php utility. The definition file (and the font file itself when embedding) must be present either in the current directory or in the one indicated by FPDF_FONTPATH if the constant is defined. If it could not be found, the error "Could not include font definition file" is generated.
		* Support UTF-8 Unicode [Nicola Asuni, 2005-01-02].
		* <b>Example</b>:<br />
		* <pre>
		* $pdf->AddFont('Comic','I');
		* // is equivalent to:
		* $pdf->AddFont('Comic','I','comici.php');
		* </pre>
		* @param string $family Font family. The name can be chosen arbitrarily. If it is a standard family name, it will override the corresponding font.
		* @param string $style Font style. Possible values are (case insensitive):<ul><li>empty string: regular (default)</li><li>B: bold</li><li>I: italic</li><li>BI or IB: bold italic</li></ul>
		* @param string $file The font definition file. By default, the name is built from the family and style, in lower case with no space.
		* @since 1.5
		* @see SetFont()
		*/


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Sun Mar 30, 2008 6:10 pm

The original error you posted is NOT line 1661.
The hack above should take care of it.

What is the exact error you get now?
It looks like you are not using Joomla! 1.5.2 and that this is the 1.5.3 tcpdf libary you have.

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Sun Mar 30, 2008 7:04 pm

The error i encounter is the original in the first post. I’ve tried to enter what you suggested and i still get the same error…

I’m using Joomla 1.5.2 — the ‘one-click install’ from my webhost. All i’ve done to my joomla site is alter the template HTML and CSS to suit my design/layout. Just seem to come across the PDF problem….


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Mon Mar 31, 2008 6:44 am

Upgrade from our 1.5.2 release full package and edit the right tcpdf.php as I suggested.

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


User avatar

esedic

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 145
Joined: Wed Dec 27, 2006 1:55 pm
Contact:

Re: PDF TCPDF Error using Helvetica

Post

by esedic » Fri Apr 04, 2008 9:57 am

I have the same problem and I can’t resolve it.
The hack infograf768 proposed did not worked.

I’ve noticed that in /libraries/tcpdf/config/tcpdf_config.php there are certain values like installation path, url path, etc.

Should these values be changed, because this looks strange to me:

Code: Select all

	/**
	 * installation path
	 */
	define ("K_PATH_MAIN", "D:/Inetpub/wwwroot/_OPENSOURCE/tcpdf/");
	
	/**
	 * url path
	 */
	define ("K_PATH_URL", "http://localhost/_OPENSOURCE/tcpdf/");


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Fri Apr 04, 2008 10:18 am

/libraries/tcpdf/config/tcpdf_config.php should not be used by the system.
It should be replaced by our own definitions in pdf.php (see hack above).
The little hack overwrite the access to tcpdf_config.php

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


User avatar

esedic

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 145
Joined: Wed Dec 27, 2006 1:55 pm
Contact:

Re: PDF TCPDF Error using Helvetica

Post

by esedic » Fri Apr 04, 2008 10:50 am

Ok, I understand now, but I still have a problem with pdf export as uncommenting that line didn’t worked.

Code: Select all

Warning: addfont(freesans.php): failed to open stream: No such file or directory in /var/www/vhosts/finmart.si/subdomains/beta/httpdocs/libraries/tcpdf/tcpdf.php on line 1661

Warning: addfont(): Failed opening 'freesans.php' for inclusion (include_path='.:.:.:') in /var/www/vhosts/finmart.si/subdomains/beta/httpdocs/libraries/tcpdf/tcpdf.php on line 1661
TCPDF error: Could not include font definition file

It’s killing me because I’m developing this site and I thought it was almost finished and this error is quite substantial. :(


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Fri Apr 04, 2008 1:12 pm

This means the freesans 3 files fonts are not included in the folder pdf_fonts
As these come with Joomla install, I guess yoy have to check your install

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Fri Apr 04, 2008 4:15 pm

I’m in the middle of replacing all the files to see if its going to make a difference. Just backing up my site and database, once thats done i’ll let you know if its worked. Also — mine was doing the same, looking for the Freesans files which were clearly in the pdf_fonts folder.


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Wed Apr 09, 2008 11:23 am

Just completed the upgrade and it didn’t make a difference — still get the same problem!


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Wed Apr 09, 2008 1:31 pm

SOLVED — and its actually such a simple thing that was causing the problem.

I selected the HTML tab in the article’s editor, low and behold for some reason, possibly when copying the text into the article, it had tagged the text with ‘<font face=»helvetica»></font>.

After removing this, everything works fine, didn’t need to re-install or do any upgrades, just this! Exports the PDF no problem. All of that for one simple little problem.


User avatar

infograf768

Joomla! Master
Joomla! Master
Posts: 19132
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: PDF TCPDF Error using Helvetica

Post

by infograf768 » Thu Apr 10, 2008 9:20 am

adam_fake wrote:SOLVED — and its actually such a simple thing that was causing the problem.

I selected the HTML tab in the article’s editor, low and behold for some reason, possibly when copying the text into the article, it had tagged the text with ‘<font face=»helvetica»></font>.

After removing this, everything works fine, didn’t need to re-install or do any upgrades, just this! Exports the PDF no problem. All of that for one simple little problem.

Thanks for sharing.
An interesting issue indeed.
Which once more demonstrates that CSS are always better.

Jean-Marie Simonet / infograf · http://www.info-graf.fr
———————————
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group


adam_fake

Joomla! Enthusiast
Joomla! Enthusiast
Posts: 135
Joined: Thu Oct 04, 2007 8:15 pm

Re: PDF TCPDF Error using Helvetica

Post

by adam_fake » Thu Apr 10, 2008 3:38 pm

CSS all the way — i can only think that it added that piece of code when i’d copied into the text editor from another web-page….

God knows, but i hope this helps shed some light for future reference. Thanks for everyones help!



Return to “Language — Joomla! 1.5”


Jump to

  • Joomla! Announcements
  • ↳   Announcements
  • ↳   Announcements Discussions
  • Joomla! 4.x — Ask Support Questions Here
  • ↳   General Questions/New to Joomla! 4.x
  • ↳   Installation Joomla! 4.x
  • ↳   Administration Joomla! 4.x
  • ↳   Migrating and Upgrading to Joomla! 4.x
  • ↳   Extensions for Joomla! 4.x
  • ↳   Security in Joomla! 4.x
  • ↳   Templates for Joomla! 4.x
  • ↳   Search Engine Optimization (Joomla! SEO) in Joomla! 4.x
  • ↳   Language — Joomla! 4.x
  • ↳   Performance — Joomla! 4.x
  • ↳   Joomla! 4.x Coding
  • Joomla! 3.x — Ask Support Questions Here
  • ↳   General Questions/New to Joomla! 3.x
  • ↳   Installation Joomla! 3.x
  • ↳   Joomla! 3.x on IIS webserver
  • ↳   Administration Joomla! 3.x
  • ↳   Access Control List (ACL) in Joomla! 3.x
  • ↳   Migrating and Upgrading to Joomla! 3.x
  • ↳   Security in Joomla! 3.x
  • ↳   Extensions for Joomla! 3.x
  • ↳   Templates for Joomla! 3.x
  • ↳   Search Engine Optimization (Joomla! SEO) in Joomla! 3.x
  • ↳   Language — Joomla! 3.x
  • ↳   Performance — Joomla! 3.x
  • ↳   Joomla! 3.x Coding
  • Joomla! Versions which are End of Life
  • ↳   Joomla! 2.5 — End of Life 31 Dec 2014
  • ↳   General Questions/New to Joomla! 2.5
  • ↳   Installation Joomla! 2.5
  • ↳   Joomla! 2.5 on IIS webserver
  • ↳   Administration Joomla! 2.5
  • ↳   Access Control List (ACL) in Joomla! 2.5
  • ↳   Migrating and Upgrading to Joomla! 2.5
  • ↳   Security in Joomla! 2.5
  • ↳   Extensions for Joomla! 2.5
  • ↳   Templates for Joomla! 2.5
  • ↳   Search Engine Optimization (Joomla! SEO) in Joomla! 2.5
  • ↳   Language — Joomla! 2.5
  • ↳   Performance — Joomla! 2.5
  • ↳   Joomla! 1.5 — End of Life Sep 2012
  • ↳   General Questions/New to Joomla! 1.5
  • ↳   Installation 1.5
  • ↳   Joomla! 1.5 on IIS webserver
  • ↳   Administration 1.5
  • ↳   Migrating and Upgrading to Joomla! 1.5
  • ↳   Security in Joomla! 1.5
  • ↳   Extensions for Joomla! 1.5
  • ↳   Templates for Joomla! 1.5
  • ↳   Search Engine Optimization (Joomla! SEO) in Joomla! 1.5
  • ↳   Language — Joomla! 1.5
  • ↳   Performance — Joomla! 1.5
  • ↳   Joomla! 1.0 — End of Life 22 July 2009
  • ↳   Installation — 1.0.x
  • ↳   Upgrading — 1.0.x
  • ↳   Security — 1.0.x
  • ↳   3rd Party/Non Joomla! Security Issues
  • ↳   Administration — 1.0.x
  • ↳   Extensions — 1.0.x
  • ↳   Components
  • ↳   Modules
  • ↳   Plugins/Mambots
  • ↳   WYSIWYG Editors — 1.0.x
  • ↳   Integration & Bridges — 1.0.x
  • ↳   phpbb — Joomla! Integration
  • ↳   Templates & CSS — 1.0.x
  • ↳   Language — 1.0.x
  • ↳   Joom!Fish and Multilingual Sites
  • ↳   Performance — 1.0.x
  • ↳   General Questions — 1.0.x
  • Joomla! International Language Support
  • ↳   International Zone
  • ↳   Arabic Forum
  • ↳   تنبيهات هامة
  • ↳   الدروس
  • ↳   4.x جوملا!
  • ↳   جوملا! 1.6/1.7
  • ↳   الأسئلة الشائعة
  • ↳   التثبيت و الترقية
  • ↳   الحماية — و تحسين السرعة والأداء
  • ↳   لوحة التحكم
  • ↳   الإضافات البرمجية
  • ↳   تعريب جوملا! و الإضافات البرمجية
  • ↳   القوالب و التصميم
  • ↳   صداقة محركات البحث
  • ↳   القسم العام
  • ↳   1.5 !جوملا
  • ↳   الأسئلة الشائعة
  • ↳   التثبيت و الترقية
  • ↳   الحماية — و تحسين السرعة والأداء
  • ↳   لوحة التحكم
  • ↳   الإضافات البرمجية
  • ↳   تعريب جوملا! و الإضافات البرمجية
  • ↳   القوالب و التصميم
  • ↳   صداقة محركات البحث
  • ↳   القسم العام
  • ↳   جوملا! 1.0
  • ↳   الأسئلة الشائـعة
  • ↳   التثبيت
  • ↳   لوحة التحكم
  • ↳   الإضافات البرمجية
  • ↳   الإضافات المعرّبة
  • ↳   القوالب و التصميم
  • ↳   الحماية — تحسين السرعة والأداء — صداقة محركات البحث
  • ↳   القسم العام
  • ↳   القسم العام
  • ↳   !عرض موقعك بجوملا
  • ↳   الأرشيف
  • ↳   Bengali Forum
  • ↳   Bosnian Forum
  • ↳   Joomla! 1.5
  • ↳   Instalacija i prvi koraci
  • ↳   Ekstenzije
  • ↳   Templejti
  • ↳   Moduli
  • ↳   Prevodi i dokumentacija
  • ↳   Joomla! 1.7 / Joomla! 1.6
  • ↳   Catalan Forum
  • ↳   Notícies
  • ↳   Temes sobre l’administració
  • ↳   Temes sobre la traducció
  • ↳   Components, mòduls i joombots
  • ↳   Temes de disseny
  • ↳   Webs realitzades amb Joomla!
  • ↳   Offtopics
  • ↳   Chinese Forum
  • ↳   Croatian Forum
  • ↳   Danish Forum
  • ↳   Meddelelser
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x (Anbefalet til nye installationer. Nyeste funktionalitet)
  • ↳   Installation, backup, opdatering og flytning — Godt igang
  • ↳   Administration — Generel brug
  • ↳   Komponenter, Moduler og Plugins
  • ↳   Template, CSS og Design
  • ↳   Nethandel, betaling m.m.
  • ↳   Ældre versioner (disse vedligeholdes ikke længere fra officiel side)
  • ↳   Joomla! 2.5 (Supporteres indtil 31. dec. 2014)
  • ↳   Installation, backup, opdatering og flytning — Godt igang
  • ↳   Administration — Generel brug
  • ↳   Komponenter, Moduler og Plugins
  • ↳   Template, CSS og Design
  • ↳   Nethandel, betaling m.m.
  • ↳   Joomla 1.5 (Tidligere langtidssupporteret version indtil sep. 2012)
  • ↳   Installation, backup, opdatering og flytning — Godt igang
  • ↳   Administration — Generel brug
  • ↳   Komponenter, Moduler og Plugins
  • ↳   Template, CSS og Design
  • ↳   Nethandel, betaling m.m.
  • ↳   Joomla 1.0 (Udgået version, der blev afløst af 1.5 i 2008)
  • ↳   Installation, backup, opdatering og flytning — Godt igang
  • ↳   Administration — Generel brug
  • ↳   Komponenter, Moduler og Mambots
  • ↳   Template, CSS og Design
  • ↳   Nethandel, betaling m.m.
  • ↳   Oversættelser (lokalisering)
  • ↳   Joomla brugergrupper i Danmark
  • ↳   JUG Kolding
  • ↳   JUG København
  • ↳   JUG Odense
  • ↳   JUG Århus
  • ↳   JUG Sorø
  • ↳   Kommerciel (betalt) hjælp ønskes
  • ↳   SEO
  • ↳   FAQ — Dokumentation og vejledninger
  • ↳   Vis dit websted
  • ↳   Afviste ‘Vis dit websted’ indlæg
  • ↳   Diverse (Off topic)
  • ↳   Dutch Forum
  • ↳   Aankondigingen
  • ↳   Algemene vragen
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Installatie 3.x
  • ↳   Extensies 3.x
  • ↳   Templates 3.x
  • ↳   Joomla! 2.5
  • ↳   Installatie 2.5
  • ↳   Componenten 2.5
  • ↳   Modules 2.5
  • ↳   Plugins 2.5
  • ↳   Templates 2.5
  • ↳   Joomla! 1.5
  • ↳   Installatie
  • ↳   Componenten
  • ↳   Modules
  • ↳   Plugins
  • ↳   Templates
  • ↳   Joomla! 1.0
  • ↳   Installatie 1.0.x
  • ↳   Componenten 1.0.x
  • ↳   Modules 1.0.x
  • ↳   Mambots 1.0.x
  • ↳   Templates 1.0.x
  • ↳   Vertalingen
  • ↳   Offtopic
  • ↳   Show jouw website
  • ↳   Filipino Forum
  • ↳   International Support Center
  • ↳   Pinoy General Discussion & Archives
  • ↳   Site Showcase
  • ↳   Events
  • ↳   Design Tips and Tricks
  • ↳   Tsismis Zone
  • ↳   Pinoy Translation Zone
  • ↳   Pinoy Forum Archives
  • ↳   Joomla! Philippines Local Forum www.joomla.org.ph
  • ↳   Finnish Forum
  • ↳   French Forum
  • ↳   Les annonces!
  • ↳   Le bistrot!
  • ↳   L’expo!
  • ↳   J! 4.x — L’atelier!
  • ↳   J! 3.x — L’atelier!
  • ↳   3.x — Questions générales, nouvel utilisateur
  • ↳   3.x — Installation, migration et mise à jour
  • ↳   3.x — Sécurité et performances
  • ↳   3.x — Extensions tierce partie
  • ↳   3.x — Templates et design
  • ↳   3.x — Développement
  • ↳   3.x — Ressources
  • ↳   J! 2.5.x — L’atelier!
  • ↳   2.5 — Questions générales
  • ↳   2.5 — Installation, migration et mise à jour
  • ↳   2.5 — Sécurité et performances
  • ↳   2.5 — Extensions tierce partie
  • ↳   2.5 — Templates et design
  • ↳   2.5 — Développement
  • ↳   2.5 — Ressources
  • ↳   J! 1.5.x — L’atelier!
  • ↳   1.5 — Questions générales
  • ↳   1.5 — Installation, migration et mise à jour
  • ↳   1.5 — Sécurité et performances
  • ↳   1.5 — Extensions tierce partie
  • ↳   1.5 — Templates et design
  • ↳   1.5 — Développement
  • ↳   1.5 — Ressources
  • ↳   J! 1.0.x — L’atelier!
  • ↳   1.0 — Questions générales
  • ↳   1.0 — Installation et mise à jour
  • ↳   1.0 — Sécurité
  • ↳   1.0 — Extensions tierce partie
  • ↳   1.0 — Templates et design
  • ↳   1.0 — Développement
  • ↳   1.0 — Ressources
  • ↳   Besoin d’un professionel ?
  • ↳   Extensions Open Source pour Joomla!
  • ↳   German Forum
  • ↳   Ankündigungen
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Allgemeine Fragen
  • ↳   Installation und erste Schritte
  • ↳   Komponenten, Module, Plugins
  • ↳   Template, CSS und Designfragen
  • ↳   Entwicklerforum
  • ↳   Zeige Deine Webseite
  • ↳   Joomla! 2.5
  • ↳   Allgemeine Fragen
  • ↳   Installation und erste Schritte
  • ↳   Komponenten, Module, Plugins
  • ↳   Template, CSS und Designfragen
  • ↳   Entwicklerforum
  • ↳   Zeige Deine Webseite
  • ↳   Joomla! 1.5
  • ↳   Allgemeine Fragen
  • ↳   Installation und erste Schritte
  • ↳   Komponenten, Module, Plugins
  • ↳   Template, CSS und Designfragen
  • ↳   Entwicklerforum
  • ↳   Zeige Deine Webseite
  • ↳   Professioneller Service
  • ↳   Sonstiges (Offtopic)
  • ↳   Archiv
  • ↳   Joomla! 1.0
  • ↳   Allgemeine Fragen 1.0.x
  • ↳   Installation und erste Schritte 1.0.x
  • ↳   Komponenten, Module, Mambots 1.0.x
  • ↳   Template, CSS und Designfragen 1.0.x
  • ↳   Entwicklerforum 1.0.x
  • ↳   Zeige Deine Webseite 1.0.x
  • ↳   Greek Forum
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Joomla! 2.5.x
  • ↳   Joomla! 1.5.x
  • ↳   Joomla! 1.0.x
  • ↳   Hebrew Forum
  • ↳   Indic Languages Forum
  • ↳   Indonesian Forum
  • ↳   FAQ
  • ↳   Bantuan
  • ↳   Komponen
  • ↳   Modul
  • ↳   Template
  • ↳   Diskusi
  • ↳   Italian Forum
  • ↳   Guide
  • ↳   Traduzioni
  • ↳   Componenti — Moduli — Plugins
  • ↳   Template — Grafica
  • ↳   Notizie
  • ↳   Prodotti Open Source per Joomla!
  • ↳   Richieste professionali
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Joomla! 2.5.x
  • ↳   Joomla! 1.x
  • ↳   Latvian Forum
  • ↳   Lithuanian Forum
  • ↳   Joomla! 4.x
  • ↳   Joomla! 1.5
  • ↳   Joomla! 1.7 / Joomla! 1.6
  • ↳   Joomla! 1.0
  • ↳   Vertimai ir Kalba
  • ↳   Malaysian Forum
  • ↳   Solved
  • ↳   Norwegian Forum
  • ↳   Informasjon
  • ↳   Arkiverte annonseringer
  • ↳   FAQ — Ofte spurte spørsmål
  • ↳   Arkiv
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Administrasjon/installasjon
  • ↳   Migrering/Oppdatering
  • ↳   Template, CSS og design
  • ↳   Komponenter/moduler/programutvidelser
  • ↳   Sikkerhet
  • ↳   Generelt
  • ↳   Netthandel, betaling m.m.
  • ↳   VirtueMart
  • ↳   Andre nettbutikkløsninger
  • ↳   Generelt
  • ↳   Oversettelser
  • ↳   Fremvisning av sider (Show off)
  • ↳   Avviste fremvisninger
  • ↳   Diverse (off topic)
  • ↳   Kommersiell hjelp ønskes
  • ↳   Eldre versjoner av Joomla!
  • ↳   Joomla! 1.0
  • ↳   Administrasjon/installasjon
  • ↳   Template, CSS og design
  • ↳   Komponenter/moduler/mambots
  • ↳   Sikkerhet
  • ↳   Generelt
  • ↳   Joomla! 1.5
  • ↳   Administrasjon/installasjon
  • ↳   Migrering/Oppdatering
  • ↳   Template, CSS og design
  • ↳   Komponenter/moduler/programutvidelser
  • ↳   Sikkerhet
  • ↳   Generelt
  • ↳   Joomla! 2.5
  • ↳   Administrasjon/installasjon
  • ↳   Migrering/Oppdatering
  • ↳   Template, CSS og design
  • ↳   Komponenter/moduler/programutvidelser
  • ↳   Sikkerhet
  • ↳   Generelt
  • ↳   Persian Forum
  • ↳   قالب ها
  • ↳   مدیریت
  • ↳   سوالهای عمومی
  • ↳   نصب
  • ↳   مامبوت ها
  • ↳   ماژولها
  • ↳   کامپوننت ها
  • ↳   Polish Forum
  • ↳   Instalacja i aktualizacja
  • ↳   Administracja
  • ↳   Komponenty, moduły, wtyczki
  • ↳   Szablony
  • ↳   Paczta i Podziwiajta
  • ↳   Modyfikacje i własne rozwiązania
  • ↳   Tłumaczenia
  • ↳   FAQ
  • ↳   Tips&Tricks
  • ↳   Dokumentacja
  • ↳   Profesjonalne usługi
  • ↳   Portuguese Forum
  • ↳   Componentes, módulos e mambots
  • ↳   Programação e desenvolvimento
  • ↳   Segurança
  • ↳   Sites dos usuários
  • ↳   Off-topic
  • ↳   Tradução
  • ↳   Templates
  • ↳   Romanian Forum
  • ↳   Traduceri
  • ↳   Russian Forum
  • ↳   Объявления по Joomla!
  • ↳   Безопасность Joomla!
  • ↳   Joomla 4.x — Задайте здесь свой вопрос по поддержке
  • ↳   Joomla 3.x — Задайте здесь свой вопрос по поддержке
  • ↳   Общие вопросы/Новичок в Joomla! 3.x
  • ↳   Установка Joomla! 3.x
  • ↳   Миграция и переход на Joomla! 3.x
  • ↳   Расширения для Joomla! 3.x
  • ↳   Многоязычные веб-сайты на Joomla 3.x
  • ↳   Joomla 2.5 — Задайте здесь свой вопрос по поддержке
  • ↳   Общие вопросы/Новичок в Joomla! 2.5
  • ↳   Установка Joomla! 2.5
  • ↳   Расширения для Joomla! 2.5
  • ↳   Русский язык Joomla! 2.5
  • ↳   Serbian/Montenegrin Forum
  • ↳   Tehnička pitanja
  • ↳   Instalacija i početnička pitanja
  • ↳   Šabloni
  • ↳   Prevod i dokumentacija
  • ↳   Ćaskanje
  • ↳   Bezbednost
  • ↳   Joomla! dodaci
  • ↳   Pravna pitanja
  • ↳   Arhiva
  • ↳   Joomla! Događaji i Zajednica
  • ↳   Izlog (spisak) sajtova radjenih u Joomla! CMS-u
  • ↳   Profesionalne usluge
  • ↳   Slovak Forum
  • ↳   Spanish Forum
  • ↳   Joomla! 4.x
  • ↳   Joomla! 3.x
  • ↳   Migración y actualización a Joomla 3.x
  • ↳   Versiones de Joomla! obsoletas
  • ↳   Joomla! 2.5
  • ↳   Joomla! 1.5
  • ↳   Extensiones
  • ↳   Plantillas (templates) y diseño
  • ↳   Idioma y traducciones
  • ↳   SEO para Joomla!
  • ↳   Seguridad y rendimiento
  • ↳   Productos de Código Abierto para Joomla!
  • ↳   Servicios profesionales
  • ↳   Salón de la comunidad Ñ
  • ↳   Swedish Forum
  • ↳   Meddelanden
  • ↳   Forum Joomla! 4.x
  • ↳   Forum Joomla! 3.x
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och plugin
  • ↳   Mallar (templates) och design
  • ↳   Äldre versioner
  • ↳   Forum Joomla! 1.0
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och Mambots
  • ↳   Mallar (templates) och design
  • ↳   Forum Joomla! 1.7 / Joomla! 1.6
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och plugin
  • ↳   Mallar (templates) och design
  • ↳   Forum Joomla! 1.5
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och plugin
  • ↳   Mallar (templates) och design
  • ↳   Forum Joomla! 2.5
  • ↳   Allmänna frågor
  • ↳   Användning och administration
  • ↳   Installation, backup och säkerhet
  • ↳   Komponenter, moduler och plugin
  • ↳   Mallar (templates) och design
  • ↳   Översättning
  • ↳   Webbplatser gjorda i Joomla
  • ↳   Webbplatser J! 3.x
  • ↳   Webbplatser J! 2.5
  • ↳   Webbplatser Joomla! 1.7 / Joomla! 1.6
  • ↳   Webbplatser J! 1.5
  • ↳   Webbplatser J! 1.0
  • ↳   Kommersiell hjälp önskas
  • ↳   Diverse (off topic)
  • ↳   Tamil Forum
  • ↳   Thai Forum
  • ↳   โชว์เว็บไซต์ของคุณที่สร้างด้วยจูมล่า
  • ↳   เคล็ดลับการใช้งานส่วนต่างๆ เกี่ยวกับจ&#
  • ↳   คอมโพเน้นท์ โมดูล ปลักอิน ต่างๆ ที่ติดตั
  • ↳   อับเดดข่าวสารเกี่ยวกับจูมล่าลายไทย
  • ↳   Turkish Forum
  • ↳   Duyurular
  • ↳   Dersler
  • ↳   Genel Sorular
  • ↳   Bileşen, Modül, Bot
  • ↳   Eklenti Haberleri
  • ↳   Temalar
  • ↳   Vietnamese Forum
  • ↳   Gặp gỡ và giao lưu
  • ↳   Joomla Tiếng Việt
  • ↳   Cài đặt — Cấu hình
  • ↳   Thành phần mở rộng cho Joomla!
  • ↳   Hỏi đáp Joomla! 3.x
  • ↳   Hỏi đáp Joomla! 2.5
  • ↳   Hỗ trợ kỹ thuật
  • ↳   Bài viết cũ
  • ↳   Thiết kế Template
  • ↳   Joomla! 1.5
  • ↳   Hỏi đáp Joomla! 4.x
  • ↳   Welsh Forum
  • Other Forums
  • ↳   Open Source Products for Joomla!
  • ↳   The Lounge
  • ↳   Forum Post Assistant (FPA)
  • Joomla! Development Forums
  • Joomla! Official Sites & Infrastructure
  • ↳   docs.joomla.org — Feedback/Information
  • ↳   extensions.joomla.org — Feedback/Information
  • ↳   joomla.com — Feedback/Information
  • ↳   Sites & Infrastructure — Feedback/Information
  • ↳   Archived Boards — All boards closed
  • ↳   Design and Accessibility — Archived
  • ↳   Quality and Testing — Locked and Archived
  • ↳   Joomla! 1.0.x_Q&T
  • ↳   Q&T 1.0.x Resolved
  • ↳   Known Issues
  • ↳   Superseded Issues
  • ↳   Archive
  • ↳   Q&T 1.0.x Resolved — Archived
  • ↳   Known Issues — Archive
  • ↳   Superseded Issues — Archive
  • ↳   Joomla! 3.x Bug Reporting
  • ↳   Third Party Testing for Joomla! 1.5
  • ↳   Q&T 1.5.x Resolved
  • ↳   Joomla! 1.5 BETA
  • ↳   Joomla! 1.5 BETA 2
  • ↳   Reaction to the ‘Letter to the community’
  • ↳   Reaction to New Project Name
  • ↳   Logo Competition
  • ↳   Humor, Fun and Games
  • ↳   Libraries
  • ↳   patTemplate
  • ↳   com_connector — Multi Joomla Bridge
  • ↳   CiviCRM Support
  • ↳   CiviCRM Installation Issues
  • ↳   FAQ Archive
  • ↳   FAQ Discussion Board
  • ↳   3rd Party Extensions FAQ
  • ↳   FAQs not moved
  • ↳   3rd Party/Non Joomla! Security FAQ
  • ↳   Joomla! Coding 101
  • ↳   Joombie Tools of the Trade
  • ↳   Joombie Coding Q/A
  • ↳   Joombie Think Tank
  • ↳   Joombie Developer Lab
  • ↳   Joomla Forge — Archived
  • ↳   Non-Profit Organizations and Joomla!
  • ↳   Schools and Universities
  • ↳   Bangsamoro Forum
  • ↳   Joomla! 1.5 Template Contest
  • ↳   SMF — Simplemachines.org Forum
  • ↳   GPL Discussion
  • ↳   Security Announcements — Old
  • ↳   Tips & Tricks — Moving
  • ↳   Submit Your Suggested Tips & Tricks to Docs.joomla.org now please.
  • ↳   Google Summer of Code and GHOP
  • ↳   Google Summer of Code 2008
  • ↳   Proposed projects
  • ↳   Student area
  • ↳   Past Google Summer of Code Editions
  • ↳   Google’s Highly Open Participation Contest
  • ↳   Documentation
  • ↳   Suggestions, Modifications, and Corrections
  • ↳   Archive
  • ↳   1.5 Archive
  • ↳   Suggestions, Modifications & Corrections
  • ↳   Submit
  • ↳   Feedback and Suggestions
  • ↳   Applications for participation in the Development Workgroup
  • ↳   Development
  • ↳   1.5 Site Showcase — Archived
  • ↳   1.0 x Site Showcase — Archived.
  • ↳   Feature Requests — White Papers — Archived
  • ↳   Under Review — Archived
  • ↳   Accepted — Archived
  • ↳   Not Accepted — Archived
  • ↳   Wishlists and Feature Requests — Archive
  • ↳   Wishlist Archives — Archived
  • ↳   Spanish Forum — Archive
  • ↳   Papelera
  • ↳   Tutoriales
  • ↳   General
  • ↳   Salón de la Joomlaesfera hispanohablante
  • ↳   Danish Forum — Archive
  • ↳   Diskussion af Meddelelser + Sikkerhedsmeddelelser + FAQ
  • ↳   Shop.Joomla.org
  • ↳   Joomla! 1.6 RC Support [closed]
  • ↳   Joomla! 1.0 Coding
  • ↳   Core Hacks and Patches
  • ↳   Joomla! 2.5 Beta Support
  • ↳   People.joomla.org — Feedback/Information
  • ↳   Joomla! 1.5 Bug Reporting
  • ↳   Joomla! 1.5 Coding
  • ↳   Joomla! 3 Beta Support
  • ↳   Trending Topics
  • ↳   Help wanted in the community
  • ↳   templates.joomla.org — Feedback/Information
  • ↳   Certification
  • ↳   Albanian Forum
  • ↳   Azeri Forum
  • ↳   Urdu Forum
  • ↳   Basque Forum
  • ↳   Itzulpenaren inguruan
  • ↳   Laguntza teknikoa
  • ↳   Belarusian Forum
  • ↳   Maltese Forum
  • ↳   Hungarian Forum
  • ↳   Slovenian Forum
  • ↳   Japanese Forum
  • ↳   Khmer Forum
  • ↳   ពិពណ៌​ស្ថាន​បណ្ដាញ​ជុំឡា
  • ↳   ជុំឡា​ខ្មែរ​មូលដ្ឋានីយកម្ម
  • ↳   Community Blog Discussions
  • ↳   JoomlaCode.org
  • ↳   Joomla! Marketing and PR Team
  • ↳   resources.joomla.org — Feedback/Information
  • ↳   Training.Joomla.org
  • ↳   OpenSourceMatters.org
  • ↳   magazine.joomla.org — Feedback/Information
  • ↳   Site Showcase
  • ↳   Joomla! 4 Related
  • ↳   Joomla! Events
  • ↳   Joomla! Ideas Forum
  • ↳   Registered Joomla! User Groups
  • ↳   Joomla! 2.5 Coding
  • ↳   Joomla! 2.5 Bug Reporting
  • ↳   User eXperience (UX)
  • ↳   Joomla! Working Groups
  • ↳   Translations

Понравилась статья? Поделить с друзьями:
  • Tcm 0a31 ошибка вольво
  • Tcl ошибка lg стиральная машина что это
  • Tcl error command
  • Tbmux32 exe ошибка приложения
  • Tbm error wincor