Noticias ...

+3
WictorP
LøTøS
Math
7 participantes

Math Math  • 16.02.13 16:53

Noticias ... Empty Noticias ... 16.02.13 16:53

Olhe , Minhas Noticias Estão assim ...
Noticias ... 33lyptg

Se Bugar >> https://2img.net/h/oi50.tinypic.com/33lyptg.jpg

OBS: Ja troquei a Articles.php , Mas continua assim !!

LøTøS LøTøS  • 16.02.13 17:55

Noticias ... Empty Re: Noticias ... 16.02.13 17:55

Isso é erro no css, eu não lembro bem onde fica o css da articles
mas faz o seguinte: baixe uma CMS que não tem esse bug, e vá em
htdocs/web-gallery/v2/styles e procura algo com news/noticias/articles.css
substitua o da sua cms com a do outro que não ta bugado, e vuala.

Math Math  • 16.02.13 19:20

Noticias ... Empty Re: Noticias ... 16.02.13 19:20

LøTøS escreveu:Isso é erro no css, eu não lembro bem onde fica o css da articles
mas faz o seguinte: baixe uma CMS que não tem esse bug, e vá em
htdocs/web-gallery/v2/styles e procura algo com news/noticias/articles.css
substitua o da sua cms com a do outro que não ta bugado, e vuala.

Acho que o Poblema não é ai.. pois testei 3 CMS's e São Todos iguais no news.css

WictorP WictorP  • 16.02.13 19:51

Noticias ... Empty Re: Noticias ... 16.02.13 19:51

Olá,

Vá no diretório passado pelo LoToS, e coloque isto no news.css

Código:
#news-habblet-container {
    width: 397px;
    margin: 0;
}

#news-habblet-container .title {
    height: 90px;
    background:url(../images/news/news_top.png) no-repeat;

}

#news-habblet-container .title div {
    position: relative;
    width: 250px;
    top: 48px;
    left: 78px;
    text-align: center;
    font-weight: bold;
}

#news-habblet-container .title .habblet-close {
   position: relative;
   top: 24px;
   left: 365px;
   cursor: pointer;
   width: 15px;
   height: 15px;
   background: url(../images/news/close_0.png) no-repeat;
}

#news-habblet-container .title .habblet-close:hover {
    background: url(../images/news/close_1.png) no-repeat;
}

#news-habblet-container #news-ad {
    padding: 10px 0 10px 42px;
}

#news-habblet-container .content-container {
    background: url(../images/news/news_mid.png) repeat-y;
}

#news-habblet-container #news-articles {
    width: 383px;
    max-height: 410px;
   font-family: Verdana,Arial,Helvetica,sans-serif;
   font-size: 11px;
    padding-left: 12px;
    overflow: auto;
}

#news-habblet-container .news-footer {
    height: 7px;
    width: 397px;
    background:url(../images/news/news_btm.png) no-repeat;
}

#news-habblet-container #news-articles .newsitem-date {
   color: #888;
   font-size: 10px;
   margin-top: 2px;
}

#news-articles .news-title {
    font-size: 14px;
    font-weight: bold;
}

#news-articles p {
    padding-top: 5px;
}

#news-ad .ad-message {
    text-align: left;
    font-size: 9px;
    font-style: italic;
    font-weight: bold;
    padding-top: 8px;
}

#news-articles ul.articlelist li {
    padding: 8px 20px;
}

#news-articles ul.articlelist li.even {
    background-color: #ecece6;
}

Feito isso vá em articles.php
e coloque o código à baixo.

Código:
<?php



require_once('./data_classes/server-data.php_data_classes-core.php.php');

require_once('./data_classes/server-data.php_data_classes-session.php.php');



$body_id = "news";

$pageid = "11";



$news_id = FilterText($_GET['web-articles-id']);

$main_sql = mysql_query("SELECT * FROM cms_news WHERE id = '".$news_id."'") or die(mysql_error());

$article_exists = mysql_num_rows($main_sql);



if($article_exists == "1"){

   $news = mysql_fetch_assoc($main_sql);

   $pagename = "Noticias - ".HoloText($news['title'])."";

} else {

   $main_sql = mysql_query("SELECT * FROM cms_news ORDER BY ID DESC") or die(mysql_error());

   $news = mysql_fetch_assoc($main_sql);

   $news_id = $news['id'];

   $pagename = "Noticias - ".HoloText($news['title'])."";

}





require_once('./templates/community_subheader.php');

require_once('./templates/community_header.php');



?>
<script type='text/javascript'>
// C.2004 by CodeLifter.com
var nW,nH,oH,oW;
function zoomToggle(iWideSmall,iHighSmall,iWideLarge,iHighLarge,whichImage){
oW=whichImage.style.width;oH=whichImage.style.height;
if((oW==iWideLarge)||(oH==iHighLarge)){
nW=iWideSmall;nH=iHighSmall;}else{
nW=iWideLarge;nH=iHighLarge;}
whichImage.style.width=nW;whichImage.style.height=nH;
}
</script>



<div id="container">

<div id="content">

<div id="column1" class="column">

<div class="habblet-container ">

<div class="cbb clearfix orange">

   <h2 class="title">Notícias</h2>

    <div id="article-archive">



<?php

   $sql = mysql_query("SELECT * FROM cms_news ORDER BY id DESC");

   if(mysql_num_rows($sql) > 0){

?>

<h2>Últimas Notícias</h2>

<ul>



<?php while($row = mysql_fetch_assoc($sql)){ ?>



   <li><?php if($news_id !== $row['id']){ echo"<a href=\"".$path."/articles/".$row['id']."\">"; } ?>

   <?php echo $row['title']; ?></a> »

   <?php if($news_id !== $row['id']){ echo"</a>"; } ?></li>

   

<?php } ?>



</ul>



<?php } ?>



<h2>Mais notícias?</h2>

<ul>

   <li>

   <a href="<?php echo $path; ?>/articles" class="article">Mais notícias</a> »

   </li>

</ul>

</div>



</div>

</div>

<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>

</div>



<div id="column2" class="column">

<div class="habblet-container ">

<div class="cbb clearfix notitle ">



<div id="article-wrapper">

   <h2><?php echo HoloText($news['title']); ?></h2>

   <div class="article-meta">Publicado em <?php echo date('d-m-Y', $news['published']); ?>

   <a href="news.php?category=<?php echo $news['category']; ?>"><?php echo $news['category']; ?></a></div>

   <p class="summary"><?php echo (HoloText($news['longstory'])); ?></p>

   <div class="article-body">

   <p><?php echo (HoloText($news['shortstory'], true)); ?></p>

  <div class="article-body"><img src="../web-gallery/album1/users_online.PNG"> <b><?php echo $news['author']; ?></b><br><br></div>  <iframe src="http://www.facebook.com/plugins/like.php?href=www.facebook.com/KashHotel&layout=standard& show_faces=false&width=380&action=like&colorscheme=light&height=25&locale=pt_BR" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:25px;" allowTransparency="true"></iframe> <br>

         <div class="article-body">



</div></div></div>

<div>    <a href="https://twitter.com/KashHotel" class="twitter-follow-button" data-show-count="false" data-lang="es" data-size="large">Seguir o Plane Hotel</a>
  <br>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>

</div>  </div>





<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>



<?php

if(isset($_POST['post_comment'])):

   $error = array();



   $comentario = strip_tags ($_POST['comment']);



   if(empty($comentario))

      $error[] = "<font color='#ff0000'>É necessário escrever seu comentário antes de envia-lo.</font>";

   if(empty($error)):

      $sucess = "<font color='#009900'>Seu comentário foi enviado, obrigado.</font>";

      mysql_query("INSERT INTO `cms_comments`(`story`, `comment`, `date`, `author`) VALUES ('".$news_id."', '".$comentario."', '".time()."', '".$my_id."')");

   endif;

   foreach($error as $errors)

      $errorz = $errors;

endif;

   $comment_id = $_POST['comment_id'];

   $borrar = $_POST['eliminar'];



if($borrar == 1){

mysql_query("DELETE FROM cms_comments WHERE id = '$comment_id'");

 }



?>

<?php

$commentid = mysql_fetch_array(mysql_query("SELECT * FROM `cms_comments` ORDER BY id DESC LIMIT 1"));

$mas = 1;

$comid = $commentid['id']+$mas;

?>

  <div class="habblet-container ">    <div class="cbb clearfix notitle ">      <div id="article-wrapper">

    <h2>Escreva um comentário</h2>       

    <div class="article-meta">      <div class="article-body">          <form action="/articles/<?php echo $news_id; ?>?articleid=<?php echo $news_id; ?>&commentid=<?php echo $comid; ?><?php echo $row12['id']; ?>&userid=<?php echo $my_id; ?>" method="post">          <textarea name="comment" maxlength="500"></textarea><br /><br />          <input type="submit" name="post_comment" value="Enviar" />          </form>      </div>      </div>    </div>  </div><style type="text/css"> input[type="text"], input[type="password"] {  background-color: #F1F1F1;  border: 1px solid #999999;  width: 175px;  padding: 5px;  font-family: verdana;  font-size: 10px;  color: #666666; } input[type="submit"] {  background-color: #F1F1F1;  border: 1px solid #999999;  padding: 5px;  font-family: verdana;  font-size: 10px;  color: #666666; } textarea {  background-color: #F1F1F1;  border: 1px solid #999999;  padding: 5px;  width: 517px;  height: 70px;  font-family: verdana;  font-size: 10px;  color: #666666; } select {  background-color: #F1F1F1;  border: 1px solid #999999;  padding: 5px;  font-family: verdana;  font-size: 10px;  color: #666666; } </style>



<?php

   $sql1 = mysql_query("SELECT * FROM cms_comments WHERE story = '".$news_id."'");

   $total = mysql_num_rows($sql1);

?>

 <div class="habblet-container ">    <div class="cbb clearfix notitle ">      <div id="article-wrapper"><h2>Comentarios (<?php echo $total; ?>)</h2>        <div class="article-meta"></div>        <div class="article-body">



<?php

   $sql1 = mysql_query("SELECT * FROM cms_comments WHERE story = '".$news_id."' ORDER BY id ASC");

   if(mysql_num_rows($sql1) > 0){

?>



<?php while($row1 = mysql_fetch_assoc($sql1)){



$userdata = mysql_fetch_assoc($userdata = mysql_query("SELECT * FROM users WHERE id = '".$row1['author']."'"));

?>





        <table width="528px">                    <tr>                      <td width="90px" valign="top">                        <div style="float:left"><img src="http://www.habbo.com.br/habbo-imaging/avatarimage?figure=<?php echo $userdata['look']; ?>&size=b&direction=2&head_direction=3&gesture=sml&size=m"></div>                                          </td>                      <td width="427px" valign="top">                        <strong>RE: <?php echo $news['title']; ?></strong><br /><br /><?php echo $row1['comment']; ?>                    </td>                    </tr>            <tr>                      <td width="90px" valign="top">                      </td>              <td width="427px" align="right">                <i><form method="post" action=""><?php if($user_rank > 5 && $logged_in == true){ ?><input type="hidden" name="comment_id" value="<?php echo $row1['id'] ?>">  Excluir comentário: <input type="radio" name="eliminar" value="0" checked>
        Não |
                  <input type="radio" name="eliminar" value="1" onchange="this.form.submit()"> Sim, Excluir. <?php } ?></form>
        Por: <strong><a href="/home/<?php echo $userdata['username']; ?>"><?php echo $userdata['username']; ?></a></strong>

              Enviado em <?php echo date('M j, Y g:i A', $row1['date']); ?></i><br /><br />              </td>            </tr>

<?php } } ?>

 </table>        </div>      </div>    </div>



</div>

</div>



</div>

</div>

<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>



</div>



<div id="column3" class="column">

</div>



<?php require_once('./templates/community_footer.php'); ?>

avatar ~ мσя∂σмσ  • 16.02.13 20:41

Noticias ... Empty Re: Noticias ... 16.02.13 20:41

Limpe Seu Historico...Cokkies...Canche e dê f5

Math Math  • 16.02.13 21:07

Noticias ... Empty Re: Noticias ... 16.02.13 21:07

WictorP. escreveu:Olá,

Vá no diretório passado pelo LoToS, e coloque isto no news.css

Código:
#news-habblet-container {
    width: 397px;
    margin: 0;
}

#news-habblet-container .title {
    height: 90px;
    background:url(../images/news/news_top.png) no-repeat;

}

#news-habblet-container .title div {
    position: relative;
    width: 250px;
    top: 48px;
    left: 78px;
    text-align: center;
    font-weight: bold;
}

#news-habblet-container .title .habblet-close {
   position: relative;
   top: 24px;
   left: 365px;
   cursor: pointer;
   width: 15px;
   height: 15px;
   background: url(../images/news/close_0.png) no-repeat;
}

#news-habblet-container .title .habblet-close:hover {
    background: url(../images/news/close_1.png) no-repeat;
}

#news-habblet-container #news-ad {
    padding: 10px 0 10px 42px;
}

#news-habblet-container .content-container {
    background: url(../images/news/news_mid.png) repeat-y;
}

#news-habblet-container #news-articles {
    width: 383px;
    max-height: 410px;
   font-family: Verdana,Arial,Helvetica,sans-serif;
   font-size: 11px;
    padding-left: 12px;
    overflow: auto;
}

#news-habblet-container .news-footer {
    height: 7px;
    width: 397px;
    background:url(../images/news/news_btm.png) no-repeat;
}

#news-habblet-container #news-articles .newsitem-date {
   color: #888;
   font-size: 10px;
   margin-top: 2px;
}

#news-articles .news-title {
    font-size: 14px;
    font-weight: bold;
}

#news-articles p {
    padding-top: 5px;
}

#news-ad .ad-message {
    text-align: left;
    font-size: 9px;
    font-style: italic;
    font-weight: bold;
    padding-top: 8px;
}

#news-articles ul.articlelist li {
    padding: 8px 20px;
}

#news-articles ul.articlelist li.even {
    background-color: #ecece6;
}

Feito isso vá em articles.php
e coloque o código à baixo.

Código:
<?php



require_once('./data_classes/server-data.php_data_classes-core.php.php');

require_once('./data_classes/server-data.php_data_classes-session.php.php');



$body_id = "news";

$pageid = "11";



$news_id = FilterText($_GET['web-articles-id']);

$main_sql = mysql_query("SELECT * FROM cms_news WHERE id = '".$news_id."'") or die(mysql_error());

$article_exists = mysql_num_rows($main_sql);



if($article_exists == "1"){

   $news = mysql_fetch_assoc($main_sql);

   $pagename = "Noticias - ".HoloText($news['title'])."";

} else {

   $main_sql = mysql_query("SELECT * FROM cms_news ORDER BY ID DESC") or die(mysql_error());

   $news = mysql_fetch_assoc($main_sql);

   $news_id = $news['id'];

   $pagename = "Noticias - ".HoloText($news['title'])."";

}





require_once('./templates/community_subheader.php');

require_once('./templates/community_header.php');



?>
<script type='text/javascript'>
// C.2004 by CodeLifter.com
var nW,nH,oH,oW;
function zoomToggle(iWideSmall,iHighSmall,iWideLarge,iHighLarge,whichImage){
oW=whichImage.style.width;oH=whichImage.style.height;
if((oW==iWideLarge)||(oH==iHighLarge)){
nW=iWideSmall;nH=iHighSmall;}else{
nW=iWideLarge;nH=iHighLarge;}
whichImage.style.width=nW;whichImage.style.height=nH;
}
</script>



<div id="container">

<div id="content">

<div id="column1" class="column">

<div class="habblet-container ">

<div class="cbb clearfix orange">

   <h2 class="title">Notícias</h2>

    <div id="article-archive">



<?php

   $sql = mysql_query("SELECT * FROM cms_news ORDER BY id DESC");

   if(mysql_num_rows($sql) > 0){

?>

<h2>Últimas Notícias</h2>

<ul>



<?php while($row = mysql_fetch_assoc($sql)){ ?>



   <li><?php if($news_id !== $row['id']){ echo"<a href=\"".$path."/articles/".$row['id']."\">"; } ?>

   <?php echo $row['title']; ?></a> »

   <?php if($news_id !== $row['id']){ echo"</a>"; } ?></li>

   

<?php } ?>



</ul>



<?php } ?>



<h2>Mais notícias?</h2>

<ul>

   <li>

   <a href="<?php echo $path; ?>/articles" class="article">Mais notícias</a> »

   </li>

</ul>

</div>



</div>

</div>

<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>

</div>



<div id="column2" class="column">

<div class="habblet-container ">

<div class="cbb clearfix notitle ">



<div id="article-wrapper">

   <h2><?php echo HoloText($news['title']); ?></h2>

   <div class="article-meta">Publicado em <?php echo date('d-m-Y', $news['published']); ?>

   <a href="news.php?category=<?php echo $news['category']; ?>"><?php echo $news['category']; ?></a></div>

   <p class="summary"><?php echo (HoloText($news['longstory'])); ?></p>

   <div class="article-body">

   <p><?php echo (HoloText($news['shortstory'], true)); ?></p>

  <div class="article-body"><img src="../web-gallery/album1/users_online.PNG"> <b><?php echo $news['author']; ?></b><br><br></div>  <iframe src="http://www.facebook.com/plugins/like.php?href=www.facebook.com/KashHotel&layout=standard& show_faces=false&width=380&action=like&colorscheme=light&height=25&locale=pt_BR" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:25px;" allowTransparency="true"></iframe> <br>

         <div class="article-body">



</div></div></div>

<div>    <a href="https://twitter.com/KashHotel" class="twitter-follow-button" data-show-count="false" data-lang="es" data-size="large">Seguir o Plane Hotel</a>
  <br>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>

</div>  </div>





<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>



<?php

if(isset($_POST['post_comment'])):

   $error = array();



   $comentario = strip_tags ($_POST['comment']);



   if(empty($comentario))

      $error[] = "<font color='#ff0000'>É necessário escrever seu comentário antes de envia-lo.</font>";

   if(empty($error)):

      $sucess = "<font color='#009900'>Seu comentário foi enviado, obrigado.</font>";

      mysql_query("INSERT INTO `cms_comments`(`story`, `comment`, `date`, `author`) VALUES ('".$news_id."', '".$comentario."', '".time()."', '".$my_id."')");

   endif;

   foreach($error as $errors)

      $errorz = $errors;

endif;

   $comment_id = $_POST['comment_id'];

   $borrar = $_POST['eliminar'];



if($borrar == 1){

mysql_query("DELETE FROM cms_comments WHERE id = '$comment_id'");

 }



?>

<?php

$commentid = mysql_fetch_array(mysql_query("SELECT * FROM `cms_comments` ORDER BY id DESC LIMIT 1"));

$mas = 1;

$comid = $commentid['id']+$mas;

?>

  <div class="habblet-container ">    <div class="cbb clearfix notitle ">      <div id="article-wrapper">

    <h2>Escreva um comentário</h2>       

    <div class="article-meta">      <div class="article-body">          <form action="/articles/<?php echo $news_id; ?>?articleid=<?php echo $news_id; ?>&commentid=<?php echo $comid; ?><?php echo $row12['id']; ?>&userid=<?php echo $my_id; ?>" method="post">          <textarea name="comment" maxlength="500"></textarea><br /><br />          <input type="submit" name="post_comment" value="Enviar" />          </form>      </div>      </div>    </div>  </div><style type="text/css"> input[type="text"], input[type="password"] {  background-color: #F1F1F1;  border: 1px solid #999999;  width: 175px;  padding: 5px;  font-family: verdana;  font-size: 10px;  color: #666666; } input[type="submit"] {  background-color: #F1F1F1;  border: 1px solid #999999;  padding: 5px;  font-family: verdana;  font-size: 10px;  color: #666666; } textarea {  background-color: #F1F1F1;  border: 1px solid #999999;  padding: 5px;  width: 517px;  height: 70px;  font-family: verdana;  font-size: 10px;  color: #666666; } select {  background-color: #F1F1F1;  border: 1px solid #999999;  padding: 5px;  font-family: verdana;  font-size: 10px;  color: #666666; } </style>



<?php

   $sql1 = mysql_query("SELECT * FROM cms_comments WHERE story = '".$news_id."'");

   $total = mysql_num_rows($sql1);

?>

 <div class="habblet-container ">    <div class="cbb clearfix notitle ">      <div id="article-wrapper"><h2>Comentarios (<?php echo $total; ?>)</h2>        <div class="article-meta"></div>        <div class="article-body">



<?php

   $sql1 = mysql_query("SELECT * FROM cms_comments WHERE story = '".$news_id."' ORDER BY id ASC");

   if(mysql_num_rows($sql1) > 0){

?>



<?php while($row1 = mysql_fetch_assoc($sql1)){



$userdata = mysql_fetch_assoc($userdata = mysql_query("SELECT * FROM users WHERE id = '".$row1['author']."'"));

?>





        <table width="528px">                    <tr>                      <td width="90px" valign="top">                        <div style="float:left"><img src="http://www.habbo.com.br/habbo-imaging/avatarimage?figure=<?php echo $userdata['look']; ?>&size=b&direction=2&head_direction=3&gesture=sml&size=m"></div>                                          </td>                      <td width="427px" valign="top">                        <strong>RE: <?php echo $news['title']; ?></strong><br /><br /><?php echo $row1['comment']; ?>                    </td>                    </tr>            <tr>                      <td width="90px" valign="top">                      </td>              <td width="427px" align="right">                <i><form method="post" action=""><?php if($user_rank > 5 && $logged_in == true){ ?><input type="hidden" name="comment_id" value="<?php echo $row1['id'] ?>">  Excluir comentário: <input type="radio" name="eliminar" value="0" checked>
        Não |
                  <input type="radio" name="eliminar" value="1" onchange="this.form.submit()"> Sim, Excluir. <?php } ?></form>
        Por: <strong><a href="/home/<?php echo $userdata['username']; ?>"><?php echo $userdata['username']; ?></a></strong>

              Enviado em <?php echo date('M j, Y g:i A', $row1['date']); ?></i><br /><br />              </td>            </tr>

<?php } } ?>

 </table>        </div>      </div>    </div>



</div>

</div>



</div>

</div>

<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>



</div>



<div id="column3" class="column">

</div>



<?php require_once('./templates/community_footer.php'); ?>

Fiz isso , ainda esvaziei o cache , e continua assim , ta FICANDO sério =´(

WictorP WictorP  • 16.02.13 21:12

Noticias ... Empty Re: Noticias ... 16.02.13 21:12

Olá,

Faz assim, procure por
Código:
$body_id = "news";

E muda o "NEWS" por "ME".

Math Math  • 17.02.13 8:21

Noticias ... Empty Re: Noticias ... 17.02.13 8:21

WictorP. escreveu:Olá,

Faz assim, procure por
Código:
$body_id = "news";

E muda o "NEWS" por "ME".

Ja fiz isso , continua assim , acho que pode ser erro na cms_news na DB né?

Math Math  • 17.02.13 18:21

Noticias ... Empty Re: Noticias ... 17.02.13 18:21

Infração Pra mim Double Post

-----------------------------------

Alguem ajuda Aqui ? tópico ficando esquecido..

Hyouki Hyouki  • 18.02.13 10:22

Noticias ... Empty Re: Noticias ... 18.02.13 10:22

Olá,

veja se na sua " database " falta algum diretorio em questão com essa parte.

TrY! TrY!  • 18.02.13 15:36

Noticias ... Empty Moderação 18.02.13 15:36

Postagens repetidas
O usuário Math fez postagens repetidas!
Punição: Foi punido com uma nova infração!
Como evitar: Não faça postagens repetidas, dentro do intervalo de 24 horas de uma para outra.
Fique atento nas regras.

Markim Markim  • 22.02.13 1:29

Noticias ... Empty Re: Noticias ... 22.02.13 1:29

Olá Convidado,

Tópico fechado e movido para questões resolvidas.
O autor abandonou o tópico..

Até.

Conteúdo patrocinado  • 

Noticias ... Empty Re: Noticias ...

Permissões neste sub-fórum
Não podes responder a tópicos

BH Servers

Recomendamos a BH Servers com proteção DDOS gratuita em Cloud Server de alta performance. Entrega imediata.