- Posts: 163
- Thank you received: 5
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.
Question Feeds Error
16 years 5 months ago #33323
by darksoul
Feeds Error was created by darksoul
Hi, i have problems with feeds. when i click on the feed icon appear this:
Errore interpretazione XML: non well-formed
Indirizzo: www.samples-share.com/it/forum/fb_rss.html?no_html=1
Linea numero 20, colonna 27:for (i=0; i<alltags.length; i++){
The link is:
www.samples-share.com/en/forum.html
Perhaps the problem is that i use joomfish to translate the categories?
Errore interpretazione XML: non well-formed
Indirizzo: www.samples-share.com/it/forum/fb_rss.html?no_html=1
Linea numero 20, colonna 27:for (i=0; i<alltags.length; i++){
The link is:
www.samples-share.com/en/forum.html
Perhaps the problem is that i use joomfish to translate the categories?
Please Log in or Create an account to join the conversation.
16 years 5 months ago - 16 years 5 months ago #33334
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re:Feeds Error
Hello,
If you look the source code of your rss feed page, you will see javascript at the top of the document, the javascript must not in there. So, you have a components or something else which adds javascript in your rss feed page.
Try to disable certains modules or components for know the source of the problem.
If you look the source code of your rss feed page, you will see javascript at the top of the document, the javascript must not in there. So, you have a components or something else which adds javascript in your rss feed page.
Try to disable certains modules or components for know the source of the problem.
I don't provide support by PM, because this can be useful for someone else.
Last edit: 16 years 5 months ago by xillibit.
Please Log in or Create an account to join the conversation.
16 years 5 months ago #33411
by darksoul
Replied by darksoul on topic Re:Feeds Error
I tried to disable some module and plugin but nothing. i also tried to disable javascript of the yootheme template.
This is the code that create the problems!
Please, Help me!
This is the code that create the problems!
Code:
<script type="text/javascript">
if (document.getElementById){
document.write('<style type="text/css">')
document.write('.multiparts, #formnavigation{display:none;}')
document.write('</style>')
}
var curpart=0
function getElementbyClass(classname){
partscollect=new Array()
var inc=0
var alltags=document.all? document.all : document.getElementsByTagName("*")
for (i=0; i<alltags.length; i++){
if (alltags[i].className==classname)
partscollect[inc++]=alltags[i]
}
}
function cycleforward(){
partscollect[curpart].style.display="none"
curpart=(curpart<partscollect.length-1)? curpart+1 : 0
partscollect[curpart].style.display="block"
updatenav()
}
function cycleback(){
partscollect[curpart].style.display="none"
curpart=(curpart>0)? curpart-1 : partscollect.length-1
partscollect[curpart].style.display="block"
updatenav()
}
function updatenav(){
document.getElementById("backbutton").style.visibility=(curpart==0)? "hidden" : "visible"
document.getElementById("forwardbutton").style.visibility=(curpart==partscollect.length-1)? "hidden" : "visible"
}
function onloadfunct(){
getElementbyClass("multiparts")
partscollect[0].style.display="block"
document.getElementById("formnavigation").style.display="block"
updatenav()
}
if (window.addEventListener)
window.addEventListener("load", onloadfunct, false)
else if (window.attachEvent)
window.attachEvent("onload", onloadfunct)
else if (document.getElementById)
window.onload=onloadfunct
</script>
Please, Help me!
Please Log in or Create an account to join the conversation.
16 years 5 months ago #33420
by xillibit
I don't provide support by PM, because this can be useful for someone else.
Replied by xillibit on topic Re:Feeds Error
Ty to locate this javascript code in your template and remove this, i don't use yootheme template so i can't help more.
I don't provide support by PM, because this can be useful for someone else.
Please Log in or Create an account to join the conversation.
16 years 5 months ago #33631
by Matias
Replied by Matias on topic Re:Feeds Error
JavaScript should not be added when JRequest::getBool('no_html', 0) == 1
Please Log in or Create an account to join the conversation.
16 years 5 months ago #33692
by darksoul
Replied by darksoul on topic Re:Feeds Error
Sorry, but im not a developer.. i dont understand what i have to do.!
Please Log in or Create an account to join the conversation.
Time to create page: 0.267 seconds