Habe auch einen.
Die Leistung für das kleine Vieh ist schon geil
Beiträge von Tuetensuppe
-
-
aber wie mache ich es, dass der button per css verändert werden kann ohne, dass die box sich verändert?
-
Geldgeiler Hund! HUSCH weg
-
Hey Leude ich suche einen Programmiere, welcher sich mit dem IV CMS auskennen muss.
Ich brauche dieses Design komplett funktionstüchtig im IV
http://www.fotos-hochladen.net/uploads/1bps7mhrje2.png
Skype: tommymelli1
-
4x 140mm Lüfter
Intel core i 7 4770k auf 4.1 GHz
Nvidia Gtx Titan black
Mhhhh naja -
Hey Leude
Ich bräuchte mal eure Hilfe!
Ich hätte gerne ein goldenes Gaming Gehäuse als Midi Tower ATX. Welches würdet ihr euch kaufen?
Am besten wäre Bitfenix
-
Ich brauche unbegint die Lösung dafür also
//PUSH -
In den meisten News benutzt du nicht mehr <> und </> sondern [] und [/]
-
Ich habe einmal das "News Template" und das "Kommentar Template" Template
News Template
PHP
Alles anzeigen<style type="text/css"> .cropped-image { border-right: 2px solid lightgrey; background-position: right; width: 210px; height: 115px; margin-right: 5px; background-repeat: no-repeat; -moz-border-radius: 2px 0px 0px; border-radius: 6px; } #newsbg1 { width: auto; height: 115px; } </style> <c:notempty var="news"> <c:foreach var="news" value="n"> <div id="box2" class="pad"> <div style="padding: 5px; color: black; font-family: Tahoma; font-size: 12px;"> <div id="newsbg1"> <div class="cropped-image" style="background: url('${n.bild}') no-repeat; float: left; background-position:right;" onmouseover="with(this.style){position = 'relative';right = '-3px'}" onmouseout="with(this.style){position = '';top = ''}"></div> <font color="#666666"> <div style="text-transform: uppercase;">${n.category}</div> <a href="?page=4&news=${n.id}"><b><div style="font-family: Tahoma; font-size: 15px; ">${n.title}</div></b></a> <s:limit lim="110" dot=" [...]">${n.description}</s:limit> </font> <div style="margin-top: 13px;"> <i><font color="black">${n.autor}</font> </i><a href="index.php?page=4&news=${n.id}" title="» Artikel lesen">» Artikel lesen</a> </div></div></div></div> </c:foreach> <c:isempty var="news"> <strong><span style="font-size: 16px; color: red; text-shadow: red 1px 1px 12px;"><center>Keine News vorhanden.</center></span></strong> </div> </div></div> </c:isempty>
Kommentar Template
PHP
Alles anzeigen<style> #newsbg1 { width: auto; height: 115px; margin-left: -4px; margin-top: -5px; text-shadow: 1px 1px 0px #ffffff; } .newscropped { width: 200px; height: 113px; border: 1px solid #666666; margin-right: 5px; margin-left: 5px; float: left; border-radius: 6px; } </style> <div id="box2" class="pad"> <div id="boxc" class="box"> ${news.title} </div> <div id="newsbg1"> <div class="newscropped" style="background: url(${news.bild}); background-position: right;"> </div> <div style="float: right; padding-right: 100px; padding-top: 20px;"><font size="5" color="#828282 ">${news.description}</font></div></div> <div style="float: right; padding-right: 7px; padding-top: 20px;"> <font color="#666666"><b>Autor:</b><a href="index.php?page=32&id=${news.create_by}"> ${news.autor}</a></font></div> <div style="float: left; padding-left: 7px; padding-top: 20px;"> <n:date format="d.m.Y" time="news.create_date" /> um <n:date format="H:i" time="news.create_date" /></div> </div> <div id="box2" class="pad"> <n:bbc>${news.content}</n:bbc> </div> <form action="${page_self}&news=${news.id}" method="post"> <div id="box2" class="pad"> <div id="boxc" class="box"> Kommentare </div> <c:notempty var="error"><p align="center"><b style="color:red">${error}</b></p></c:notempty> <p align="center"><textarea name="comment" cols="55" rows="2" placeholder="Deine Meinung dazu..." ></textarea></p> <p align="center"><input type="submit" value="Kommentieren!"></p> </form> <c:notempty var="comments"> <c:foreach var="comments" value="comment"> <div style="background:#707070; margin-top:2px; color:white; padding:10px;border-radius:4px;"> <div style="background: #999999; color:#fff; padding:5px; margin:-5px; margin-bottom:5px; font-size:12px; height:15px; border-radius:4px; " class="rahmen"><a href="?page=32&id=${comment.create_by}" style="color:#fff;text-shadow:#000 0px 0px 5px;"> ${comment.autor}</a> schrieb am <n:date format="d.m.Y H:i" time="comment.create_date" />: </c:is></div> <div style="color:#FFF; text-shadow:1px 1px 0px #282828; font-weight:bold;"> <c:bbcode>${comment.content}</c:bbcode></div> </div> </c:foreach> </c:notempty> <c:isempty var="comments"> <strong><span style="color: red; text-shadow: red 1px 1px 12px;"><center>Es wurden noch keine Kommentare abgegeben.</center></span></strong> </c:isempty> </div>
-
mit verlinkung ist das verlinken zum news erstellen gemeint
PHP
Alles anzeigenclass taglib_news extends taglib { function doValidate( $tag, $args ) { switch( $tag['open']['name'] ) { case 'navi': if( !isset( $tag['close'] )) return false; else return true; break; case 'plain': if( !isset( $tag['close'] )) return false; else return true; break; case 'pic': if( empty( $args['number'] ) && empty( $args['name'] )) return false; else return true; break; case 'bbc': if( !isset( $tag['close'] )) return false; else return true; break; case 'date': if( empty( $args['time'] )) return false; elseif( empty( $args['format'] )) return false; else return true; break; default: return false; } } function doTag( $tag, $args ) { if( $this->doValidate( $tag, $args )) { switch( $tag['open']['name'] ) { case 'navi': global $prefix, $db; $panel = $this->template->getContext( "panel" ); $panelvars = $this->template->getContext( "panelvars" ); $count = $db->fetch_query( "SELECT count( * ) anzahl FROM ". $prefix."news_article WHERE status= 1 AND panel = {$panel['id']}" ); $count = $count[0]['anzahl']; $result = ""; for( $i = 0; $i * $panelvars['perpage'] < $count; $i++ ) { $this->template->setContext( "navi", array( "link" => PAGE_SELF."&show=".$i, "caption" => $i+1 )); $result .= $this->parseBody( $tag ); } return $result; break; case 'plain': return $this->rmbbc( $this->parseBody( $tag )); break; case 'pic': // JA das muss ich noch mal machen break; case 'date': return date( $args['format'], $this->template->getContext( $args['time'] )); break; case 'bbc': return $this->bbc( $this->parseBody( $tag )); break; default: return false; } return ""; } else return false; } function bbc($string) { $patterns = array( '`\[b\](.+?)\[/b\]`is', '`\[i\](.+?)\[/i\]`is', '`\[u\](.+?)\[/u\]`is', '`\[center\](.+?)\[/center\]`is', '`\[strike\](.+?)\[/strike\]`is', '`\[color=#([0-9A-F]{6})\](.+?)\[/color\]`is', '`\[email\](.+?)\[/email\]`is', '`\[img\](.+?)\[/img\]`is', '`\[img=center\](.+?)\[/img\]`is', '`\[img=left\](.+?)\[/img\]`is', '`\[img=right\](.+?)\[/img\]`is', '`\[url=([a-z0-9]+://)([\w\-]+\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^ "\n\r\t<]*?)?)\](.*?)\[/url\]`si', '`\[url\]([a-z0-9]+?://){1}([\w\-]+\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^ "\n\r\t<]*)?)\[/url\]`si', '`\[url\]((www|ftp)\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^ "\n\r\t<]*?)?)\[/url\]`si', '`\[indent](.+?)\[/indent\]`is', '`\[size=([1-6]+)\](.+?)\[/size\]`is' ); $replaces = array( '<strong>\1</strong>', '<em>\1</em>', '<span style="border-bottom: 1px dotted">\1</span>', '<div align="center">\1</div>', '<strike>\1</strike>', '<span style="color:#\1;">\2</span>', '<a href="mailto:\1">\1</a>', '<img src="\1" alt="" style="border:0px;" />', '<img src="\1" alt="" style="border:0px;" />', '<img vspace="0" hspace="4" align="left" src="\1" alt="" style="border:0px;" />', '<img vspace="0" hspace="4" align="right" src="\1" alt="" style="border:0px;" />', '<a target="_blank" href="\1\2">\6</a>', '<a target="_blank" href="\1\2">\1\2</a>', '<a target="_blank" href="http://\1">\1</a>', '<pre>\1</pre>', '<h\1>\2</h\1>' ); $string = preg_replace($patterns, $replaces , $string); return nl2br( $string ); } function rmbbc($string){ $patterns = array( '`\[b\](.+?)\[/b\]`is', '`\[i\](.+?)\[/i\]`is', '`\[u\](.+?)\[/u\]`is', '`\[center\](.+?)\[/center\]`is', '`\[strike\](.+?)\[/strike\]`is', '`\[color=#([0-9]{6})\](.+?)\[/color\]`is', '`\[email\](.+?)\[/email\]`is', '`\[img\](.+?)\[/img\]`is', '`\[img=center\](.+?)\[/img\]`is', '`\[img=left\](.+?)\[/img\]`is', '`\[img=right\](.+?)\[/img\]`is', '`\[url=([a-z0-9]+://)([\w\-]+\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^ "\n\r\t<]*?)?)\](.*?)\[/url\]`si', '`\[url\]([a-z0-9]+?://){1}([\w\-]+\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^ "\n\r\t<]*)?)\[/url\]`si', '`\[url\]((www|ftp)\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^ "\n\r\t<]*?)?)\[/url\]`si', '`\[indent](.+?)\[/indent\]`is', '`\[size=([1-6]+)\](.+?)\[/size\]`is' ); $replaces = array( '\1', '\1', '\1', '\1', '\1', '\2', '\1', '', '', '', '', '\6', '\2', '\1', '\1', '\2'); $string = preg_replace($patterns, $replaces , $string); return nl2br( $string ); } }
-
Hey Leude
Ich habe eine kleines Problem mit meinem IV CMS
Ich habe das News Package installiert und alles verlinkt nur wird mir jetzt angezeigt:Fatal error: Class 'taglib' not found in *******/index.php(33) : eval()'d code on line 1
wie behebe ich das?
-
Ich Pushe das ganze mal, da ich das CMS umbedingt brauche
-
Hey Leude ich suche das Crizer One Cms (Das Community CMS)
wenn es jemand hat und es mir geben könnte, wäre das echt nett
Zum Tausch gegen das CMS biete ich das HoloBeat CMS (IV)
Kontakt:
Skype: tommymelli1 -
Ich mache dir eins Gratis adde mich in Skype: tommymelli1
-
Die Chatcommunity an sich kannst du dir hier kaufen:
Verkaufe Community CMS -
-
Es müsste in den Räumen stehen Tabelle: rooms wenn nicht sorry
-
aha und woher willst du wissen, dass ich nichts gecodet hätte xD? ES STIMMT NICHT ICH HABE ES GECODET!
-
Aber selber gecodet
-
Hey Leude ich wollte euch mal mein aktives Projekt vorstellen
Ich arbeite momentan an einer Community auf der man miteinander kommunizieren kann
Hier der Linkhttp://www.myfriends.de.cm