-
Postów
78 199 -
Dołączył
-
Ostatnia wizyta
-
Wygrane w rankingu
574
Typ zawartości
Profile
Forum
Pliki
Galeria
Blogi
Sklep
Wydarzenia
Treść opublikowana przez DawPi
-
Logi. Logi. Logi. Prawdę Ci powiedzą.
-
W takim, jakie masz logo na forum. Kliknij prawym przyciskiem myszy nad logo i sprawdź, jaki jest format i gdzie znajduje się plik na FTP. To jest naprawdę proste, tylko trzeba spróbować.
-
Tym razem filmowo. http://dilidoo.com/2009/10/28/nice_gift_2_2_mb.html :D
-
Jednak wracamy do loga od Trackera. Come on. Nikt nam nie zrobi czegoś extra? ;(
-
[IPS Blog] IPS Company Blog - New Mobile skin coming soon
DawPi odpowiedział(a) na NewsBot temat w Wiadomości z Invision Power Services
Pól roku temu to IP.Board 3.x był w powijakach. -
Nie ma problemów o ile nie edytowałeś go. Jeśli edytowałeś to będziesz musiał wprowadzić ręcznie zmiany do edytowanych bitów. A skin usunęliśmy sami.
-
IP.Shoutbox 1.1.2 wydany!
DawPi odpowiedział(a) na DawPi temat w Wiadomości z Invision Power Services
Tak, jak normalne rozszerzenia ( hooki ). Wiesz jak? -
Należy wrzucić wszystkie pliki i odpalić adres www.adresforum.pl/admin/upgrade/ Hooków nie musisz usuwać.
-
Naprawdę pamiętam o wszystkim, mam pozapisywane, ale doba ma tylko 24h, a dłuższe siedzenie przy PC też nie jest możliwe.
-
The issue this topic was opened for has now been resolved.
-
ROZWIĄZANY: meta name="robots" content="noindex, nofollow"
DawPi odpowiedział(a) na Arek256 temat w Ogólny support IPB
Problem ROZWIĄZANY. Jeśli są jakiekolwiek wątpliwości, pytania proszę o założenie nowego tematu. Wszelkie uzasadnione reklamacje/pretensje/sugestie/rady przyjmuje ekipa forum. -
ROZWIĄZANY: meta name="robots" content="noindex, nofollow"
DawPi odpowiedział(a) na Arek256 temat w Ogólny support IPB
Trzeba opisy czytać. -
Code for files: <table class='ipb_table' cellspacing="1"> <tbody> <tr> <td class='row2'> <?php /* Init */ $return = ""; $to_show = 28; $per_row = 7; $count = 0; /* Query */ $this->DB->build( array( 'select' => 'f.file_id, f.file_name, f.file_ssname', 'from' => array( 'downloads_files' => 'f' ), 'add_join' => array( 0 => array( 'select' => 'm.name as uname', 'from' => array( 'members' => 'm' ), 'where' => 'f.file_submitter=m.member_id', 'type' => 'left' ) ), 'order' => 'f.file_id DESC', 'limit' => array( 0, $to_show ), ) ); $this->DB->execute(); /* Got some rows */ if ( $this->DB->getTotalRows() ) { $return .= "<div><table><tr>"; $return .= "<tr> <td rowspan='{$this->DB->getTotalRows()}'> menu dude ;] </td> </tr>"; while ( $row = $this->DB->fetch() ) { $count++; $return .= <<<EOF <td class='short'> <a href="index.php?app=downloads&showfile={$row['file_id']}"> EOF; if ( $row['file_ssname'] ) { $return .= <<<EOF <img src="index.php?app=downloads&module=display§ion=screenshot&id={$row['file_id']}" width='128' height='100' alt="{$row['file_name']}" /> EOF; } else { $return .= <<<EOF <em>No Screenshot Available</em> EOF; } $return .= <<<EOF </a><br /> <i>By:</i> <strong>{$row['uname']}</strong><br> In <a href="http://wallbase.org/index.php?app=downloads"> Skins & Themes</a> </td> EOF; /* New row */ if ( $count && $count % $per_row == 0 ) { $return .= "</tr><tr>"; } } $return .= "</tr></table></div>"; } /* Return */ print $return; ?> </td> </tr> </tbody> </table> On top.. Change this: <td rowspan='{$this->DB->getTotalRows()}'> menu dude ;] </td> To: <td rowspan='{$this->DB->getTotalRows()}' valign='top'> menu dude ;] </td>
-
Now: <table class='ipb_table' cellspacing="100"> <tbody> <tr> <td class='row1'> <div class='moderation_bar rounded clear'> <?php /* Init */ $return = ""; $to_show = 28; $per_row = 7; $count = 0; /* Query */ $this->DB->build( array( 'select' => 'i.id AS picid, i.masked_file_name, i.directory, i.caption, i.member_id, i.ratings_count, i.ratings_total, i.comments ', 'from' => array( 'gallery_images' => 'i' ), 'add_join' => array( 0 => array( 'select' => 'g.rate AS number', 'from' => array( 'gallery_ratings' => 'g' ), 'where' => 'i.id=g.img_id', 'type' => 'left' ) ), 'add_join' => array( 1 => array( 'select' => 'm.name as uname', 'from' => array( 'members' => 'm' ), 'where' => 'i.member_id=m.member_id', 'type' => 'left' ) ), 'order' => 'i.id DESC', 'limit' => array( 0, $to_show ), ) ); $this->DB->execute(); /* Got some rows */ if ( $this->DB->getTotalRows() ) { $return .= "<div><table>"; $return .= "<tr> <td rowspan='{$this->DB->getTotalRows()}'> menu dude ;] </td> </tr>"; while ( $row = $this->DB->fetch() ) { $count++; $row['rate']['id'] = intval( $row['picid'] ); $row['rate']['number'] = intval( $row['number'] ); $row['rate']['canrate'] = 1; $row['rate']['_rate_int'] = $row['ratings_count'] ? round( $row['ratings_total'] / $row['ratings_count'], 0 ) : 0; $row['number'] = $this->registry->output->getTemplate( 'gallery_imagelisting' )->rate_form( $row['rate'] ); $return .= <<<EOF <td class='short'> <a href="index.php?app=gallery&module=images§ion=viewimage&img={$row['picid']}"> <img border="2" src="uploads/{$row['directory']}/tn_{$row['masked_file_name']}" alt="{$row['caption']}"/> </a><br /> <i>By:</i><a href='index.php?app=gallery&module=user&user={$row['member_id']}'><b> {$row['uname']}</b></a></strong><br />{$row['number']} <br /> <a href="index.php?app=gallery&module=post§ion=comment&do=postcomment&img={$row['picid']}">Comment?</a> - <a href="index.php?app=gallery&module=images§ion=viewimage&img={$row['picid']}"><b>{$row['comments']}</b></a> </td> EOF; /* New row */ if ( $count && $count % $per_row == 0 ) { $return .= "</tr><tr>"; } } $return .= "</tr></table></div>"; } /* Return */ print $return; ?> </td> </tr> </tbody> </table> ?
-
Problem z oznaczeniem przeczytanych tematów
DawPi odpowiedział(a) na necik temat w Ogólny support IPB
Staram się. (wciąż nad tym myślę) -
ROZWIĄZANY: meta name="robots" content="noindex, nofollow"
DawPi odpowiedział(a) na Arek256 temat w Ogólny support IPB
Co powiesz na użycie modyfikacji: (DP30) Custom Meta Tags 1.0.0 PL? Dodasz sobie i ten wpis i inne. I co ważne: w jednym miejscu będziesz mógł zmieniać informacje wyświetlane we wszystkich skinach. -
[IPS Blog] IPS Company Blog - New Mobile skin coming soon
DawPi odpowiedział(a) na NewsBot temat w Wiadomości z Invision Power Services
Przedstawiam pierwsze screeny z tego nowego skina przeznaczonego dla użytkowników mobilnych. Co sądzicie? Wg mnie to bardzo dobry skin, a będzie jeszcze lepszy i umożliwi szybkie przeglądanie for. -
ROZWIĄZANY: Biała strona przy instalacji spolszczenia
DawPi odpowiedział(a) na KOREK temat w Ogólny support IPB
Problem ROZWIĄZANY. Jeśli są jakiekolwiek wątpliwości, pytania proszę o założenie nowego tematu. Wszelkie uzasadnione reklamacje/pretensje/sugestie/rady przyjmuje ekipa forum. -
Problem z oznaczeniem przeczytanych tematów
DawPi odpowiedział(a) na necik temat w Ogólny support IPB
necik: tak, to też może być przyczyną, nie od dziś wiemy, że 'masz' problemy z utf8. -
Lul, try this: <table class='ipb_table' cellspacing="100"> <tbody> <tr> <td class='row1'> <div class='moderation_bar rounded clear'> <?php /* Init */ $return = ""; $to_show = 28; $per_row = 7; $count = 0; /* Query */ $this->DB->build( array( 'select' => 'i.id AS picid, i.masked_file_name, i.directory, i.caption, i.member_id, i.ratings_count, i.ratings_total, i.comments ', 'from' => array( 'gallery_images' => 'i' ), 'add_join' => array( 0 => array( 'select' => 'g.rate AS number', 'from' => array( 'gallery_ratings' => 'g' ), 'where' => 'i.id=g.img_id', 'type' => 'left' ) ), 'add_join' => array( 1 => array( 'select' => 'm.name as uname', 'from' => array( 'members' => 'm' ), 'where' => 'i.member_id=m.member_id', 'type' => 'left' ) ), 'order' => 'i.id DESC', 'limit' => array( 0, $to_show ), ) ); $this->DB->execute(); /* Got some rows */ if ( $this->DB->getTotalRows() ) { $return .= "<div><table>"; $return .= "<tr> <td rowspan='{$this->DB->getTotalRows()}'> </td> <td> </td> </tr>"; while ( $row = $this->DB->fetch() ) { $count++; $row['rate']['id'] = intval( $row['picid'] ); $row['rate']['number'] = intval( $row['number'] ); $row['rate']['canrate'] = 1; $row['rate']['_rate_int'] = $row['ratings_count'] ? round( $row['ratings_total'] / $row['ratings_count'], 0 ) : 0; $row['number'] = $this->registry->output->getTemplate( 'gallery_imagelisting' )->rate_form( $row['rate'] ); $return .= <<<EOF <td class='short'> <a href="index.php?app=gallery&module=images§ion=viewimage&img={$row['picid']}"> <img border="2" src="uploads/{$row['directory']}/tn_{$row['masked_file_name']}" alt="{$row['caption']}"/> </a><br /> <i>By:</i><a href='index.php?app=gallery&module=user&user={$row['member_id']}'><b> {$row['uname']}</b></a></strong><br />{$row['number']} <br /> <a href="index.php?app=gallery&module=post§ion=comment&do=postcomment&img={$row['picid']}">Comment?</a> - <a href="index.php?app=gallery&module=images§ion=viewimage&img={$row['picid']}"><b>{$row['comments']}</b></a> </td> EOF; /* New row */ if ( $count && $count % $per_row == 0 ) { $return .= "</tr><tr>"; } } $return .= "</tr></table></div>"; } /* Return */ print $return; ?> </td> </tr> </tbody> </table> UNTESTED!
-
To remove bottom line you should find in CSS this code: table.ipb_table tr td { border-bottom:1px solid #B1C3B5; padding:10px 8px 8px; } And change: border-bottom:1px solid #B1C3B5; To: border-bottom:0px solid #B1C3B5; Should work. In my FireBug works fine. Ok, now i'm trying add this menu. I think my code will be without fancy rounded corners, though.
-
Dobra. Wracamy do pierwszej propozycji. Jak się nic lepszego nie pojawi to zostanie.
-
Anyway - gdzieś ze wschodu.
-
Ono () jest z Rumunii i może prąd im odcięli? Mam nadzieję, że choć bez kasy jak na razie robiło.
-
Ja zrozumiałem jej/jego wypowiedzi jako 'ona'.
