Как обновить jquery в joomla 3
Перейти к содержимому

Как обновить jquery в joomla 3

  • автор:

Обновить JQuery — Joomla 3.x: Установка, обновление и настройка

Сегодня важный день для проекта Joomla! Мы отмечаем два года напряженной работы наших добровольцев, решивших выпускать новую основную версию каждые два года. После большого количества обсуждений, спринтов по написанию кода и устранения ошибок этот день наконец настал и мы с гордостью объявляем о выпуске новой мажорной ( major ) версии Joomla 5.0, наряду с Joomla 4.4.

В Joomla Extensions Directory появился тег совместимости с Joomla 5.

Joomla-разработчики, проверившие совместимость своих расширений с Joomla 5 могут поставить галочку ��

JoomlaDay Spain, Madrid.

В Мадриде, Испания 5-6 октября 2023 года проходит Joomla Day — конференция, посвящённая как новичкам, так и профессионалам, работающим с Joomla.

Joomla 3. Как обновить движок

Joomla — это один из лучших бесплатных движков, на которых строится множество сайтов, порталов и даже магазинов. Не смотря на хорошее качество данной CMS, периодически требуется ее обновлять.

Делать это нужно для защиты от уязвимостей движка. Бывает, что хакеры находят слабые места в CMS и используют их в своих целях. Постоянные обновления позволяют защищать движок от данных опасностей и улучшать работу системы в целом. Поэтому обновляйтесь как можно чаще.

Давайте рассмотрим простой способ обновления Joomla 3

Для начала рекомендую очистить старый кэш сайта в двух местах, как на картинке и сделать бэкап файлов и БД.

После чего нажать Компоненты > Обновление joomla. Откроется окно:

Если не вдаваться в подробности, то достаточно просто нажать кнопку Установить обновление и через пару минут, у вас будет самая свежая версия Joomla 3.

В этом окошке можно просто скачать свежую версию Joomla архивом и перезалить файлы вручную, через FTP менеджер.

Также, здесь можно выбрать Способ установки через FTP — выставить свои данные и обновить движок.

Если вы удачно обновите движок, то увидите соответствующее уведомление, а в данной странице будет:

Также, чтобы не было такой проблемы

Переключите на сервере версию php на 7-ю. Желаю успешного обновления.

Joomla 3 — How to override jQuery with newer version?

In Joomla 3.x jQuery is coming by default with Joomla, but the version is a bit outdated (v.1.8.3) and I have a script that needs a newer version. What can I do?

51.1k 13 13 gold badges 105 105 silver badges 142 142 bronze badges
asked Sep 25, 2013 at 8:04
Valentin Despa Valentin Despa
41.2k 18 18 gold badges 80 80 silver badges 106 106 bronze badges

3 Answers 3

In your template you can also override the jQuery file.

Where jquery.min.js is a newer version of jQuery.

That way Joomla will load your file and not the default version when using JHtml::_(‘jquery.framework’);

Caution: Test well, so that you don’t have other issues with the newer jQuery version.

1 1 1 silver badge
answered Sep 25, 2013 at 8:04
Valentin Despa Valentin Despa
41.2k 18 18 gold badges 80 80 silver badges 106 106 bronze badges
JHtml::_(‘jquery.framework’); imports jQuery from media/jui/js , not the template folder.
Sep 25, 2013 at 10:24

Yes, BUT if you follow the instructions above, it will load the one under templates, if you put one there.

Sep 25, 2013 at 10:48

Just wanted to add that it works also for overriding Bootstrap. Just add your new bootstrap.min.js inside JOOMLA_ROOT/templates/YOURTEMPLATE/js/jui/ and bootstrap.min.css inside JOOMLA_ROOT/templates/YOURTEMPLATE/css/jui/ and you’re done.

Dec 10, 2014 at 17:49

If you are not satisfied with the @Lodder’s method you could try this below. I think it caters your requirement. You are able to control your jQuery & jQuery UI versions.

answered Sep 26, 2013 at 3:35
44.8k 42 42 gold badges 157 157 silver badges 243 243 bronze badges

With Joomla 3.x, the jquery.js and jquery.min.js files are located in:

Simply download both, rename them so that they have the same file names, then upload to the location provided above.

Hope this helps

answered Sep 25, 2013 at 10:21
19.8k 10 10 gold badges 59 59 silver badges 100 100 bronze badges
Not such a great idea. An later update may override them with another unwanted version.
Sep 25, 2013 at 10:49

such as? Assuming the OP is running Joomla 3.1.5 (which they should be), the next update will be 3.2, which uses jquery 1.10.2. so any overrides will be ok 😉

Sep 25, 2013 at 11:06

I was just pointing out that they may be replaced (without the user noticing this or having a way to control this). Yes, in this case jQuery will be 1.10.2 in 3.2. But this is why overrides exist: not to get surprised by a update.

Sep 25, 2013 at 11:15

Yup, I full agree with you about overrides and why they are used. I hate it when people say they have been editing core files etc lol. The only reason why I suggested my answer specifically because the next jquery version in the next Joomla update will be 1.10.2 and therefore wouldn’t be an issue if anything was overridden. The only problem with adding jquery.js to your template folder is that it WILL be removed if the template is updated

The Joomla! Forum™

How to update jQuery? Topic is solved

General questions relating to Joomla! 3.x.

Forum rules
Forum Rules
Absolute Beginner’s Guide to Joomla! Forum Post Assistant — If you are serious about wanting help, you should use this tool to help you post.
Windows Defender SmartScreen Issues
4 posts • Page 1 of 1

Joomla! Guru

JurajB Joomla! Guru
Posts: 616 Joined: Fri Oct 02, 2015 3:28 pm

How to update jQuery?

Post by JurajB » Wed Aug 05, 2020 1:38 pm

Hello, Im running bootstrap 4.5
wappalyzer says I have jQuery 1.12, in my template index.php I have cdn for jQuery 3.5.1 (latest).
How do I load new jQuery. Can you post here the script or solution before I start doing this by altering the files?
Thanks for advice.

Joomla! Master

Webdongle Joomla! Master
Posts: 43078 Joined: Sat Apr 05, 2008 9:58 pm

Re: How to update jQuery?

Post by Webdongle » Wed Aug 05, 2020 3:00 pm

Joomla! Master

pe7er Joomla! Master
Posts: 24692 Joined: Thu Aug 18, 2005 8:55 pm Location: Nijmegen, Netherlands Contact:

Re: How to update jQuery?

Post by pe7er » Wed Aug 05, 2020 3:06 pm

You could unset jQuery in your template index.php and then load a newer jQuery.

In Joomla 3.8 and higher you could add the following name spaces at the top of your template’s index.php

use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper;

Add some code to remove the unwanted jQuery scripts

 $doc = Factory::getDocument(); // Call JavaScript to be able to unset it correctly HTMLHelper::_('behavior.framework'); HTMLHelper::_('bootstrap.framework'); HTMLHelper::_('jquery.framework'); HTMLHelper::_('bootstrap.tooltip'); // Unset unwanted jQuery JavaScript unset($doc->_scripts[$doc->baseurl . '/media/jui/js/jquery.min.js']); unset($doc->_scripts[$doc->baseurl . '/media/jui/js/jquery-noconflict.js']); unset($doc->_scripts[$doc->baseurl . '/media/jui/js/jquery-migrate.min.js']);

Add some code to include the newer wanted jQuery scripts

 // Load your own version of jQuery HTMLHelper::_('script', 'templates/your-template/js/your-newer-jquery.min.js', array('version' => 'auto'));

Maybe you might need to add the noconflict + migrate.min scripts as well like that

Kind Regards,
Peter Martin, Global Moderator
Company website: https://db8.nl/en/ — Joomla specialist, Nijmegen, Netherlands
The best website: https://the-best-website.com

Joomla! Guru

JurajB Joomla! Guru
Posts: 616 Joined: Fri Oct 02, 2015 3:28 pm

Re: How to update jQuery?

Post by JurajB » Wed Aug 05, 2020 5:20 pm

Webdongle has offered me solution I tested and works great, it has automated solutions, dont forget to set reporting to modal for admins in general options section so you can see the job done and solve conflicts
https://extensions.joomla.org/extension/jquery-easy/

4 posts • Page 1 of 1

  • 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! 5.x — Ask Support Questions Here
  • ↳ General Questions/New to Joomla! 5.x
  • ↳ Installation Joomla! 5.x
  • ↳ Administration Joomla! 5.x
  • ↳ Migrating and Upgrading to Joomla! 5.x
  • ↳ Security in Joomla! 5.x
  • ↳ Extensions for Joomla! 5.x
  • ↳ Templates for Joomla! 5.x
  • ↳ Search Engine Optimization (Joomla! SEO) in Joomla! 5.x
  • ↳ Language — Joomla! 5.x
  • ↳ Performance — Joomla! 5.x
  • ↳ Joomla! 5.x Coding
  • Joomla! Versions which are End of Life
  • ↳ Joomla! 3.x — End of Life 17 Aug 2023
  • ↳ 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! 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
  • Board index
  • All times are UTC
  • Delete cookies

Powered by phpBB® Forum Software © phpBB Limited

  • Joomla! on Twitter
  • Joomla! on Facebook
  • Joomla! on YouTube
  • Joomla! on LinkedIn
  • Joomla! on Pinterest
  • Joomla! on Instagram
  • Joomla! on GitHub

© 2005 — 2023 Open Source Matters, Inc. All Rights Reserved.

× We have detected that you are using an ad blocker. The Joomla! Project relies on revenue from these advertisements so please consider disabling the ad blocker for this domain.

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *