Moderator: General Support Moderators
-
PapaLion
- Joomla! Apprentice
- Posts: 37
- Joined: Wed Jul 23, 2008 2:02 am
XML parsing error? mismatched tags
I use J1.5.6 and I recently noticed a new error when I use Admin/Extentions & when I bring up Template manager or ModuleManager/Module (edit) for any module. This error shows up in both areas (Template Manager & Module(edit) when I use certain templates. With the Default template the error is on Template Manager page only, & not on any of the Module (edit) pages. Plug ins and Language are not affected.
XML Parsing Error at 42:2. Error 7: mismatched tag
It refers to the last line of my templateDetails.xml file for my custom template. That error line stays the same regardless of the template in use. All seems to be working ok? no fuctional errors noted yet?
I would appreciate some direction on what this error refers to? and how I might approach repair.
thanks much
-
Chris Davenport
- Joomla! Ace
- Posts: 1370
- Joined: Thu Aug 18, 2005 8:57 am
- Location: Shrewsbury, Shropshire, United Kingdom
Re: XML parsing error? mismatched tags
Post
by Chris Davenport » Tue Sep 23, 2008 8:43 pm
You have an error in your templateDetails.xml file. For a «mismatched tag» you should be looking for a <tag> element that is being terminated by something other than </tag>. Remember that XML is case-sensitive, so <Tag> … </tag> will throw an error as well as <something> …. </something-else>. A common mistake is to omit the «/» from the end tag.
If you can’t see it then post your templateDetails.xml here and we can check it for you.
Regards,
Chris.
-
PapaLion
- Joomla! Apprentice
- Posts: 37
- Joined: Wed Jul 23, 2008 2:02 am
Re: XML parsing error? mismatched tags
Post
by PapaLion » Wed Sep 24, 2008 12:50 am
Thank you much. For some reason in my zeal to mess about with the template files… learning in my sandbox/cloned site I somehow had added </install> at the end of the file, which should not have been there. I also had <params> at the end vice </params>… got that repaired and all is well. I have been following along reading and working with the EXCELLENT tutorial on template design tutorial provided in Joomla and just working thru each line to learn what it does and can do. Fascinating… this is a ‘heavy» program, ah but I date myself there.
thanks again for your excellent ACE help.
PapaLion
-
salgadosomoza
- Joomla! Fledgling
- Posts: 2
- Joined: Mon Jan 11, 2010 6:36 pm
Re: XML parsing error? mismatched tags
Post
by salgadosomoza » Tue Jul 06, 2010 4:00 am
Sweet Jesus! thank you chris! that was so helpful.
i had an unclosed «param» that has nothing to do there. I think i didnt see the matrix there..
best regards!
Carlos S.
-
viazalkina
- Joomla! Fledgling
- Posts: 1
- Joined: Thu Jul 07, 2011 11:41 am
- Contact:
Re: XML parsing error? mismatched tags
Post
by viazalkina » Thu Jul 07, 2011 11:46 am
I have the same problem. XML Parsing Error at 20:14. Error 76: Mismatched tag. Can you help me and chek my xml-file? Thanks.
templateDetails.xml
You do not have the required permissions to view the files attached to this post.
-
fccruz85
- Joomla! Fledgling
- Posts: 2
- Joined: Mon Jun 04, 2012 4:29 pm
Re: XML parsing error? mismatched tags
Post
by fccruz85 » Mon Jun 04, 2012 4:34 pm
Hola amigos mi problema es el mismo no ocurria pero desde hoy empezo a crearse pues mi error es este XML Parsing Error at 2:32. Error 76: Mismatched tag.
Segun su significado es que tiene un error de lectura en xml y no esta cerrada mi etiqueta, tengo la plantilla de rocktheme rt_solarsentinel_j15.
Saludos espero puedan ayudarme
-
biru32
- Joomla! Apprentice
- Posts: 12
- Joined: Wed Oct 27, 2010 3:13 pm
Re: XML parsing error? mismatched tags
Post
by biru32 » Mon Jan 16, 2017 3:25 pm
I realize this is a very old post, but to those who are still running a dinosaur site on 1.5.26, I thought I would offer my findings recently as I did on one of my 1.5.26 sites.
I was getting the parsing error: mismatched tags, but I didn’t realize that the closing tag «/>» would generate the error as well. The templateDetails.xml file was the source of the error and the tag was the <param> tag. The developer used the /> tag to close the param tag. Why they didn’t use the </param> instead I have no idea.
Either way, by replacing all of the /> tags with </param> solved the parsing issue.
Cheers!
Jason
-
biru32
- Joomla! Apprentice
- Posts: 12
- Joined: Wed Oct 27, 2010 3:13 pm
Re: XML parsing error? mismatched tags
Post
by biru32 » Tue Jan 17, 2017 11:35 am
So, I posted my results yesterday regarding my xml parsing error. It appears that the parsing error has returned. Therefore, I need help. I have tried and tried to figure this out, but the parsing error continues to appear.
Here is my templateDetails.xml details attached.
Here is my exact error: XML Parsing Error at 15:4. Error 7: mismatched tag
Any help is greatly appreciated!
You do not have the required permissions to view the files attached to this post.
-
biru32
- Joomla! Apprentice
- Posts: 12
- Joined: Wed Oct 27, 2010 3:13 pm
Re: XML parsing error? mismatched tags
Post
by biru32 » Mon Jan 23, 2017 9:01 am
Bump people! Bump!
-
biru32
- Joomla! Apprentice
- Posts: 12
- Joined: Wed Oct 27, 2010 3:13 pm
Re: XML parsing error? mismatched tags
Post
by biru32 » Mon Jan 30, 2017 1:11 pm
No one has anything to offer on this?
-
biru32
- Joomla! Apprentice
- Posts: 12
- Joined: Wed Oct 27, 2010 3:13 pm
Re: XML parsing error? mismatched tags
Post
by biru32 » Tue Feb 14, 2017 8:20 am
biru32 wrote:So, I posted my results yesterday regarding my xml parsing error. It appears that the parsing error has returned. Therefore, I need help. I have tried and tried to figure this out, but the parsing error continues to appear.
Here is my templateDetails.xml details attached.
Here is my exact error: XML Parsing Error at 15:4. Error 7: mismatched tag
Any help is greatly appreciated!
Ok, so I finally figured this out and if it helps someone down the road, then perfect. It turns out that some of the best practices changed within xml / php and this was causing the error.
The original line 1 code contained the following:
<?xml version=»1.0″ encoding=»iso-8859-1″?>
I stumbled upon something within this forum: http://board.phpbuilder.com/showthread. … d-T_string
The entire reason I started to look down this path was thanks to Coda and the Plugin PHP & Web Toolkit and Tidy PHP function which kept noting that there was a parsing error on line 1.
I simply changed the line 1 code to this:
<?php echo ‘<?xml version=»1.0″ encoding=»UTF-8″>’; ?>
ERROR GONE! After months of the scratching my head.
Return to “General Questions/New to 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
-
Joomla v1.5.11
В админке при выходе в Менеджер шаблонов (Сайт) получаю ошибку (в статусной строке)XML Parsing Error at 71:3. Error 7: mismatched tag.
Эта же ошибка при переходе по страницам менеджера. Но в разделе Административная панель ошибки нет.
Где копать?
-
Offline
Gronpipmaster
Недавно здесь
=> Cпециалист <=- Регистрация:
- 21.01.2009
- Сообщения:
- 1 392
- Симпатии:
- 62
- Пол:
- Мужской
Dmitriy Olegovich, что то недокопировали
-
1. Каков механизм формирования списка шаблонов в Менеджере шаблонов?
2. Может ли ошибка в каком-либо шаблоне вызвать вышеописанную проблему?
3. В каком файлетаблице прописан список шаблонов?
-
Offline
Gronpipmaster
Недавно здесь
=> Cпециалист <=- Регистрация:
- 21.01.2009
- Сообщения:
- 1 392
- Симпатии:
- 62
- Пол:
- Мужской
Dmitriy Olegovich, по пробуйте для начала все по новой по верх залить
-
что значит «залить»? заменить файлы или переустановить сайт?
в любом случае это не решение, мне надо механизм формирования списка шаблонов понять, а не «заливать» каждый раз. -
Offline
Gronpipmaster
Недавно здесь
=> Cпециалист <=- Регистрация:
- 21.01.2009
- Сообщения:
- 1 392
- Симпатии:
- 62
- Пол:
- Мужской
Dmitriy Olegovich, проблемы такие просто так не берутся из не откуда и каждый раз не надо заливать все по новой надо просто до качать те файлы которых не хватает и проследить за регистрами от этого тоже бывают проблемы
-
Offline
norpe3s
Недавно здесь
- Регистрация:
- 22.04.2009
- Сообщения:
- 1
- Симпатии:
- 0
- Пол:
- Мужской
у меня выскочила такая же ошибка
путём воспоминаний что делал…
в файле шаблоне templateDetails.xml
я случайно удалил </positionS> после всех позиций в тегах <position></position>…
сперва подумал, что не удалил этот тег, когда добавлял свои позиции, а потом увидел что общий тег для позиций кончается Sесли это не ваш случай поменяйте с шаблона этот xml файл
в любом случае я понял, что это наше вмешательство в этот файл…
Поделиться этой страницей
Yes I did enable opds for my account, but I just checked the log and there seems to be an issue with the database:
{"reqId":"WNErylnuQQkAACag@wAAAAAK","remoteAddr":"78.54.90.94","app":"index","message":"Exception: {"Exception":"Doctrine\\DBAL\\Exception\\DriverException","Message":"An exception occurred while executing 'UPDATE oc_opds_metadata SET updated=?, date=?, author=?, title=?, language=?, publisher=?, isbn=?, copyright=?, description=?, subjects=?, cover=?, rescan=? WHERE id=?' with params [\"2017-03-21 13:34:03\", \"\", \"\", \"Regener, Sven - Magical Mystery oder Die Rueckkehr des Karl Schmidt\", \"\", \"\", \"9783869710730\", \"\", \"\", \"\", null, \"2017-03-28T13:34:03+00:00\", \"106530\"]:\n\nSQLSTATE[22007]: Invalid datetime format: 1292 Incorrect datetime value: '2017-03-28T13:34:03+00:00' for column 'rescan' at row 1","Code":0,"Trace":"#0 \/var\/www\/Cloud\/nextcloud\/3rdparty\/doctrine\/dbal\/lib\/Doctrine\/DBAL\/DBALException.php(116): Doctrine\\DBAL\\Driver\\AbstractMySQLDriver->convertException('An exception oc...', Object(Doctrine\\DBAL\\Driver\\PDOException))\n#1 \/var\/www\/Cloud\/nextcloud\/3rdparty\/doctrine\/dbal\/lib\/Doctrine\/DBAL\/Statement.php(174): Doctrine\\DBAL\\DBALException::driverExceptionDuringQuery(Object(Doctrine\\DBAL\\Driver\\PDOMySql\\Driver), Object(Doctrine\\DBAL\\Driver\\PDOException), 'UPDATE oc_opds_...', Array)\n#2 \/var\/www\/Cloud\/nextcloud\/lib\/private\/legacy\/db\/statementwrapper.php(74): Doctrine\\DBAL\\Statement->execute(Array)\n#3 \/var\/www\/Cloud\/nextcloud\/apps\/files_opds\/lib\/meta.php(123): OC_DB_StatementWrapper->execute(Array)\n#4 \/var\/www\/Cloud\/nextcloud\/apps\/files_opds\/lib\/meta.php(204): OCA\\Files_Opds\\Meta::save(Array)\n#5 \/var\/www\/Cloud\/nextcloud\/apps\/files_opds\/lib\/meta.php(139): OCA\\Files_Opds\\Meta::scan('106530')\n#6 \/var\/www\/Cloud\/nextcloud\/apps\/files_opds\/lib\/files.php(36): OCA\\Files_Opds\\Meta::get('106530')\n#7 \/var\/www\/Cloud\/nextcloud\/apps\/files_opds\/lib\/files.php(60): OCA\\Files_Opds\\Files::formatFileInfo(Object(OC\\Files\\FileInfo))\n#8 \/var\/www\/Cloud\/nextcloud\/apps\/files_opds\/lib\/feed.php(62): OCA\\Files_Opds\\Files::formatFileInfos(Array)\n#9 \/var\/www\/Cloud\/nextcloud\/apps\/files_opds\/index.php(67): OCA\\Files_Opds\\Feed::serveFeed('\/books\/', 1, 'root')\n#10 \/var\/www\/Cloud\/nextcloud\/lib\/private\/Route\/Route.php(155) : runtime-created function(1): require_once('\/var\/www\/Cloud\/...')\n#11 [internal function]: __lambda_func()\n#12 \/var\/www\/Cloud\/nextcloud\/lib\/private\/Route\/Router.php(293): call_user_func('\\x00lambda_1', Array)\n#13 \/var\/www\/Cloud\/nextcloud\/lib\/base.php(998): OC\\Route\\Router->match('\/apps\/files_opd...')\n#14 \/var\/www\/Cloud\/nextcloud\/index.php(48): OC::handleRequest()\n#15 {main}","File":"\/var\/www\/Cloud\/nextcloud\/3rdparty\/doctrine\/dbal\/lib\/Doctrine\/DBAL\/Driver\/AbstractMySQLDriver.php","Line":116}","level":3,"time":"2017-03-21T13:34:03+00:00","method":"GET","url":"/index.php/apps/files_opds/","user":"rainer","version":"9.1.3.2"}
And thanks for pointing out, that the current version is 11, oddly enough my installation states «10.0.3 (stable)» and «Your version is up to date.»
I am getting the following error when opening up my page in Firefox (other browsers don’t show this error). I am using HTML5 and if I try to put closing tags on the input, then the page fails validation.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" >
<!--... more here...-->
</head>
<body>
<!--... more here...-->
<input type="text" id="wall_color_picker" onclick="startColorPicker(this)" title="Wall Color" value="#FFFFFF">
<!--... more here...-->
</body>
</html>
Edit 1: Firefox version is latest (59.0.2 (64-bit))
Edit 2: Response headers:
Cache-Control max-age=604800, public
Connection Keep-Alive
Content-Type text/html; charset=UTF-8
Date Tue, 24 Apr 2018 16:04:19 GMT
Keep-Alive timeout=5, max=100
Server Apache/2.4.6 (Red Hat Enterpri…penSSL/1.0.2k-fips PHP/5.6.35
Strict-Transport-Security max-age=31536000; includeSubdomains;
Transfer-Encoding chunked
X-Powered-By PHP/5.6.35
asked Nov 13, 2017 at 13:48
AllisonCAllisonC
2,9254 gold badges28 silver badges45 bronze badges
2
Because your <input>has no content allot of times people do not close the tag <input></input> but in your case close it at the end of it like so <input type="text" id="wall_color_picker" onclick="startColorPicker(this)" title="Wall Color" value="#FFFFFF"/>
Please try the following,
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" >
<!--... more here...-->
</head>
<body>
<!--... more here...-->
<input type="text" id="wall_color_picker" onclick="startColorPicker(this)" title="Wall Color" value="#FFFFFF"/>
<!--... more here...-->
</body>
</html>
Hope this helps
answered Apr 18, 2018 at 5:46
pool propool pro
2,07411 silver badges21 bronze badges
2
It seems the Firefox version issue. I have tried that code snippet in Firefox 43.0.1 and found OK. You can please update the Firefox version.
answered Apr 24, 2018 at 6:06
I get the following error showing in the browser (Firefox 3 and IE 7, Windows).
This is JSF page so the html is rendered by the components.
How can I debug?
XML Parsing Error: mismatched tag. Expected: </link>.
Location: http://127.0.0.1/apacheTest-ViewController-context-root/faces/home_top?_adf.ctrl-state=2086877141_3
Line Number 2, Column 1853:<html class=»p_AFMaximized» dir=»ltr» lang=»en-US»><head><link rel=»stylesheet» charset=»UTF-8″ type=»text/css» href=»/apacheTest-ViewController-context-root/adf/styles/cache/blafplus-rich-desktop-t1gyxz-en-ltr-gecko-1.9.0.4-cmp.css»><script type=»text/javascript»>var AdfWindowOpenError=’A popup window blocker has been detected in your browser. Popup blockers interfere with the operation of this application. Please disable your popup blocker or allow popups from this site.’;</script><script type=»text/javascript» src=»/apacheTest-ViewController-context-root/adf/jsLibs/Common12_8.js»></script><script type=»text/javascript»>var _locale=’en-US’;var _tLocale=’en-US’;</script><script type=»text/javascript» src=»/apacheTest-ViewController-context-root/adf/jsLibs/resources/LocaleElements_en_US1_2_8.js?loc=en_US»></script><script type=»text/javascript»>var AdfAssert = new Object();AdfAssert.DEBUG = false;</script><script type=»text/javascript» src=»/apacheTest-ViewController-context-root/afr/partition/gecko/default/opt/_boot-11.1.1.0.0.js»></script><script type=»text/javascript»>AdfLogger.LOGGER = new AdfLogger(‘global’, new AdfBufferedLogWriter());var checkAgentSupport = false;AdfAgent.AGENT = AdfAgent.getAgent(window);var lookAndFeel = new AdfDhtmlLookAndFeel(window);AdfAgent._LOG_WRITERS = «NativeLogWriter»;AdfPage.PAGE = lookAndFeel.createPage();var page = AdfPage.PAGE;page.setBaseResourceUrl(«/apacheTest-ViewController-context-root»);page.setAnimationEnabled(true);AdfLogger.LOGGER.setLevel(AdfLogger.LOGGER.OFF);</script><script type=»text/javascript» src=»/apacheTest-ViewController-context-root/afr/partition/gecko/default/opt/_all-11.1.1.0.0.js»></script><script type=»text/javascript» src=»/apacheTest-ViewController-context-root/afr/AdfTranslations-11.1.1.0.0en_US.js?loc=en_US&skinId=blafplus-rich.desktop»></script></head><body class=»xw9 p_AFMaximized»><noscript>This page uses JavaScript and requires a JavaScript enabled browser.Your browser is not JavaScript enabled.</noscript><iframe name=»afr::PushIframe» id=»afr::PushIframe» style=»display:none» src=»/apacheTest-ViewController-context-root/afr/blank.html»></iframe><input type=»hidden» id=»oracle.adf.view.faces.RICH_UPDATE»><div id=»j_id_id1″><a id=»j_id_id1::skip» href=»#» class=»xwb»>Skip to content</a><form id=»j_id_id2″ name=»j_id_id2″ class=»xrs» method=»POST» action=»/apacheTest-ViewController-context-root/faces/task-flow-definition/home?_adf.ctrl-state=2086877141_6″><p><span id=»j_id_id3″ class=»xq»><label for=»remote_user_output::content»>facesContext.externalContext.remoteUser:</label></span><span id=»remote_user_output»>tkhill</span></p><p><span id=»j_id_id5″ class=»xq»><label>facesContext.externalContext.authType: </label></span><span id=»j_id_id6″ class=»xzy»>Basic</span></p><p><span id=»j_id_id7″ class=»xq»><label>controllerContext.currentViewPort.taskFlowContext.taskFlowId.documentName: </label></span>/WEB-INF/task-flow-definition.xml</p><p><span id=»j_id_id9″ class=»xq»><label>facesContext.externalContext.userPrincipal.name: </label></span>tkhill</p><input type=»hidden» name=»org.apache.myfaces.trinidad.faces.FORM» value=»j_id_id2″><span id=»j_id_id2::postscript»><input type=»hidden» name=»javax.faces.ViewState» value=»!-45543973″></span></form><div id=»j_id_id1::msgCtr» style=»display:none»><div id=»j_id_id1::msgDlg» class=»xz0″><div class=»xzs» _afrPanelWindowBackground=»1″></div><div class=»xzs» _afrPanelWindowBackground=»1″></div><div class=»xzs» _afrPanelWindowBackground=»1″></div><div class=»xzs» _afrPanelWindowBackground=»1″></div><table cellpadding=»0″ cellspacing=»0″ border=»0″ summary=»» class=»xz2″><tr><td class=»xz4″> </td><td class=»xz6″><table cellpadding=»0″ cellspacing=»0″ border=»0″ width=»100%» summary=»»><tr><td><div id=»j_id_id1::msgDlg::_ticn» class=»xzq» style=»display:none»></div></td><td class=»xza» id=»j_id_id1::msgDlg::tb»><div id=»j_id_id1::msgDlg::_ttxt» class=»xzo»></div></td><td><a href=»#» onclick=»return false» class=»xzn» id=»j_id_id1::msgDlg::close» title=»Close»></a></td></tr></table></td><td class=»xz8″> </td></tr><tr><td class=»xzd»> </td><td class=»x1o» id=»j_id_id1::msgDlg::contentContainer»><div id=»j_id_id1::msgDlg::_cnt» class=»xwa»></div></td><td class=»xzf»> </td></tr><tr><td class=»xzj»><div></div></td><td class=»xzk»><table cellpadding=»0″ cellspacing=»0″ border=»0″ width=»100%» summary=»»><tr><td class=»xzm»><button id=»j_id_id1::msgDlg::cancel» class=»xe4″ onclick=»return false;»>OK</button></td></tr></table></td><td class=»xzl»><div></div></td></tr></table></div></div><span id=»j_id_id1::iconC» style=»display:none»><span id=»af_messages::info-icon»><img src=»/apacheTest-ViewController-context-root/afr/info.png» width=»16″ height=»16″ border=»0″ title=»Information» alt=»Information»></span><span id=»af_message::warning-icon»><img src=»/apacheTest-ViewController-context-root/afr/warning.png» width=»16″ height=»16″ border=»0″ title=»Warning» alt=»Warning»></span><span id=»af_messages::fatal-icon»><img src=»/apacheTest-ViewController-context-root/afr/error.png» width=»16″ height=»16″ border=»0″ title=»Critical Error» alt=»Critical Error»></span><span id=»af_message::info-icon»><img src=»/apacheTest-ViewController-context-root/afr/info.png» width=»16″ height=»16″ border=»0″ title=»Information» alt=»Information»></span><span id=»af_message::fatal-icon»><img src=»/apacheTest-ViewController-context-root/afr/error.png» width=»16″ height=»16″ border=»0″ title=»Critical Error» alt=»Critical Error»></span><span id=»af_messages::warning-icon»><img src=»/apacheTest-ViewController-context-root/afr/warning.png» width=»16″ height=»16″ border=»0″ title=»Warning» alt=»Warning»></span><span id=»af_message::confirmation-icon»><img src=»/apacheTest-ViewController-context-root/afr/confirmation.png» width=»16″ height=»16″ border=»0″ title=»Confirmation» alt=»Confirmation»></span><span id=»af_message::error-icon»><img src=»/apacheTest-ViewController-context-root/afr/error.png» width=»16″ height=»16″ border=»0″ title=»Error» alt=»Error»></span><span id=»af_messages::error-icon»><img src=»/apacheTest-ViewController-context-root/afr/error.png» width=»16″ height=»16″ border=»0″ title=»Error» alt=»Error»></span><span id=»af_messages::confirmation-icon»><img src=»/apacheTest-ViewController-context-root/afr/confirmation.png» width=»16″ height=»16″ border=»0″ title=»Confirmation» alt=»Confirmation»></span></span></div><script type=»text/javascript»>AdfBootstrap._onLoad=function (){AdfPage.PAGE.setExpectedWindowId(‘2086877141_0’);AdfAgent.AGENT.elementsAdded(document);AdfDhtmlLookAndFeel.addSkinProperties({«af|messages::message-group-title»:»xx0″,»af|messages::message-group-type-separator»:»xx1″,»af|messages::summary»:»xx8″,»af|message::intro»:»xx7″,»af|messages::detail»:»xx9″,»af|panelWindow-tr-open-animation-duration»:»300″,»af|message::type»:»xx4″,»af|message::detail»:»xx6″,»af|messages::header-text»:»xwy»,».AFNoteWindow-tr-open-animation-duration»:»200″,»af|messages::intro»:»xwz»,»af|messages::component-link»:»xeh»,»af|message::summary»:»xx5″});AdfPage.PAGE.addComponents(new AdfRichDocument(‘j_id_id1’),new AdfRichForm(‘j_id_id2’),new AdfRichOutputLabel(‘j_id_id3’,{‘for’:’remote_user_output’}),new AdfRichOutputLabel(‘j_id_id5’),new AdfRichOutputText(‘j_id_id6’),new AdfRichOutputLabel(‘j_id_id7’),new AdfRichOutputLabel(‘j_id_id9’),new AdfRichDialog(‘j_id_id1::msgDlg’,{‘okVisible’:false,’cancelVisible’:false,’modal’:false,’title’:»,’cancelTextAndAccessKey’:’OK’}));AdfPage.PAGE.setDefaultMessageHandlerComponentId(«j_id_id1»);var exScripts=AdfBootstrap._extendedScripts;for (var i=0;i<exScripts.length;i++){exScripts()};AdfBootstrap._extendedScripts=null;AdfPage.PAGE.__onLoad();};window.onload=AdfBootstrap._onLoad;</script><script type=»text/javascript»>AdfBootstrap._extendedScripts=[function(){AdfPage.PAGE._setPageId(‘2’);}];</script></body><!—Created by Oracle ADF (ADF Faces API — 11.1.1.0.0/ADF Faces Implementation — 11.1.1.0.0, RCF-revision: 29990 (branch: faces-boxer), Trinidad-revision: 697947 (branch: 1.2.8.1-branch), build: adf-faces-rt_080922_1156), skin:blafplus-rich.desktop (blafplus-rich)—></html>
Я её победил!!! )
Ну почти…
Выяснилась довольно неприятная и нетривиальная вещь:
Во первых, про сообщения об ошибках:
1)
«Use of uninitialized value in concatenation (.) or string at /usr/local/otrs//Kernel/System/Log.pm line 161.» — это сообщение возникает в модуле Log.pm, когда он пытается определить версию модулей, создавая список Trackback. В Log.pm есть странноватый участок:
Код: Выделить всё
eval { $VersionString = 'v' . $Package1->VERSION };
if ( !$VersionString || $VersionString eq 'v' ) {
$VersionString = 'unknown version';
}
Т.е. если $Package1->VERSION пуста, возвращается «unknow version», но, похоже, авторы не предусмотрели или пропустили случай, когда VERSION вообще не определена. В одном из модулей есть такое.
2)
Ключевая ошибка в моём случае всё таки была одна:
«mismatched tag at line 18, column 2, byte 558»
Повторный вывод бектрейса и сообщение «XML::Parser produced errors.» — это просто вторая строка сообщения об ошибке. Она выводится повторным обращением к лог-подсистеме, а та, в свою очередь, вместе с сообщением повторно выводит бектрейс.
3)
Таким образом сообщение
«[Error][Kernel::System::XML::XMLParse][Line:776]: C-Parser: mismatched tag at line 18, column 2, byte 558 at /usr/local/lib/perl5/site_perl/5.12.4/mach/XML/Parser.pm line 187 !»
следует понимать так:
Модуль Kernel/System/XML.pm (процедура XMLParse, строка 776)
обратилась к Parser.pm, строка 187,
которая сообщает, в переданном ей для анализа тексте, в строке 18, колонка 2
отстутствует _закрывающий_ тег.
Во вторых:
Самого файла-текста с ошибкой в файловой системе нет, система запрашивает его по адресу:
http://otrs.org/product.xml?Product=OTRS-3.1.3
и, никуда не сохраняя, передаёт парсеру.
(почему его всё таки назвали «C-Parser» я так и не понял — это название единственный раз присутствует в XML.pm,
просто в виде текстовой строки…)
Проблема в моём случае была в том, что у нас файрвол на любые неавторизованные запросы по http возвращает редирект на
страничку-заглушку. А OTRS не пыталась проверять ни размеры ни контрольные суммы ни, хотя бы, какие-нибудь сигнатуры
в получаемых с веба данных. И бодро валилась
Остался только вопрос, как бы это дело заблокировать ? Не хочется мне совершенно открывать для неё файрвол — рессурс сугубо внутренний.





