Единый форум поддержки

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Единый форум поддержки » Корзина » Форум долго грузится


Форум долго грузится

Сообщений 1 страница 20 из 27

1

Форум в последние несколько дней стал очень долго загружаться.
Пожалуйста подскажите в чем проблема.
wwweragon.mybb.ru

0

2

http://mybb.ru/f/collection/0208.gif

0

3

На форуме очень много ошибок... Коды дублированы, тэги не закрыты..

0

4

FeroDaR
пожете указать где именно?

0

5

Масяня
Cодержимое ХТМЛ-верх замените на:

Код:
<style> 
div .splLink {width: 90px; height: 10px; border: 2px solid #310062; background: #151218; text-align: center; font-family: Comic Sans Ms; font-size: 10px; padding: 5px;}
.spll {width: 90px; height: 70px; }
.spll div .splCont {height: auto; width: 300px; background:#151218; padding: 5px; z-index: 1000; margin-top: 5px; border: 2px solid #310062; font-size: 12px; font-family: Microsoft Sans Serif; text-align: center;}
</style> 
 
 <style type="text/css"> 
#pun-navlinks a:link, #pun-navlinks a:visited, #pun-navlinks a:link span, #pun-navlinks a:visited span {color: Цвет;}
#pun-navlinks a:hover, #pun-navlinks a:hover span { 
color:darkgray;
}
</style> 
 
<style type="text/css"> 
html, body {background-image: url("http://i062.radikal.ru/1006/8f/3a43c222ab53.jpg"); background-attachment: fixed; background-repeat:repeat;}
</style> 
<script type="text/javascript"> 
document.getElementsByClassName = function(className) {
	var children = document.getElementsByTagName('*') || document.all;
	var elements = new Array();
  
	for (var i = 0; i < children.length; i++) {
var child = children[i];
var classNames = child.className.split(' ');
for (var j = 0; j < classNames.length; j++) {
	if (classNames[j] == className) {
elements.push(child);
break;
	}
}
	}
	return elements;
}
 
var Reflection = {
	defaultHeight : 0.5,
	defaultOpacity: 0.5,
	
	add: function(image, options) {
Reflection.remove(image);
 
doptions = { "height" : Reflection.defaultHeight, "opacity" : Reflection.defaultOpacity }
if (options) {
	for (var i in doptions) {
if (!options[i]) {
	options[i] = doptions[i];
}
	}
} else {
	options = doptions;
}
	
try {
	var d = document.createElement('div');
	var p = image;
	
	var classes = p.className.split(' ');
	var newClasses = '';
	for (j=0;j<classes.length;j++) {
if (classes[j] != "reflect") {
	if (newClasses) {
newClasses += ' '
	}
	
	newClasses += classes[j];
}
	}
 
	var reflectionHeight = Math.floor(p.height*options['height']);
	var divHeight = Math.floor(p.height*(1+options['height']));
	
	var reflectionWidth = p.width;
	
	if (document.all && !window.opera) {
/* Fix hyperlinks */
                if(p.parentElement.tagName == 'A') {
	                var d = document.createElement('a');
	                d.href = p.parentElement.href;
                }  
                    
/* Copy original image's classes & styles to div */
d.className = newClasses;
p.className = 'reflected';
 
d.style.cssText = p.style.cssText;
p.style.cssText = 'vertical-align: bottom';
	
var reflection = document.createElement('img');
reflection.src = p.src;
reflection.style.width = reflectionWidth+'px';
 
reflection.style.marginBottom = "-"+(p.height-reflectionHeight)+'px';
reflection.style.filter = 'flipv progid:DXImageTransform.Microsoft.Alpha(opacity='+(options['opacity']*100)+', style=1, finishOpacity=0, startx=0, starty=0, finishx=0, finishy='+(options['height']*100)+')';
 
d.style.width = reflectionWidth+'px';
d.style.height = divHeight+'px';
p.parentNode.replaceChild(d, p);
 
d.appendChild(p);
d.appendChild(reflection);
	} else {
var canvas = document.createElement('canvas');
if (canvas.getContext) {
	/* Copy original image's classes & styles to div */
	d.className = newClasses;
	p.className = 'reflected';
	
	d.style.cssText = p.style.cssText;
	p.style.cssText = 'vertical-align: bottom';
	
	var context = canvas.getContext("2d");
 
	canvas.style.height = reflectionHeight+'px';
	canvas.style.width = reflectionWidth+'px';
	canvas.height = reflectionHeight;
	canvas.width = reflectionWidth;
	
	d.style.width = reflectionWidth+'px';
	d.style.height = divHeight+'px';
	p.parentNode.replaceChild(d, p);
	
	d.appendChild(p);
	d.appendChild(canvas);
	
	context.save();
	
	context.translate(0,image.height-1);
	context.scale(1,-1);
	
	context.drawImage(image, 0, 0, reflectionWidth, image.height);
	
	context.restore();
	
	context.globalCompositeOperation = "destination-out";
	var gradient = context.createLinearGradient(0, 0, 0, reflectionHeight);
	
	gradient.addColorStop(1, "rgba(255, 255, 255, 1.0)");
	gradient.addColorStop(0, "rgba(255, 255, 255, "+(1-options['opacity'])+")");
 
	context.fillStyle = gradient;
	if (navigator.appVersion.indexOf('WebKit') != -1) {
context.fill();
	} else {
context.fillRect(0, 0, reflectionWidth, reflectionHeight*2);
	}
}
	}
} catch (e) {
	    }
	},
	
	remove : function(image) {
if (image.className == "reflected") {
	image.className = image.parentNode.className;
	image.parentNode.parentNode.replaceChild(image, image.parentNode);
}
	}
}
 
function addReflections() {
	var rimages = document.getElementsByClassName('reflect');
	for (i=0;i<rimages.length;i++) {
var rheight = null;
var ropacity = null;
 
var classes = rimages[i].className.split(' ');
for (j=0;j<classes.length;j++) {
	if (classes[j].indexOf("rheight") == 0) {
var rheight = classes[j].substring(7)/100;
	} else if (classes[j].indexOf("ropacity") == 0) {
var ropacity = classes[j].substring(8)/100;
	}
}
 
Reflection.add(rimages[i], { height: rheight, opacity : ropacity});
	}
}
 
var previousOnload = window.onload;
window.onload = function () { if(previousOnload) previousOnload(); addReflections(); }
</script> 
 
<link rel="stylesheet" type="text/css" href="http://i.rusff.ru/f/ru/rusff/spoiler_banner.css" /> 
 
 
<style> 
#pun #pun-index #pun-announcement h2 span {display: none;}
.post-author online, .pa-adnote, .pa-from, .pa-reg, .pa-posts, .pa-reputation, .pa-sex, .pa-icq, .pa-ip, .pa-online, .pa-age, .pa-mailagent, .pa-reg, .pa-avatar, .pa-title, .pa-author, .pa-time-visit, .pa-last-visit, .pa-fld1, .pa-fld2, .pa-fld3, {
   background: #fafcfe;
   border: 1px solid #cdd6e2;
   border-bottom-width: 2px;
   border-right-width: 2px;
   margin: 3px 1px 3px 1px;
}
</style> 
 
 
<style type="text/css"> 
a {color: #560319;}
a:hover {color: #989349;}
</style> 
 
<style type="text/css"> 
#pun-title table {
  background-image : url(http://s002.radikal.ru/i199/1006/5d/0753cc90c2cc.jpg);
  background-no-repeat;
  background-color: black;
  background-position: top center;
  height : 243px; 
}
 </style> 
 <style type="text/css">
* {border: none !important;}
</style>
<style type="text/css">
#pun-main h2 {
text-align: center;
}
</style> 
 <style> 
.punbb {
font-size: 11px; 
font-family: Microsoft Sans Serif, helvetica, sans-serif;
}
 
</style>
	
<style> 
.modlist {
display: none !important;
}
</style> 
 
 
 
<style type="text/css"> 
#pun {
float: center;     
filter:alpha(opacity=70);
opacity: 0.7;
-moz-opacity: 0.7;
-khtml-opacity: 0.7;
 width:400px;
}
</style> 
<style type="text/css"> 
.punbb .container {
  border-style: none;
  border-width: 0;
  }
</style>

Содержание ХТМЛ-низ на это:

Код:
<!--Спойлер - контейнер--> 
<script type="text/javascript" src="http://szenprogs.ru/scripts/jquery-1.3.2.js"></script> 
<script type="text/javascript"> 
  $(document).ready(function(){
    $('.splLink').click(function(){
      $(this).parent().children('div.splCont').toggle('normal');
      return false;
    });
  });
</script> 
 
 
 
<script type="text/javascript"> 
var we=document.getElementsByTagName("ul")
var x=0
for (x=0; x<=(we.length-1); x++)
{if (we[x].innerHTML.indexOf("pa-online")!=-1)
{we[x].innerHTML=we[x].innerHTML.substring(0, (we[x].innerHTML.indexOf("pa-online")-11))+"<img src='http://s49.radikal.ru/i124/0904/4a/04ae008b8799.gif' />"}
else if ((we[x].innerHTML.indexOf("pa-online")==-1)&&(we[x].innerHTML.indexOf("pa-author")!=-1))
{we[x].innerHTML=we[x].innerHTML+"<img src='http://s47.radikal.ru/i116/0904/1e/33b88ebb5c17.gif' />"}
}
</script> 
 
 
 
 
 
 
 
 
 
 
<script type="text/javascript"> 
var h=(new Date()).getHours();
if (h > 23 || h <7) {a='В Алагейзии наступила ночь. Привет лунатикам! ' }
if (h > 6 && h < 12) {a='Доброе утро. Над Алагейзией снова взошло солнце. '} 
if (h > 11 && h < 19) {a='День добрый!'} 
if (h > 18 && h < 24) {a='В Алагейзии наступил вечер.'}
var arre=document.getElementsByTagName("h2")
var f=0
for (f=0; f<=(arre.length-1); f++)
{if (arre[f].innerHTML.indexOf("Объявление")!=-1)
{arre[f].innerHTML=a}}
</script> 
<script type="text/javascript"> 
forum = "http://warcraft3.2bb.ru"
str = document.getElementById("navpm").innerHTML
loc = new String(document.location)
if( (str.indexOf("(") != -1) && document.referrer.indexOf(forum)==-1 && loc.indexOf('messages.php')==-1)
{document.write("<embed src='http://forumw3.ucoz.ru/load/0-0-0-106-20'  autostart=true >")  }
</script> 
 
<script type="text/javascript"> 
var arr=document.getElementsByTagName("li")
i=0
while(arr[i] ){
if(arr[i].className=="pa-avatar item2"){
name=arr[i].innerHTML
name=name.substring(4)
arr[i].innerHTML="<img class=reflect "+name+" "
}
i++
}
</script> 
 
 
 
 
 
 
<script type="text/javascript"> 
var arr=document.getElementsByTagName("div")
i=0
str=document.URL
while(arr[i] ){
if(arr[i].id=="pun-main" && GroupID == "3") {
name=arr[i].innerHTML
name=name.substring(0)
arr[i].innerHTML="<div class=category><h2>Информационное табло</h2><div class=container><table border=0><tr><td><img src=http://forumupload.ru/uploads/0004/8c/c0/47-1.gif></td><td width=80%>Приветствуем тебя на форуме, Гость.К сожаленью, у вас нет основных привелегий форума.Вы не сможете писать сообщения на этом форуме,создавать темы, качать фильмы, слушать музыку и просто наслаждаться настроением на форуме.Просим убедительно вас<br /><a href='login.php'>войти</a> или <a href='register.php'>зарегистрироваться</a>.</td></tr></table></div></div><Br />"+name
}
i++
}
</script> 
 
 
 
<script> 
function HideInfo(id,but){
if(but.value=="+"){
  but.value = "-";document.getElementById(id).style.display = ""}
else{
  but.value = "+";document.getElementById(id).style.display = "none"}
  return false}
 
d = document.getElementsByTagName("div")
 
for (i=0;d[i]; i++){
if (d[i].className.indexOf("post-author")!=-1){t = d[i].innerHTML
   if((j = t.toLowerCase().indexOf("<li class=pa-from>"))!=-1 || (j = t.toLowerCase().indexOf("<li class=\"pa-from\">"))!=-1 || (j = t.toLowerCase().indexOf("<li class=pa-reg>"))!=-1 || (j = t.toLowerCase().indexOf("<li class=\"pa-reg\">"))!=-1)
    d[i].innerHTML = t.substring(0,j)+"<input type='Submit' onClick=\"return HideInfo('info"+i+"',this)\" value='+'><br><div id='info"+i+"' style='display:none'>"+t.substring(j,t.length)+"</div>"}}
</script> 
<script language="JavaScript"> 
str=document.URL
if(str.substring(str.lastIndexOf('/')+1)=="" || str.substring(str.lastIndexOf('/')+1)=="index.php")
   document.write("<style>#forum_f124,#forum_f121,#forum_f92,#forum_f146,#forum_f65,#forum_f66,#forum_f67,#forum_f79#,forum_f78,#forum_f36,#forum_f30,#forum_f33,#forum_f133,#forum_f55,#forum_f93,#forum_f113,#forum_f140,#forum_f150,#forum_f84{display:none}</style>")
 
 

 
 
 
<div class="main" id="spo_all"><div class="category" id="spo_top" onclick="obj=this.parentNode.childNodes[1].style; tmp=(obj.display!='block') ? 'block' : 'none'; obj.display=tmp; return false;"><h2>Баннеры</h2></div><div id="spoiler4"><a href=http://httppandora.mybb.ru/>
<img src="http://www.thesun.co.uk/picture/mysunpicturedisplay/0,,168227,00.jpeg"
border=0 title="Аватар"></a> <a href="http://devilmaycrynewfigh.ixbb.ru/" TARGET=_blank>
<img src="http://s48.radikal.ru/i122/0910/f1/2e0137d8782a.gif"border="0" 
alt="Devil May Cry: New Fight"><a href="http://return.rolka.su/" target=_blank> <img src="http://movies-and-cartoons.espot.ru/imgpv/movies_and_cartoons/the_lord_of_the_rings/the_lord_of_the_rings_072.jpg"border="0"alt="Властелин колец!" width=200 height=100></a> 
<a href="http://sababa.webhost.ru" target=_blank> <img src="http://sababa.webhost.ru/image/BANNIER.gif" border="0"alt=" Cкрипты, шаблоны, курсоры, часы и знаменитости." width=125height=105></a></center> 
<a href=http://taintedlove.mybb.ru/ target="_blank"><img src="http://forumupload.ru/uploads/0008/86/e6/434-1.gif"> </a>
<a href="http://zapredelami15.funbb.ru/" target="_blank" ><img src="http://i056.radikal.ru/0912/59/3b1cd7a0e434.gif" border="0"> </a><a href="http://roleresources.ru" target="_blank"><img src="http://s55.radikal.ru/i147/0810/0e/1239c3bc5708.gif"title="|Role.Resources|"border="0"width="88" height="31"></a> <a href="http://animetokyo.ru/"><img src="http://i005.radikal.ru/0906/3c/d1ce01b2abfd.gif" alt="†Shinzo: Последнее Испытание†"><a href="http://avatar.5bb.ru/" target="_blank" title="Avatar|Oel ngati kameie"><img src="http://s55.radikal.ru/i150/1001/5e/237a512858f5.gif" alt="Avatar|Oel ngati kameie"</a><a href="http://catshistory.0pk.ru/" target=_blank> <img src="http://s006.radikal.ru/i215/1001/6d/35a2a5e62b2b.gif" border="0"alt="Коты-Воители |Новая История|" width=88height=31></a><a href=http://ageofpirates.mybb.ru/><img src=http://i077.radikal.ru/1001/e6/c6a3c4c97767.gif
alt="Клуб админов сервиса MyBB" border=10></a><a href="http://halfages.spybb.ru"><img border="0" src="http://s45.radikal.ru/i110/0902/18/2195bf05f7d7.gif" alt="Средневековье: новая история"></a><a href="http://narutoshippuuden.9bb.ru/"><img src="http://s002.radikal.ru/i199/1002/f0/288f95314d03.gif" width=88 height=31 border=0></a><a href="http://vampireknight.7bb.ru/"><img src="http://s40.radikal.ru/i089/1001/15/956a12368a4d.gif" width=88 height=31 border=0></a><a href="http://furryatwar.forumrpg.ru/" title="Release the beast inside" target="blank"><img src="http://s53.radikal.ru/i139/1003/b5/64a3d8f09654.jpg"></a>
</div></div>

 

 
<style>
#button-spoiler {background-image:url('http://forumupload.ru/uploads/0000/12/13/488-1.gif'); padding:0; line-height:0; background-position:center; background-repeat:no-repeat; height:26px; width:100%}
</style>
<script type="text/javascript">
function tag_spolier()
{var FoundErrors = '';
var enterTITLE = prompt("кот в Мешке", 'Спойлер');
bbcode('[spoiler]',('|'+enterTITLE+'[/spoiler]'));}
if(form=document.getElementById("form-buttons"))
form.getElementsByTagName("tr")[0].insertCell(19).innerHTML="<img src='/i/blank.gif' title='Вставить спойлер' id='button-spoiler' onclick=\"tag_spolier()\">"
function addSpoilerSpoiler(str,from,internal){
var pos=0,pos2=0,newpos=0
if((pos=str.indexOf("[spoiler]",from))==-1) return str;
if((pos2=str.indexOf("[/spoiler]"),pos+9)==-1) return str;
newpos=str.indexOf("[spoiler]",pos+9)
if(newpos<pos2 && newpos!=-1) str=addSpoiler(str,pos+9,true)
if((pos2=str.indexOf("[/spoiler]",pos+9))==-1) return str;
 
txt = str.substring(pos+9,pos2);
if((sepPos=txt.indexOf("|",0))==-1) return str;
 
str=str.substring(0,pos)+makeSpoilerSpoiler(txt.substring(0,sepPos),txt.substring(sepPos+1,txt.length))+str.substring(pos2+10,str.length)
 
if( str.indexOf("[spoiler]")!=-1 && internal==false) str=addSpoilerSpoiler(str,0,false)
return str}
 
function makeSpoilerSpoiler(txt1,txt2){
txt='<div class="quote-box" style="padding:1px;background: none;border: 0;"><cite style="width:100%;margin:0;"><input class="spoiler-button" style="width:140px;font-size:10px; margin:0; cursor: pointer" type="button" value="'+txt2+'"></cite><blockquote class="quote-box" style="display:none; width: 80%;border: 1px solid black;margin:0;">'+txt1+'</blockquote></div>'
return txt}
 
$(document).ready(function(){
     $("div.quote-box > cite > input.spoiler-button").click(function(){
$(this).parents("div.quote-box").find("blockquote.quote-box").toggle("normal");
     });
});
 
 
if((document.URL.indexOf("viewtopic.php")!=-1) || (document.URL.indexOf("post.php")!=-1)){
elm=document.getElementById("pun-main").getElementsByTagName("div")
for(x in elm) if(elm[x].className=="post-content"){
var post=elm[x]
post.innerHTML=addSpoilerSpoiler(post.innerHTML,0,false)}}
</script> 
 
<script type="text/javascript"> 
if (document.URL.indexOf("viewforum")!=-1)
{var trs=document.getElementById('pun-main').getElementsByTagName("table")[0].rows
var io=1
for (io=1; io<=(trs.length-1); io++)
{if ((trs[io].className.indexOf("isticky")!=-1)&&(io==1))
{var portant=document.getElementById('pun-main').getElementsByTagName("table")[0].insertRow(1)
var im=portant.insertCell(0)
im.innerHTML="Важности"
im.style.color="#FFFFFF"
im.style.backgroundColor=""
im.colSpan="4"}
else if ((trs[io].className.indexOf("isticky")!=-1)&&(trs[io+1].className.indexOf('isticky')==-1))
{var normal=document.getElementById('pun-main').getElementsByTagName("table")[0].insertRow(io+1)
var normal1=normal.insertCell(0)
normal1.innerHTML="Остальное"
normal1.style.color="#FFFFFF"
normal1.style.backgroundColor=""
normal1.colSpan="4"
}}}
</script> 
 
<script> 
<!--
indexof="Алагейзия"
str = document.getElementById("navindex").innerHTML
pos = str.indexOf("Форум")
document.getElementById("navindex").innerHTML=str.substring(0,pos)+indexof+str.substring(pos+5,str.length-1)
-->
</script> 
<script> 
<!--
userof="Жители"
str = document.getElementById("navuserlist").innerHTML
if( (pos=str.indexOf("Участники")) != -1 )
document.getElementById("navuserlist").innerHTML=str.substring(0,pos)+userof+str.substring(pos+9,str.length-1)
-->
</script> 
<script> 
<!--
faseof="Личное дело"
str = document.getElementById("navprofile").innerHTML
pos = str.indexOf("Профиль")
document.getElementById("navprofile").innerHTML=str.substring(0,pos)+faseof+str.substring(pos+14,str.length-1)
-->
</script> 
<script> 
<!--
pismaof="Летописи"
str = document.getElementById("navpm").innerHTML
pos = str.indexOf("Сообщения")
document.getElementById("navpm").innerHTML=str.substring(0,pos)+pismaof+str.substring(pos+9,str.length-1)
-->
</script> 
<script> 
<!--
godof="Админка"
str = document.getElementById("navadmin").innerHTML
pos = str.indexOf("Администрирование")
document.getElementById("navadmin").innerHTML=str.substring(0,pos)+godof+str.substring(pos+17,str.length-1)
-->
</script> 
<script> 
<!--
findof="Ищейка"
str = document.getElementById("navsearch").innerHTML
pos = str.indexOf("Поиск")
document.getElementById("navsearch").innerHTML=str.substring(0,pos)+findof+str.substring(pos+5,str.length-1)
-->
</script> 
 
 
 <script type="text/javascript"> 
    str = document.URL
    var cati = str.substring(str.indexOf("wcategory=")+10);
    if(str.indexOf("?showcategory=")!=-1 || str.indexOf("index.php?showcategory=")!=-1)
    {
    var cat = document.getElementsByTagName("div")
    for(i=0; i<cat.length; i++)
    {
        if(cat[i].id.indexOf("pun-category")!=-1)
        {
        var cat_id = cat[i].id.substring(cat[i].id.indexOf("y")+1, cat[i].id.length)
        document.getElementById("pun-category"+cat_id).style.display = "none"
        }
    }
    document.getElementById("pun-category"+cati).style.display = "block"
    }
    var catq = document.getElementsByClassName("catleft")
 
    for(q=0;q<catq.length; q++){
    var w = q+1
    catq[q].nextSibling.innerHTML="<a href='index.php?showcategory="+w+"'>"+catq[q].nextSibling.innerHTML+"</a>"
    }
    </script> 
 
	<script type="text/javascript"> 
        var trr=document.getElementsByTagName("div")
        var fi=0
        for (fi=0; fi<=(trr.length-1);fi++)
        {if (trr[fi].className=="post-links")
        {var drr=trr[fi].getElementsByTagName("a")
        drr[0].innerHTML="<img src='http://s52.radikal.ru/i135/0901/4c/de775f924a08.jpg'/>"
        drr[1].innerHTML="<img src='http://i026.radikal.ru/0901/21/f16ba31f20d0.jpg' />"
        var er=2
        for (er=2; er<=(drr.length-1); er++)
        {if (drr[er].innerHTML.indexOf("E-mail")!=-1)
        {drr[er].innerHTML="<img src='http://s48.radikal.ru/i119/0901/f4/02a849ca3100.jpg' />"}
        else if (drr[er].innerHTML.indexOf("Вебсайт")!=-1)
        {drr[er].innerHTML="<img src='http://i077.radikal.ru/0901/40/6cc10d28ebf0.jpg'/>"}
        else if (drr[er].innerHTML.indexOf("Цитировать")!=-1)
        {drr[er].innerHTML="<img src='http://s59.radikal.ru/i165/0901/1f/443b8caf012f.jpg '/>"}
        else if (drr[er].innerHTML.indexOf("Редактировать")!=-1)
        {drr[er].innerHTML="<img src='http://s58.radikal.ru/i159/0901/8d/fd00650a90f0.jpg ' />"}
        else if (drr[er].innerHTML.indexOf("Удалить")!=-1)
        {drr[er].innerHTML="<img src='http://s61.radikal.ru/i172/0901/ce/af150ac64d03.jpg ' />"}
         }}}
</script> 

<script type="text/javascript">
function changeLink()
{var arr=document.links
for (j in arr)
{
if (arr[j].innerHTML=="Начать новую тему")
{arr[j].innerHTML="<img id='fifik1'"+" src='http://i031.radikal.ru/0901/c0/90720ee8119a.jpg' />"}
else if (arr[j].innerHTML=="Начать опрос")
{arr[j].innerHTML="<img id='fifik2'"+" src='адрес картинки Начать опрос' />"}
else if (arr[j].innerHTML=="Отписаться)")
{arr[j].innerHTML="<img id='fifik3'"+" src='http://s54.radikal.ru/i144/0901/4d/50ebf9d96a09.jpg' />"}
else if (arr[j].innerHTML=="Подписаться и отслеживать тему")
{arr[j].innerHTML="<img id='fifik4'"+" src='http://s39.radikal.ru/i084/0901/95/07527463ffe6.jpg' />"}}}
changeLink()
</script>

Отредактировано FeroDaR (Пт, 4 Июн 2010 14:07:55)

0

6

благодарю,сейчас попробую

0

7

Масяня
Здравствуйте.

Масяня написал(а):

Форум в последние несколько дней стал очень долго загружаться.
Пожалуйста подскажите в чем проблема.
wwweragon.mybb.ru

Уберите этот код:

Код:
<a href="http://top.roleplay.ru/6076" target="top_" 
  title="Рейтинг Ролевых Ресурсов"><img 
  src="http://img.rpgtop.su/rpgtop1.gif" alt="Рейтинг Ролевых Ресурсов"
  border="0" width="88" height="31"> </a><script src="http://www.top.hpn.ru/hpntop_counter.php?id=2842"></script>

На логе загрузки форума хорошо видно, что он тормозит загрузку:

http://s52.radikal.ru/i138/1006/9f/7d0d58ce1fdbt.jpg

0

8

хех, все равно не грузится + еще сильно сжался

0

9

Масяня
Что-то лишнее видимо осталось... Сейчас посмотрю.

0

10

Масяня
В ХТМЛ-верх стоит код:

<style type="text/css">
#pun {
float: center;    
filter:alpha(opacity=70);
opacity: 0.7;
-moz-opacity: 0.7;
-khtml-opacity: 0.7;
width: 400px;
}
</style>

Красное убрать совсем. Зелёное - ширина форума, сейчас она у Вас 400 пикселов.

0

11

http://i053.radikal.ru/0806/7f/8b80a2497566.gif и все равно не грузит

0

12

Масяня написал(а):

хех, все равно не грузится

Вы код-то собираетесь убирать?

Код:
<a href="http://strecoza.net/top/">
<img src="http://strecoza.net/top/button.php?u=asca" alt="Òîï ñàéòîâ" border="0" />
</a><script src="http://www.top.hpn.ru/hpntop_counter.php?id=2842"></script>

Он всё ещё там, я его в исходнике вижу.

Отредактировано rps (Пт, 4 Июн 2010 14:36:49)

0

13

Масяня
Убирайте ВСЁ, что идёт от этого адреса: www.top.hpn.ru. ВСЁ!!!

0

14

Масяня
ХТМЛ-низ:

Код:
<script> 
function HideInfo(id,but){
if(but.value=="+"){
  but.value = "-";document.getElementById(id).style.display = ""}
else{
  but.value = "+";document.getElementById(id).style.display = "none"}
  return false}
 
d = document.getElementsByTagName("div")
 
for (i=0;d[i]; i++){
if (d[i].className.indexOf("post-author")!=-1){t = d[i].innerHTML
   if((j = t.toLowerCase().indexOf("<li class=pa-from>"))!=-1 || (j = t.toLowerCase().indexOf("<li class=\"pa-from\">"))!=-1 || (j = t.toLowerCase().indexOf("<li class=pa-reg>"))!=-1 || (j = t.toLowerCase().indexOf("<li class=\"pa-reg\">"))!=-1)
    d[i].innerHTML = t.substring(0,j)+"<input type='Submit' onClick=\"return HideInfo('info"+i+"',this)\" value='+'><br><div id='info"+i+"' style='display:none'>"+t.substring(j,t.length)+"</div>"}}
</script> 
<script language="JavaScript"> 
str=document.URL
if(str.substring(str.lastIndexOf('/')+1)=="" || str.substring(str.lastIndexOf('/')+1)=="index.php")
   document.write("<style>#forum_f124,#forum_f121,#forum_f92,#forum_f146,#forum_f65,#forum_f66,#forum_f67,#forum_f79#,forum_f78,#forum_f36,#forum_f30,#forum_f33,#forum_f133,#forum_f55,#forum_f93,#forum_f113,#forum_f140,#forum_f150,#forum_f84{display:none}</style>")

Замените на:

Код:
<script> 
function HideInfo(id,but){
if(but.value=="+"){
  but.value = "-";document.getElementById(id).style.display = ""}
else{
  but.value = "+";document.getElementById(id).style.display = "none"}
  return false}
 
d = document.getElementsByTagName("div")
 
for (i=0;d[i]; i++){
if (d[i].className.indexOf("post-author")!=-1){t = d[i].innerHTML
   if((j = t.toLowerCase().indexOf("<li class=pa-from>"))!=-1 || (j = t.toLowerCase().indexOf("<li class=\"pa-from\">"))!=-1 || (j = t.toLowerCase().indexOf("<li class=pa-reg>"))!=-1 || (j = t.toLowerCase().indexOf("<li class=\"pa-reg\">"))!=-1)
    d[i].innerHTML = t.substring(0,j)+"<input type='Submit' onClick=\"return HideInfo('info"+i+"',this)\" value='+'><br><div id='info"+i+"' style='display:none'>"+t.substring(j,t.length)+"</div>"}}
</script> 
<script language="JavaScript"> 
str=document.URL
if(str.substring(str.lastIndexOf('/')+1)=="" || str.substring(str.lastIndexOf('/')+1)=="index.php")
   document.write("<style>#forum_f124,#forum_f121,#forum_f92,#forum_f146,#forum_f65,#forum_f66,#forum_f67,#forum_f79#,forum_f78,#forum_f36,#forum_f30,#forum_f33,#forum_f133,#forum_f55,#forum_f93,#forum_f113,#forum_f140,#forum_f150,#forum_f84{display:none}</style>")
 </script>

0

15

фух..все заработало.Спасибо огромное

0

16

Здравствуйте всем нашему форуму не поможете?
http://forumomarvel.forumbb.ru/

Всё началось с того, что форум стал тормазить, причём очень сильно всё грузится по нескольку "часов" там невозможно было работать а уж темболее оставаться. Вся эта штука происходит в браузере Fire Fox.Я уже была на одном форуме поддержке, мне сказали что наверно слишком много скриптов. Я короче все скрипты убрала и вернула форум в его самое первое состояние, сами знаете какой, тот когда получили впервый раз. Да, эти зависания прекратились, и даже дополнительные смайлики скрипта перестали виснуть. Мне помогли с дизом. Скриптов стало меньше, но все-равно он продолжает виснуть, поставила таблицу, которая раньше у меня стояло, и чё? Её вобще щас разнесло, а форум тормазит в определённых местах. И это место самая верхушка форума, ну где там главная панель, форума навигаций, участников и т.п. Короче какой-то кошмар. Раньше всё было нормально, стояло много скриптов, всё было ок, пока однажды - вот это всё. Заходишь с Оперы и Экспловер всё выглядет замечательно и ничего не виснет, но мне - то нужен Fire Fox! И многие им пользуются, и кто будет с него заходить, увидят весь этот кошмар!!

0

17

Anima,незнаю все норм форум дастатачно бустра грузится у меня скорасть нета 256клб-с все хорошо грузит и бустро..

0

18

Farming
Если Вы зашли с Fire Fox, я тока что таблицу убрала, а то там всё провисало, сейчас уже легче. Но поставлю я ещё скриптов и всё начнёт виснуть.

0

19

Anima,нет с оперы завтра посмотрим сегодня уже поздно..

0

20

Farming написал(а):

нет с оперы завтра посмотрим сегодня уже поздно..

Как угодно, но с оперы всё ништяк, с Fire Fo[x смотрите, и для сравнение с моим вот форум http://marvelcomics.funbb.ru/ и дополнительные смайлы внизу под панелью ответа не тормазят как мои. И вобще там ничего не тормозит.

0


Вы здесь » Единый форум поддержки » Корзина » Форум долго грузится