• » webSPELL.org - Free Content Management System
  • Language switch: English German
  • login



    » lost password?   » register now
  • About webSPELL

    webSPELL is a free Content Management System which was especially developed for the needs of esport related communities. Since a short while we are also offering an optimized and enhanced webSPELL version for the special requirements of non-profit organisations. The purpose of both systems is to offer a professional and free opportunity to create and administrate your own website in an easy and optimized way.

    » Learn more about webSPELL     » Download webSPELL now!
  • Advertisement

    Follow us

  • Sort:      1 2  » printview


    To start or to reply to a topic you have to be registered and logged in!

    register now
    login
    Author
    Message
    webSPELL newbie
    11 Posts
    28.05.2012, 20:22 offline quote 

    I have exact the same problem ... how it have been fixed? How can I fix it?

    Habe genau das gleiche Problem, leider wurde nicht geschrieben wie es behoben wurde.

    Weis einer wie ich das lösen kann?

    Habe schon in der sql "videos" den Standart auf "2" gesetzt ... jetzt wird der Comment wenigstens dargestellt. Es kommt aber immer noch diese Fehler-Meldung zwischendurch. Was kann ich machen?

    www.mastersofdisasters.eu

    WS 4.2.3a
    webSPELL newbie
    90 Posts
    13.01.2011, 20:09 offline quote 

    Ty to my friend Steve he fix it for my TY STEVE LOVE YOU
    webSPELL newbie
    39 Posts
    13.01.2011, 17:40 email offline quote 

    EDITED
    webSPELL newbie
    90 Posts
    webSPELL friend
    674 Posts
    13.01.2011, 17:03 email offline quote 

    what movie addon are you using?

    www.kode-designs.com
    How much wood would a woodchuck chuck if a woodchuck could chuck wood?
    webSPELL newbie
    90 Posts
    13.01.2011, 16:08 offline quote 

    oke
    done now says

    Code:
    1.
    2.
    3.
    4.
    Query failed: 
    errorno=1064
    error=You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM ws_Umf_ WHERE ='4'' at line 1
    query=SELECT FROM ws_Umf_ WHERE ='4'


    http://q7-gaming.eu/comments.php
    webSPELL user
    101 Posts
    13.01.2011, 15:42 email offline quote 

    Hello,

    I believe you need to replace

    Code:
    1.
    $moduls['mo'] = array("videos","vidID","comments");


    With:

    Code:
    1.
    $moduls['vi'] = array("videos","vidID","comments");


    ? Try it. amüsiert

    veni viddi....BANG.
    webSPELL newbie
    90 Posts
    13.01.2011, 11:23 offline quote 

    www.q7-gaming.eu

    http://q7-gaming.eu/in...mp;action=detail&id=3

    <?php
    /*
    ##########################################################################
    # #
    # Version 4 / / / #
    # -----------__---/__---__------__----__---/---/- #
    # | /| / /___) / ) (_ ` / ) /___) / / #
    # _|/_|/__(___ _(___/_(__)___/___/_(___ _/___/___ #
    # Free Content / Management System #
    # / #
    # #
    # #
    # Copyright 2005-2009 by webspell.org #
    # #
    # visit webSPELL.org, webspell.info to get webSPELL for free #
    # - Script runs under the GNU GENERAL PUBLIC LICENSE #
    # - It's NOT allowed to remove this copyright-tag #
    # -- http://www.fsf.org/licensing/licenses/gpl.html #
    # #
    # Code based on WebSPELL Clanpackage (Michael Gruber - webspell.at), #
    # Far Development by Development Team - webspell.org #
    # #
    # visit webspell.org #
    # #
    ##########################################################################
    */
    $bg1 = BG_1;
    function checkCommentsAllow($type, $parentID){
    global $userID;
    $moduls = array();
    $moduls['ne'] = array("news","newsID","comments");
    $moduls['ar'] = array("articles","articlesID","comments");
    $moduls['ga'] = array("gallery_pictures","picID","comments");
    $moduls['cw'] = array("clanwars","cwID","comments");
    $moduls['de'] = array("demos","demoID","comments");
    $moduls['po'] = array("poll","pollID","comments");
    $moduls['mo'] = array("videos","vidID","comments");
    $allowed = 0;
    $modul = $moduls[$type];
    $get = safe_query("SELECT ".$modul[2]." FROM ".PREFIX.$modul[0]." WHERE ".$modul[1]."='".$parentID."'");
    if(mysql_num_rows($get)){
    $data = mysql_fetch_assoc($get);
    switch($data[$modul[2]]){
    case 0: $allowed = 0; break;
    case 1: if($userID) $allowed = 1; break;
    case 2: $allowed = 1; break;
    default: $allowed=0;
    }
    }
    return $allowed;
    }
    if(isset($_POST['savevisitorcomment'])) {
    include("_mysql.php");
    include("_settings.php");
    include("_functions.php");

    $name = $_POST['name'];
    $mail = $_POST['mail'];
    $url = $_POST['url'];
    $parentID = (int)$_POST['parentID'];
    $type = $_POST['type'];
    $message = $_POST['message'];
    $ip = $_SERVER['REMOTE_ADDR'];
    $CAPCLASS = new Captcha;

    setcookie("visitor_info", $name."--||--".$mail."--||--".$url, time()+(3600*24*365));
    $query = safe_query("SELECT nickname, username FROM ".PREFIX."user ORDER BY nickname");
    while($ds=mysql_fetch_array($query)) {
    $nicks[] = $ds['nickname'];
    $nicks[] = $ds['username'];
    }
    $_SESSION['comments_message'] = $message;

    if(in_array(trim($name), $nicks)) header("Location: ".$_POST['referer']."&error=nickname#addcomment");
    elseif(!($CAPCLASS->check_captcha($_POST['captcha'], $_POST['captcha_hash']))) header("Location: ".$_POST['referer']."&error=captcha#addcomment");
    elseif(checkCommentsAllow($type,$parentID) == false ) header("Location: ".$_POST['referer']);
    else {
    $date=time();
    safe_query("INSERT INTO ".PREFIX."comments ( parentID, type, nickname, date, comment, url, email, ip )
    values( '".$parentID."', '".$type."', '".$name."', '".$date."', '".$message."', '".$url."', '".$mail."', '".$ip."' ) ");
    unset($_SESSION['comments_message']);
    header("Location: ".$_POST['referer']);
    }
    }
    elseif(isset($_POST['saveusercomment'])) {
    include("_mysql.php");
    include("_settings.php");
    include("_functions.php");
    $_language->read_module('comments');
    if(!$userID) die($_language->module['access_denied']);

    $parentID = $_POST['parentID'];
    $type = $_POST['type'];
    $message = $_POST['message'];
    if(checkCommentsAllow($type,$parentID)){
    $date=time();
    safe_query("INSERT INTO ".PREFIX."comments ( parentID, type, userID, date, comment ) values( '".$parentID."', '".$type."', '".$userID."', '".$date."', '".$message."' ) ");
    }
    header("Location: ".$_POST['referer']);
    }
    elseif(isset($_GET['delete'])) {
    include("_mysql.php");
    include("_settings.php");
    include("_functions.php");
    $_language->read_module('comments');
    if(!isanyadmin($userID)) die($_language->module['access_denied']);
    foreach($_POST['commentID'] as $id) {
    safe_query("DELETE FROM ".PREFIX."comments WHERE commentID='".$id."'");
    }
    header("Location: ".$_POST['referer']);
    }
    elseif(isset($_GET['editcomment'])) {
    $id=$_GET['id'];
    $referer=$_GET['ref'];
    $_language->read_module('comments');
    $_language->read_module('bbcode', true);
    if(isfeedbackadmin($userID) or iscommentposter($userID,$id)) {
    if(!empty($id)) {
    $dt = safe_query("SELECT * FROM ".PREFIX."comments WHERE commentID='".$id."'");
    if(mysql_num_rows($dt)) {
    $ds = mysql_fetch_array($dt);
    $poster='<a href="index.php?site=profile&amp;id='.$ds['userID'].'"><b>'.getnickname($ds['userID']).'</b></a>';
    $message=getinput($ds['comment']);
    $message=preg_replace("#\n\[br\]\[br\]\
    \*\*(.+)#si", '', $message);
    $message=preg_replace("#\n\[br\]\[br\]\*\*(.+)#si", '', $message);

    eval ("\$addbbcode = \"".gettemplate("addbbcode")."\";");

    eval("\$comments_edit = \"".gettemplate("comments_edit")."\";");
    echo $comments_edit;
    }
    else {
    redirect($referer, $_language->module['no_database_entry'], 2);
    }
    }
    else {
    redirect($referer, $_language->module['no_commentid'], 2);
    }
    }
    else {
    redirect($referer, $_language->module['access_denied'], 2);
    }
    }
    elseif(isset($_POST['saveeditcomment'])) {
    include("_mysql.php");
    include("_settings.php");
    include("_functions.php");

    if(!isfeedbackadmin($userID) and !iscommentposter($userID,$_POST['commentID'])) die('No access');

    $message=$_POST['message'];
    $author=$_POST['authorID'];
    $referer=urldecode($_POST['referer']);

    // check if any admin edited the post
    if(safe_query("UPDATE ".PREFIX."comments SET comment='".$message."' WHERE commentID='".$_POST['commentID']."'")) {
    header("Location: ".$referer);
    }
    }
    else {

    $_language->read_module('comments');
    $_language->read_module('bbcode', true);

    if(isset($_GET['commentspage'])) $commentspage = (int)$_GET['commentspage'];
    else $commentspage = 1;
    if(isset($_GET['sorttype']) AND strtoupper($_GET['sorttype']=="ASC")) $sorttype = 'ASC';
    else $sorttype='DESC';

    if(!isset($parentID) AND isset($_GET['parentID'])) $parentID = (int)$_GET['parentID'];
    if(!isset($type) AND isset($_GET['type'])) $type = mb_substr($_GET['type'], 0, 2);

    $alle=safe_query("SELECT commentID FROM ".PREFIX."comments WHERE parentID='$parentID' AND type='$type'");
    $gesamt=mysql_num_rows($alle);
    $commentspages=ceil($gesamt/$maxfeedback);

    if($commentspages>1) $page_link = makepagelink("$referer&amp;sorttype=$sorttype", $commentspage, $commentspages, 'comments');
    else $page_link='';

    if ($commentspage == "1") {
    $ergebnis = safe_query("SELECT * FROM ".PREFIX."comments WHERE parentID='$parentID' AND type='$type' ORDER BY date $sorttype LIMIT 0,$maxfeedback");
    if($sorttype=="DESC") $n=$gesamt;
    else $n=1;
    } else {
    $start=($commentspage-1)*$maxfeedback;
    $ergebnis = safe_query("SELECT * FROM ".PREFIX."comments WHERE parentID='$parentID' AND type='$type' ORDER BY date $sorttype LIMIT $start,$maxfeedback");
    if($sorttype=="DESC") $n = $gesamt-($commentspage-1)*$maxfeedback;
    else $n = ($commentspage-1)*$maxfeedback+1;
    }
    if($gesamt) {

    eval ("\$title_comments = \"".gettemplate("title_comments")."\";");
    echo $title_comments;

    if($sorttype=="ASC") {
    $sorter='<a href="'.$referer.'&amp;commentspage='.$commentspage.'&amp;sorttype=DESC">'.$_language->module['sort'].'</a> <img src="images/icons/asc.gif" width="9" height="7" border="0" alt="'.$_language->module['sort_desc'].'" />&nbsp;&nbsp;&nbsp;';
    } else {
    $sorter='<a href="'.$referer.'&amp;commentspage='.$commentspage.'&amp;sorttype=ASC">'.$_language->module['sort'].'</a> <img src="images/icons/desc.gif" width="9" height="7" border="0" alt="'.$_language->module['sort_asc'].'" />&nbsp;&nbsp;&nbsp;';
    }

    eval ("\$comments_head = \"".gettemplate("comments_head")."\";");
    echo $comments_head;

    while($ds=mysql_fetch_array($ergebnis)) {
    $n%2 ? $bg1=BG_1 : $bg1=BG_3;

    $date=date("d.m.Y - H:i", $ds['date']);

    if($ds['userID']) {
    $ip='';
    $poster='<a class="titlelink" href="index.php?site=profile&amp;id='.$ds['userID'].'"><b>'.strip_tags(getnickname($ds['userID'])).'</b></a>';
    if(isclanmember($ds['userID'])) $member=$_language->module['clanmember_icon'];
    else $member='';

    $quotemessage = addslashes(getinput($ds['comment']));
    $quotemessage = str_replace(array("\r\n","\r","\n"),array('\r\n','\r','\n'),$quotemessage);
    $quotenickname = addslashes(getinput(getnickname($ds['userID'])));
    $quote=str_replace(Array('%nickname%', '%message%'), Array($quotenickname, $quotemessage), $_language->module['quote_link']);

    $country=''.getcountry($ds['userID']).'';
    $country=flags($country);

    if ($email = getemail($ds['userID']) AND !getemailhide($ds['userID'])) $email = str_replace('%email%', mail_protect($email), $_language->module['email_link']);
    else $email='';
    $gethomepage = gethomepage($ds['userID']);
    if ($gethomepage != "" && $gethomepage != "http://" && $gethomepage != "http:///" && $gethomepage != "n/a") $hp = '<a href="http://'.$gethomepage.'" target="_blank"><img src="images/icons/hp.gif" border="0" width="14" height="14" alt="'.$_language->module['homepage'].'" /></a>';
    else $hp='';

    if(isonline($ds['userID'])=="offline") $statuspic='<img src="images/icons/offline.gif" width="7" height="7" alt="offline" />';
    else $statuspic='<img src="images/icons/online.gif" width="7" height="7" alt="online" />';

    $avatar='<img src="images/avatars/'.getavatar($ds['userID']).'" align="left" alt="Avatar" />';

    if($loggedin && $ds['userID'] != $userID) {
    $pm='<a href="index.php?site=messenger&amp;action=touser&amp;touser='.$ds['userID'].'"><img src="images/icons/pm.gif" border="0" width="12" height="13" alt="'.$_language->module['send_message'].'" /></a>';
    if(isignored($userID, $ds['userID'])) $buddy='<a href="buddys.php?action=readd&amp;id='.$ds['userID'].'&amp;userID='.$userID.'"><img src="images/icons/buddy_readd.gif" width="16" height="16" border="0" alt="'.$_language->module['readd_buddy'].'" /></a>';
    elseif(isbuddy($userID, $ds['userID'])) $buddy='<a href="buddys.php?action=ignore&amp;id='.$ds['userID'].'&amp;userID='.$userID.'"><img src="images/icons/buddy_ignore.gif" width="16" height="16" border="0" alt="'.$_language->module['ignore_user'].'" /></a>';
    elseif($userID==$ds['userID']) $buddy='';
    else $buddy='<a href="buddys.php?action=add&amp;id='.$ds['userID'].'&amp;userID='.$userID.'"><img src="images/icons/buddy_add.gif" width="16" height="16" border="0" alt="'.$_language->module['add_buddy'].'" /></a>';
    } else {
    $pm='';
    $buddy='';
    }
    }
    else {
    $member='';
    $avatar='<img src="images/avatars/noavatar.gif" align="left" alt="Avatar" />';
    $country='';
    $pm='';
    $buddy='';
    $statuspic='';
    $ds['nickname'] = strip_tags($ds['nickname']);
    $ds['nickname'] = htmlspecialchars($ds['nickname']);
    $poster = strip_tags($ds['nickname']);

    $ds['email'] = strip_tags($ds['email']);
    $ds['email'] = htmlspecialchars($ds['email']);
    if($ds['email']) $email = str_replace('%email%', mail_protect($ds['email']), $_language->module['email_link']);
    else $email='';

    $ds['url'] = strip_tags($ds['url']);
    $ds['url'] = htmlspecialchars($ds['url']);
    if(!stristr($ds['url'],'http://')) $ds['url'] = "http://".$ds['url'];
    if($ds['url']!="http://" && $ds['url']!="") $hp = '<a href="'.$ds['url'].'" target="_blank"><img src="images/icons/hp.gif" border="0" width="14" height="14" alt="'.$_language->module['homepage'].'" /></a>';
    else $hp='';
    $ip = 'IP: ';
    if(isfeedbackadmin($userID)) $ip.=$ds['ip'];
    else $ip.='saved';

    $quotemessage = addslashes(getinput($ds['comment']));
    $quotenickname = addslashes(getinput($ds['nickname']));
    $quote=str_replace(Array('%nickname%', '%message%'), Array($quotenickname, $quotemessage), $_language->module['quote_link']);
    }

    $content = cleartext($ds['comment']);
    $content = toggle($content, $ds['commentID']);

    if(isfeedbackadmin($userID) or iscommentposter($userID,$ds['commentID'])) {
    $edit = '<a href="index.php?site=comments&amp;editcomment=true&amp;id='.$ds['commentID'].'&amp;ref='.urlencode($referer).'" title="'.$_language->module['edit_comment'].'"><img src="images/icons/edit.gif" border="0" alt="'.$_language->module['edit_comment'].'" /></a>';
    } else $edit='';

    if(isfeedbackadmin($userID)) $actions='<input class="input" type="checkbox" name="commentID[]" value="'.$ds['commentID'].'" />';
    else $actions='';

    eval ("\$comments = \"".gettemplate("comments")."\";");
    echo $comments;

    unset($member);
    unset($quote);
    unset($country);
    unset($email);
    unset($hp);
    unset($avatar);
    unset($pm);
    unset($buddy);
    unset($ip);
    unset($edit);

    if(isfeedbackadmin($userID)) {
    $submit='<input type="hidden" name="referer" value="'.$referer.'" />
    <input class="input" type="checkbox" name="ALL" value="ALL" onclick="SelectAll(this.form);" /> '.$_language->module['select_all'].'
    <input type="submit" value="'.$_language->module['delete_selected'].'" />';
    } else $submit='';

    if($sorttype=="DESC") $n--;
    else $n++;
    }

    eval ("\$comments_foot = \"".gettemplate("comments_foot")."\";");
    echo $comments_foot;

    }

    if($comments_allowed) {
    if($loggedin) {

    eval ("\$addbbcode = \"".gettemplate("addbbcode")."\";");
    eval ("\$comments_add_user = \"".gettemplate("comments_add_user")."\";");
    echo $comments_add_user;
    }
    elseif($comments_allowed == 2) {

    $ip = getenv('REMOTE_ADDR');

    if (isset($_COOKIE['visitor_info'])) {
    $visitor = explode("--||--", $_COOKIE['visitor_info']);
    $name = getforminput(stripslashes($visitor[0]));
    $mail = getforminput(stripslashes($visitor[1]));
    $url = getforminput(stripslashes($visitor[2]));
    }
    else{
    $url = "http://";
    $name = "";
    $mail = "";
    }

    if(isset($_GET['error'])) $err = $_GET['error'];
    else $err = "";
    if($err=="nickname"){
    $error = $_language->module['error_nickname'];
    $name = "";
    }
    elseif($err=="captcha") $error = $_language->module['error_captcha'];
    else $error = '';

    if(isset($_SESSION['comments_message'])){
    $message = getforminput($_SESSION['comments_message']);
    unset($_SESSION['comments_message']);
    }
    else{
    $message = "";
    }

    $CAPCLASS = new Captcha;
    $captcha = $CAPCLASS->create_captcha();
    $hash = $CAPCLASS->get_hash();
    $CAPCLASS->clear_oldcaptcha();

    eval ("\$addbbcode = \"".gettemplate("addbbcode")."\";");
    eval ("\$comments_add_visitor = \"".gettemplate("comments_add_visitor")."\";");
    echo $comments_add_visitor;
    }
    else echo $_language->module['no_access'];
    }
    else echo $_language->module['comments_disabled'];
    }

    ?>
    webSPELL newbie
    72 Posts
    13.01.2011, 10:13 email offline quote 

    I can`t toggle you comments.php
    Please post it on a nopaste website. (eg.: nopaste.info)

    gez. Steve Mitchell
    webSPELL newbie
    90 Posts
    13.01.2011, 10:01 offline quote 

    Code:
    1.
    2.
    3.
    4.
    Query failed: 
    errorno=1064
    error=You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
    query=SELECT * FROM ws_Umf_videos_portals WHERE id=



    SITE:http://q7-gaming.eu/in...mp;action=detail&id=1 :pss dont cry for COPYRIGHT is coming zwinkern

    read more comments.php

    Sort:      1 2  » printview


    To start or to reply to a topic you have to be registered and logged in!

    register now
    login
  • » Support

    » Topics
    19.06.2013 - 02:59 - 10 Replies
    » [SELL] Gaming Website - E...
    [SELL] Gaming Website - EXCLUSIVE WEBSITE
    Last post: hornyst
    Board: EN - Offers
    19.06.2013 - 02:59
    18.06.2013 - 23:10 - 1 Replies
    » [S] Aufträge Web- und Pri...
    [S] Aufträge Web- und Printdesign
    Last post: neiD-
    Board: DE - Suche
    18.06.2013 - 23:10
    18.06.2013 - 12:30 - 9 Replies
    » Querry Failed Error no 10...
    Querry Failed Error no 1054
    Last post: LoRd
    Board: EN - Technical support
    18.06.2013 - 12:30
    18.06.2013 - 09:43 - 13 Replies
    » webSPELL Bootstrap (respo...
    webSPELL Bootstrap (responsible)
    Last post: sKy-e.belst
    Board: EN - General
    18.06.2013 - 09:43
    18.06.2013 - 01:11 - 1 Replies
    » how can i transform back ...
    how can i transform back to old my website ?
    Last post: Schalla
    Board: EN - Technical support
    18.06.2013 - 01:11
    17.06.2013 - 20:50 - 3 Replies
    » Suche Coder !
    Suche Coder !
    Last post: naki
    Board: DE - Suche
    17.06.2013 - 20:50
    17.06.2013 - 12:48 - 0 Replies
    » [4SALE] Custom team websi...
    [4SALE] Custom team website
    Last post: element-
    Board: EN - Offers
    17.06.2013 - 12:48
    16.06.2013 - 21:21 - 3 Replies
    » update webspell problem
    update webspell problem
    Last post: RUSSHEL
    Board: EN - General support
    16.06.2013 - 21:21
    16.06.2013 - 20:42 - 0 Replies
    » "Make sure you have cooki...
    "Make sure you have cookies enabled" During Login
    Last post: Sasquatch
    Board: EN - General support
    16.06.2013 - 20:42
    16.06.2013 - 16:22 - 8 Replies
    » Farbe von "Dein Profil wu...
    Farbe von "Dein Profil wurde aktualisiert. Du wirst weitergeleitet" ändern!
    Last post: Cali-go
    Board: DE - Allgemeiner Support
    16.06.2013 - 16:22
    16.06.2013 - 16:19 - 2 Replies
    » Sehr erfahrener Programmi...
    Sehr erfahrener Programmierer gesucht (Community,Clanpage)
    Last post: StufF
    Board: DE - Suche
    16.06.2013 - 16:19
    15.06.2013 - 22:39 - 0 Replies
    » portfolio/agency for sale
    portfolio/agency for sale
    Last post: Thoomii
    Board: DE - Biete
    15.06.2013 - 22:39
    15.06.2013 - 16:39 - 2 Replies
    » [4SALE] eSport Design/Tem...
    [4SALE] eSport Design/Template
    Last post: LeG3nDz
    Board: EN - Offers
    15.06.2013 - 16:39
    15.06.2013 - 10:35 - 12 Replies
    » externe Festplatte spinnt
    externe Festplatte spinnt
    Last post: plenergy
    Board: DE - Internet
    15.06.2013 - 10:35
    14.06.2013 - 20:53 - 11 Replies
    » Webspell ver 1070 EN
    Webspell ver 1070 EN
    Last post: TyRRRax
    Board: EN - General support
    14.06.2013 - 20:53
    14.06.2013 - 19:03 - 4 Replies
    » Kostenlose Clanmappen!
    Kostenlose Clanmappen!
    Last post: unikat
    Board: DE - Biete
    14.06.2013 - 19:03
    14.06.2013 - 15:22 - 6 Replies
    » Userpic & Avatar
    Userpic & Avatar
    Last post: Tuxx
    Board: DE - Technischer Support
    14.06.2013 - 15:22
    14.06.2013 - 14:31 - 5 Replies
    » [B] Meine Dienste als Des...
    [B] Meine Dienste als Designer
    Last post: Kenny2601
    Board: DE - Biete
    14.06.2013 - 14:31
    14.06.2013 - 00:52 - 3 Replies
    » News Fail can´t publish
    News Fail can´t publish
    Last post: bazic
    Board: DE - Allgemeiner Support
    14.06.2013 - 00:52
    13.06.2013 - 13:59 - 2 Replies
    » [V] Design + Anpassung
    [V] Design + Anpassung
    Last post: e9li
    Board: DE - Biete
    13.06.2013 - 13:59
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers