wersja skryptu MyBB: 1.6.x
adres forum: www.trans-server.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu): Witam!
Chciałbym zainstalować plugin sidebox ale jak wyczytałem tu:
https://webboard.pl/wiki.php?sideboxes-z...jany-.html
Muszę mieć oryginalny kod z szablony-->str.główna-->index.
Posiadam styl The cure.
Z góry dzięki za pomoc.
Jeżeli edytowałeś plik index to powinien on być podświetlony na zielono. Jeżeli tak jest wystarczy, że obok naciśniesz na przycisk opcje, a następnie przywróć oryginał.
Nie, nie musisz mieć oryginalnego kodu. Masz przerobić swój aktualny.
przerobiłem i zdublowało się forum. była ta belka po prawej str. stopka i od nowa forum bez logo -.-
(04.02.2013, 19:12)Cristal napisał(a): [ -> ]-.-
Nie patrz tak na mnie, to ty edytowałeś szablon
Podaj zawartość, to zobaczy się, co należy poprawić.
Pewnie używa firefoxa i skopiował szablon z neta i od razu dał do index, zamiast wcześniej wkleić do notatnika
Jak robisz coś na forum, używaj Opery, albo kopiuj szablony z neta, wklejaj do notatnika i dopiero na forum ;p
używam google Chrome, i kopiuję wszystko z forum.
Kopiuj do notepad+ a potem na stronę. Podaj kod index jaki masz teraz.
chwilka, już dodaje...
Kod PHP:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
<style type="text/css">
.buttons {
background: url(images/arrowright.png) no-repeat;
width: 16px;
height: 16px;
display: block;
cursor: pointer;
}
.clickedbuttons {
background: url(images/arrowleft.png) no-repeat;
width: 16px;
height: 16px;
display: block;
cursor: pointer;
}
</style>
</head>
<body>
{$header}
<a class="buttons" style="float: right;"></a>
<a class="clickedbuttons" style="float: right;"></a>
<br class="clear" />
<div class="sidebar" style="float: right;width: 19%;">
{$sb_welcome}{$sb_search}{$sb_stats}{$sb_latestthreads}{$sb_additional}
</div>
<div class="forums" style="float: left;width: 80%;">
{$forums}
</div>
<br class="clear" />
{$forums}
{$boardstats}
<dl class="forum_legend smalltext">
<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->new_posts}</dd>
<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->no_new_posts}</dd>
<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
<dd>{$lang->forum_locked}</dd>
</dl>
<br style="clear: both" />
{$footer}
</body>
</html>
Zdublowało się bo masz dwa razy {$forums}
Zobacz tak:
Kod:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
<style type="text/css">
.buttons {
background: url(images/arrowright.png) no-repeat;
width: 16px;
height: 16px;
display: block;
cursor: pointer;
}
.clickedbuttons {
background: url(images/arrowleft.png) no-repeat;
width: 16px;
height: 16px;
display: block;
cursor: pointer;
}
</style>
</head>
<body>
{$header}
<a class="buttons" style="float: right;"></a>
<a class="clickedbuttons" style="float: right;"></a>
<br class="clear" />
<div class="sidebar" style="float: right;width: 19%;">
{$sb_welcome}{$sb_search}{$sb_stats}{$sb_latestthreads}{$sb_additional}
</div>
<div class="forums" style="float: left;width: 80%;">
{$forums}
</div>
<br class="clear" />
{$boardstats}
<dl class="forum_legend smalltext">
<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->new_posts}</dd>
<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->no_new_posts}</dd>
<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
<dd>{$lang->forum_locked}</dd>
</dl>
<br style="clear: both" />
{$footer}
</body>
</html>
wyskakuje mi to:
Kod:
Wystąpiły następujące problemy:
W tym szablonie została wykryta potencjalna luka bezpieczeństwa. Zweryfikuj szablon lub skontaktuj się z twórcami MyBB w celu uzyskania pomocy.
Ja tylko zabrałem jedną zmienną {$forums}. Poza tym nie widzę w tym szablonie niczego podejrzanego...
Może ktoś mądrzejszy się wypowie.