• » 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:     printview


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

    register now
    login
    Author
    Message
    webSPELL newbie
    70 Posts
    25.04.2012, 13:51 email offline quote 

    PUSH!

    FIXED!
    webSPELL newbie
    70 Posts
    22.01.2012, 21:53 email offline quote 

    Envyus wrote:

    DeBeer wrote:

    Well its fixed but the problem is he dont count the new clan war....how can i fix that?


    Wiki,


    Can you plz stop?
    You make me crazy!!!!
    webSPELL newbie
    58 Posts
    22.01.2012, 21:39 email offline quote 

    DeBeer wrote:

    Well its fixed but the problem is he dont count the new clan war....how can i fix that?


    Thats strange have not seen that problem before.
    webSPELL newbie
    70 Posts
    22.01.2012, 20:49 email offline quote 

    Well its fixed but the problem is he dont count the new clan war....how can i fix that?
    webSPELL newbie
    70 Posts
    07.01.2012, 20:41 email offline quote 

    BlueaKaKev wrote:

    Replace this:

    Code:
    1.
    2.
    $ergebnis=safe_query("SELECT * FROM ".PREFIX."squads , ".PREFIX."clanwars
    WHERE `squadID` = `squad` ORDER BY date LIMIT 0,5".$maxresults);


    with:

    Code:
    1.
    2.
    $ergebnis=safe_query("SELECT * FROM ".PREFIX."squads , ".PREFIX."clanwars
    WHERE `squadID` = `squad` ORDER BY date LIMIT 0,".$maxresults);


    THANKS!
    One small thing zunge raus
    Moderator
    1708 Posts
    07.01.2012, 20:30 offline quote 

    Replace this:

    Code:
    1.
    2.
    $ergebnis=safe_query("SELECT * FROM ".PREFIX."squads , ".PREFIX."clanwars
    WHERE `squadID` = `squad` ORDER BY date LIMIT 0,5".$maxresults);


    with:

    Code:
    1.
    2.
    $ergebnis=safe_query("SELECT * FROM ".PREFIX."squads , ".PREFIX."clanwars
    WHERE `squadID` = `squad` ORDER BY date LIMIT 0,".$maxresults);
    webSPELL newbie
    70 Posts
    07.01.2012, 20:27 email offline quote 

    Hello everyone,

    THe max result doenst work!
    Who want help me to fix it?

    SC_RESULTS.PHP
    Code:
    1.
    2.
    3.
    4.
    5.
    6.
    7.
    8.
    9.
    10.
    11.
    12.
    13.
    14.
    15.
    16.
    17.
    18.
    19.
    20.
    21.
    22.
    23.
    24.
    25.
    26.
    27.
    28.
    29.
    30.
    31.
    32.
    33.
    34.
    35.
    36.
    37.
    38.
    39.
    40.
    41.
    42.
    43.
    44.
    45.
    46.
    47.
    48.
    49.
    50.
    51.
    52.
    53.
    54.
    55.
    56.
    57.
    58.
    59.
    60.
    61.
    62.
    63.
    <?php
    /*
    ##########################################################################
    #                                                                        #
    #           Version 4       /                        /   /               #
    #          -----------__---/__---__------__----__---/---/-               #
    #           | /| /  /___) /   ) (_ `   /   ) /___) /   /                 #
    #          _|/_|/__(___ _(___/_(__)___/___/_(___ _/___/___               #
    #                       Free Content / Management System                 #
    #                                   /                                    #
    #                                                                        #
    #                                                                        #
    #   Copyright 2005-2011 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                                                   #
    #                                                                        #
    ##########################################################################
    */

    $ergebnis=safe_query("SELECT * FROM ".PREFIX."squads , ".PREFIX."clanwars
    WHERE `squadID` = `squad` ORDER BY date LIMIT 0,5".$maxresults);
    if(mysql_num_rows($ergebnis)){
         echo'<table width="100%" cellspacing="0" cellpadding="2">';
         $n=1;
         while($ds=mysql_fetch_array($ergebnis)) {

              $date=date("d.m.Y", $ds['date']);
              $homescr=array_sum(unserialize($ds['homescore']));
              $oppscr=array_sum(unserialize($ds['oppscore']));
              $hometag=array_sum(unserialize($ds['name']));
              
              if($n%2) {
                   $bg1=BG_1;
                   $bg2=BG_2;
              }
              else {
                   $bg1=BG_3;
                   $bg2=BG_4;
              }

              if($homescr>$oppscr) $result='<font color="'.$wincolor.'">'.$homescr.':'.$oppscr.'</font>';
              elseif($homescr<$oppscr) $result='<font color="'.$loosecolor.'">'.$homescr.':'.$oppscr.'</font>';
              else $result='<font color="'.$drawcolor.'">'.$homescr.':'.$oppscr.'</font>';

              $resultID=$ds['cwID'];
              $gameicon="images/games/";
              if(file_exists($gameicon.$ds['game'].".gif")) $gameicon = $gameicon.$ds['game'].".gif";

              eval ("\$results = \"".gettemplate("results")."\";");
              echo $results;
              $n++;
         }
         echo'</table>';
    }
    ?>


    RESULTS.HTML
    Code:
    1.
    2.
    3.
    4.
    5.
    6.
    7.
    <li>
                             <div id="gtype"><img src="$gameicon" width="20px" height="20px" /></div>
                            <div id="vs">vs</div>
                            <div id="opp"><a href="index.php?site=clanwars_details&amp;cwID=$resultID">$ds[opptag]</a></div>
                            <div id="arrow"><img src="../images/Arrow.png" width="14px" height="14px" /></div>
                            <div id="result">$result</div>
                        </li>


    My setting: MAX 5

    Regards
    DeBeeR

    website: www.revengeofsoldiers.nl
    version: 4.2.3 SE
    Sort:     printview


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

    register now
    login
  • » Support

    » Topics
    19.05.2013 - 10:48 - 2 Replies
    » [S] Tester für neuen Foru...
    [S] Tester für neuen ForumMod
    Last post: Argu
    Board: DE - Anfragen
    19.05.2013 - 10:48
    19.05.2013 - 03:55 - 8 Replies
    » Mein Forum
    Mein Forum
    Last post: Lordy4007
    Board: DE - Fragen zur Seite
    19.05.2013 - 03:55
    18.05.2013 - 19:58 - 36 Replies
    » Exklusiv Webseite zur Mie...
    Exklusiv Webseite zur Miete
    Last post: liQweb
    Board: DE - Biete
    18.05.2013 - 19:58
    18.05.2013 - 16:29 - 2 Replies
    » forum anzeige erweitern
    forum anzeige erweitern
    Last post: Swordfish3000
    Board: DE - Allgemeiner Support
    18.05.2013 - 16:29
    18.05.2013 - 12:21 - 1 Replies
    » Query failed
    Query failed
    Last post: LoRd
    Board: DE - Allgemeiner Support
    18.05.2013 - 12:21
    18.05.2013 - 09:36 - 3 Replies
    » benötige hilfe bei paar k...
    benötige hilfe bei paar kleinigkeiten
    Last post: immostar
    Board: DE - Technischer Support
    18.05.2013 - 09:36
    18.05.2013 - 03:33 - 4 Replies
    » [SELL] Gaming Website
    [SELL] Gaming Website
    Last post: hornyst
    Board: EN - Offers
    18.05.2013 - 03:33
    18.05.2013 - 00:32 - 6 Replies
    » Hide BBCODE Echo
    Hide BBCODE Echo
    Last post: dado2106
    Board: EN - Technical support
    18.05.2013 - 00:32
    17.05.2013 - 21:42 - 0 Replies
    » website help
    website help
    Last post: envy0024
    Board: EN - Technical support
    17.05.2013 - 21:42
    17.05.2013 - 21:03 - 1 Replies
    » Need Coder!
    Need Coder!
    Last post: iG.ShAdOw
    Board: EN - Requests
    17.05.2013 - 21:03
    17.05.2013 - 20:44 - 9 Replies
    » Query failed!
    Query failed!
    Last post: LoRd
    Board: DE - Allgemeiner Support
    17.05.2013 - 20:44
    17.05.2013 - 18:08 - 0 Replies
    » [4 SALE] Layouts (Gaming,...
    [4 SALE] Layouts (Gaming, Portfolio and more)
    Last post: Freestyler92
    Board: EN - Offers
    17.05.2013 - 18:08
    17.05.2013 - 18:06 - 0 Replies
    » Design Ausverkauf - alles...
    Design Ausverkauf - alles unter 70€
    Last post: Freestyler92
    Board: DE - Biete
    17.05.2013 - 18:06
    17.05.2013 - 10:56 - 6 Replies
    » [Biete] Template Designs
    [Biete] Template Designs
    Last post: Marceld
    Board: DE - Biete
    17.05.2013 - 10:56
    17.05.2013 - 10:41 - 7 Replies
    » register captcha
    register captcha
    Last post: nappel.ger
    Board: DE - Allgemeiner Support
    17.05.2013 - 10:41
    17.05.2013 - 09:56 - 3 Replies
    » Suche Designer GGL:Geld
    Suche Designer GGL:Geld
    Last post: Freestyler92
    Board: DE - Suche
    17.05.2013 - 09:56
    17.05.2013 - 00:13 - 0 Replies
    » News
    News
    Last post: dado2106
    Board: EN - Modifications
    17.05.2013 - 00:13
    16.05.2013 - 15:04 - 2 Replies
    » [V] mehrere Webspell Temp...
    [V] mehrere Webspell Templates und Designs
    Last post: Dynamic-Webmedia
    Board: DE - Biete
    16.05.2013 - 15:04
    16.05.2013 - 13:09 - 2 Replies
    » Content laden
    Content laden
    Last post: Helgon
    Board: DE - Anfragen
    16.05.2013 - 13:09
    16.05.2013 - 13:07 - 18 Replies
    » [B] Web, Print und Logode...
    [B] Web, Print und Logodesign
    Last post: Helgon
    Board: DE - Suche
    16.05.2013 - 13:07
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers