krileon wrote:Was not able to duplicate any issues presented here.
Ensure you're using the latest PHP5 and do not have any JS conflicts. I suggest getting Firebug for Firefox and see if any errors are reported.
Try using the default joomla template.
I changed the template. There was no change.
Then I've used Firebug.
But, I don't see any particular errors with Firebug (well... I'm not an expert).
[code:1]<html>
<head>
<script type="text/javascript">
1
2
3
4if (document.getElementById){
5document.write('<style type="text/css">')
6document.write('.multiparts, #formnavigation{display:none;}')
7document.write('</style>')
8}
9
10var curpart=0
11
12
13function getElementbyClass(classname){
14partscollect=new Array()
15
16var inc=0
17var alltags=document.all? document.all : document.getElementsByTagName("*"«»)
18for (i=0; i<alltags.length; i++){
19if (alltags
.className==classname)
20partscollect[inc++]=alltags
21}
22}
23
24function cycleforward(){
25partscollect[curpart].style.display="none"
26curpart=(curpart<partscollect.length-1)? curpart+1 : 0
27partscollect[curpart].style.display="block"
28updatenav()
29}
30
31function cycleback(){
32partscollect[curpart].style.display="none"
33curpart=(curpart>0)? curpart-1 : partscollect.length-1
34partscollect[curpart].style.display="block"
35updatenav()
36}
37
38
39function updatenav(){
40document.getElementById("backbutton"«»).style.visibility=(curpart==0)? "hidden" : "visible"
41document.getElementById("forwardbutton"«»).style.visibility=(curpart==partscollect.length-1)? "hidden" : "visible"
42}
43
44function onloadfunct(){
45getElementbyClass("multiparts"«»)
46partscollect[0].style.display="block"
47document.getElementById("formnavigation"«»).style.display="block"
48updatenav()
49}
50
51if (window.addEventListener)
52window.addEventListener("load", onloadfunct, false)
53else if (window.attachEvent)
54window.attachEvent("onload", onloadfunct)
55else if (document.getElementById)
56window.onload=onloadfunct
57
58
59
</script>
<style type="text/css">
1.multiparts, #formnavigation{display:none;}
</style>
</head>
<body/>
</html>[/code:1]
Any idea?
I saw in another forum, that if the "shell access" is not enabled (as in my server), some plugins in CB can't work. Can it be the reason?
Thanks.