• » 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
    Author
    Message
    webSPELL newbie
    69 Posts
    04.05.2012, 00:55 email offline quote 

    ah, nach dem Wort coockie zu suche ist mir nicht eingefallen.
    Hatte es mit Login versucht, wen ich es mit UTF-8 + BOM speichere Funktioniert alles wunderbar.
    Bei nur UTF-8 kommt der fehler.
    webSPELL lover
    1022 Posts
    03.05.2012, 22:37 offline quote 

    Und was sagt die SuFu?

    http://www.henningk.de | no support for addons etc. via PN or IM.
    webSPELL newbie
    69 Posts
    03.05.2012, 21:11 email offline quote 

    Huhu, seid heute kommt bei mir folgender fehler, wen sich ein User einloggen möchte.

    "Bitte versichere dich, dass dein Browser Cookies akzeptiert.
    Falls das Problem weiterhin besteht, wende dich an den Webmaster.


    Hier meine Login.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.
    <?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                                                   #
    #                                                                        #
    ##########################################################################
    */

    $_language->read_module('login');

    if($loggedin) {
         $username='<a href="index.php?site=profile&amp;id='.$userID.'"><b>'.strip_tags(getnickname($userID)).'</b></a>';
         if(isanyadmin($userID)) $admin='&#8226; <a href="admin/admincenter.php" target="_blank">'.$_language->module['admin'].'</a><br />';
         else $admin='';
         if(isclanmember($userID) or iscashadmin($userID)) $cashbox='&#8226; <a href="index.php?site=cash_box">'.$_language->module['cash-box'].'</a><br />';
         else $cashbox='';
         $anz=getnewmessages($userID);
         if($anz) {
              $newmessages=' (<b>'.$anz.'</b>)';
         }
         else $newmessages='';
         if($getavatar = getavatar($userID)) $l_avatar='<img src="images/avatars/'.$getavatar.'" alt="Avatar" />';
         else $l_avatar=$_language->module['n_a'];


         eval ("\$logged = \"".gettemplate("logged")."\";");
         echo $logged;
    }
    else {
         //set sessiontest variable (checks if session works correctly)
         $_SESSION['ws_sessiontest'] = true;
         eval ("\$loginform = \"".gettemplate("login")."\";");
         echo $loginform;
    }

    ?>


    Und hier die chacklogin.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.
    64.
    65.
    66.
    67.
    68.
    69.
    70.
    71.
    72.
    73.
    74.
    75.
    76.
    77.
    78.
    79.
    80.
    81.
    82.
    83.
    84.
    85.
    86.
    87.
    88.
    89.
    90.
    91.
    92.
    93.
    94.
    95.
    96.
    97.
    98.
    99.
    100.
    101.
    102.
    103.
    104.
    105.
    106.
    107.
    108.
    109.
    110.
    111.
    112.
    113.
    114.
    115.
    116.
    117.
    118.
    119.
    120.
    121.
    122.
    123.
    124.
    125.
    126.
    127.
    128.
    129.
    130.
    131.
    132.
    133.
    134.
    135.
    136.
    137.
    138.
    139.
    140.
    141.
    142.
    143.
    <?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                                                   #
    #                                                                        #
    ##########################################################################
    */

    include("_mysql.php");
    include("_settings.php");

    // copy pagelock information for session test + deactivated pagelock for checklogin
    $closed_tmp = $closed;
    $closed = 0;

    include("_functions.php");

    //settings

    $sleep = 1; //idle status for script if password is wrong?

    //settings end
    $_language->read_module('checklogin');

    $get = safe_query("SELECT * FROM ".PREFIX."banned_ips WHERE ip='".$GLOBALS['ip']."'");
    if(mysql_num_rows($get) == 0){
         $ws_pwd = md5(stripslashes($_POST['pwd']));
         $ws_user = $_POST['ws_user'];
         
         $check = safe_query("SELECT * FROM ".PREFIX."user WHERE username='".$ws_user."'");
         $anz = mysql_num_rows($check);
         $login = 0;
         
         if(!$closed_tmp AND !isset($_SESSION['ws_sessiontest'])) {
              $error = $_language->module['session_error'];
         }
         else {
              if($anz) {
              
                   $check = safe_query("SELECT * FROM ".PREFIX."user WHERE username='".$ws_user."' AND activated='1'");
                   if(mysql_num_rows($check)) {
              
                        $ds=mysql_fetch_array($check);
              
                        // check password
                        $login = 0;
                        if($ws_pwd == $ds['password']) {
              
                             //session
                             $_SESSION['ws_auth'] = $ds['userID'].":".$ws_pwd;
                             $_SESSION['ws_lastlogin'] = $ds['lastlogin'];
                             $_SESSION['referer'] = $_SERVER['HTTP_REFERER'];
                             //remove sessiontest variable
                             if(isset($_SESSION['ws_sessiontest'])) unset($_SESSION['ws_sessiontest']);
                             //cookie
                             setcookie("ws_auth", $ds['userID'].":".$ws_pwd, time()+($sessionduration*60*60));                         
                             //Delete visitor with same IP from whoisonline
                             safe_query("DELETE FROM ".PREFIX."whoisonline WHERE ip='".$GLOBALS['ip']."'");
                             //Delete IP from failed logins
                             safe_query("DELETE FROM ".PREFIX."failed_login_attempts WHERE ip = '".$GLOBALS['ip']."'");
                             $login = 1;
                             $error = $_language->module['login_successful'];
                        }
                        elseif(!($ws_pwd == $ds['password'])) {
                             if($sleep) sleep(5);
                             $get = safe_query("SELECT wrong FROM ".PREFIX."failed_login_attempts WHERE ip = '".$GLOBALS['ip']."'");
                             if(mysql_num_rows($get)){
                                  safe_query("UPDATE ".PREFIX."failed_login_attempts SET wrong = wrong+1 WHERE ip = '".$GLOBALS['ip']."'");
                             }
                             else{
                                  safe_query("INSERT INTO ".PREFIX."failed_login_attempts (ip,wrong) VALUES ('".$GLOBALS['ip']."',1)");
                             }
                             $get = safe_query("SELECT wrong FROM ".PREFIX."failed_login_attempts WHERE ip = '".$GLOBALS['ip']."'");
                             if(mysql_num_rows($get)){
                                  $ban = mysql_fetch_assoc($get);
                                  if($ban['wrong'] == $max_wrong_pw){
                                       $bantime = time() + (60*60*3); // 3 hours
                                       safe_query("INSERT INTO ".PREFIX."banned_ips (ip,deltime,reason) VALUES ('".$GLOBALS['ip']."',".$bantime.",'Possible brute force attack')");
                                       safe_query("DELETE FROM ".PREFIX."failed_login_attempts WHERE ip = '".$GLOBALS['ip']."'");
                                  }
                             }
                             $error= $_language->module['invalid_password'];
                        }
                   }
                   else $error= $_language->module['not_activated'];
              
              }
              else $error=str_replace('%username%', htmlspecialchars($ws_user), $_language->module['no_user']);
         }
    }
    else{
         $login = 0;
         $data = mysql_fetch_assoc($get);
         $error = str_replace('%reason%', $data['reason'], $_language->module['ip_banned']);
    }

    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="description" content="Clanpage using webSPELL 4 CMS" />
    <meta name="author" content="webspell.org" />
    <meta name="keywords" content="webspell, webspell4, clan, cms" />
    <meta name="copyright" content="Copyright &copy; 2005 - 2011 by webspell.org" />
    <meta name="generator" content="webSPELL" />
    <title><?php echo PAGETITLE; ?></title>
    <link href="_stylesheet.css" rel="stylesheet" type="text/css" />
    <?php if($login) { echo '<meta http-equiv="refresh" content="1;URL=index.php?site=articles" />'; } ?>
    </head>
    <body bgcolor="<?php echo PAGEBG; ?>">
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
         <tr>
              <td height="500" align="center">
              <table width="350" border="0" cellpadding="10" cellspacing="0" style="border:1px solid <?php echo BORDER; ?>" bgcolor="<?php echo BG_1; ?>">
                   <tr>
                        <td align="center"><?php echo $error; ?></td>
                   </tr>
              </table>
              </td>
         </tr>
    </table>
    </body>
    </html>



    Hab ich irgendwas vergessen zu machen oder irgendein code vergessen bei meiner änderung?

    website: www.sr-esports.de/
    version: 4.2.3
    Sort:     printview


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

    register now
    login
  • » Support

    » Topics
    21.05.2013 - 13:18 - 7 Replies
    » [Biete] Template Designs
    [Biete] Template Designs
    Last post: Marceld
    Board: DE - Biete
    21.05.2013 - 13:18
    21.05.2013 - 12:33 - 4 Replies
    » forum anzeige erweitern
    forum anzeige erweitern
    Last post: [Fabian]
    Board: DE - Allgemeiner Support
    21.05.2013 - 12:33
    21.05.2013 - 10:21 - 8 Replies
    » login startseite
    login startseite
    Last post: zwantE
    Board: DE - Technischer Support
    21.05.2013 - 10:21
    21.05.2013 - 05:54 - 0 Replies
    » When the update?
    When the update?
    Last post: kola60
    Board: EN - General
    21.05.2013 - 05:54
    21.05.2013 - 05:15 - 0 Replies
    » Need Designer for Logo/Te...
    Need Designer for Logo/Template
    Last post: Kody
    Board: EN - General
    21.05.2013 - 05:15
    21.05.2013 - 05:13 - 0 Replies
    » Looking for Designers/Cod...
    Looking for Designers/Coders (paid)
    Last post: Kody
    Board: EN - Requests
    21.05.2013 - 05:13
    20.05.2013 - 21:11 - 12 Replies
    » High Quality Website
    High Quality Website
    Last post: Dansjostedt
    Board: EN - Offers
    20.05.2013 - 21:11
    20.05.2013 - 18:27 - 4 Replies
    » [S] Tester für neuen Foru...
    [S] Tester für neuen ForumMod
    Last post: Argu
    Board: DE - Anfragen
    20.05.2013 - 18:27
    20.05.2013 - 11:47 - 5 Replies
    » Suche Designer GGL:Geld
    Suche Designer GGL:Geld
    Last post: Dynamic-Webmedia
    Board: DE - Suche
    20.05.2013 - 11:47
    20.05.2013 - 00:07 - 0 Replies
    » [S] Suche Programmierer
    [S] Suche Programmierer
    Last post: phoenix762
    Board: DE - Suche
    20.05.2013 - 00:07
    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 - 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
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers