Beiträge von Derek Westbrook

    ich habe nichts abgeändert. nur den expander hinzugefügt. (WBB-Spoiler)


    hier nochmal Aktuell:

    PHP
    <?phprequire_once('SatDB.php');if (!isset($_SESSION)) {  session_start();}$MM_authorizedUsers = "1";$MM_donotCheckaccess = "false";// *** Restrict Access To Page: Grant or deny access to this pagefunction isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {   // For security, start by assuming the visitor is NOT authorized.   $isValid = False;   // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.   // Therefore, we know that a user is NOT logged in if that Session variable is blank.   if (!empty($UserName)) {     // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.     // Parse the strings into arrays.     $arrUsers = Explode(",", $strUsers);     $arrGroups = Explode(",", $strGroups);     if (in_array($UserName, $arrUsers)) {       $isValid = true;     }     // Or, you may restrict access to only certain users based on their username.     if (in_array($UserGroup, $arrGroups)) {       $isValid = true;     }     if (($strUsers == "") && false) {       $isValid = true;     }   }   return $isValid; }$MM_restrictGoTo = "Login.php";if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {     $MM_qsChar = "?";  $MM_referrer = $_SERVER['PHP_SELF'];  if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";  if (isset($QUERY_STRING) && strlen($QUERY_STRING) > 0)   $MM_referrer .= "?" . $QUERY_STRING;  $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);  header("Location: ". $MM_restrictGoTo);   exit;}?><?phpif (!function_exists("GetSQLValueString")) {function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") {  if (PHP_VERSION < 6) {    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;  }  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);  switch ($theType) {    case "text":      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";      break;        case "long":    case "int":      $theValue = ($theValue != "") ? intval($theValue) : "NULL";      break;    case "double":      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";      break;    case "date":      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";      break;    case "defined":      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;      break;  }  return $theValue;}}mysql_select_db($database_SatDB, $SatDB);$query_Login = "SELECT * FROM `User`";$Login = mysql_query($query_Login, $SatDB) or die(mysql_error());$row_Login = mysql_fetch_assoc($Login);$totalRows_Login = mysql_num_rows($Login);mysql_close($SatDB);?><?php// *** Validate request to login to this site.if (!isset($_SESSION)) {  session_start();}$loginFormAction = $_SERVER['PHP_SELF'];if (isset($_GET['accesscheck'])) {  $_SESSION['PrevUrl'] = $_GET['accesscheck'];}if (isset($_POST['UserName'])) {  $loginUsername=$_POST['UserName'];  $password=$_POST['Password'];  $MM_fldUserAuthorization = "UserLevel";  $MM_redirectLoginSuccess = "Account.php";  $MM_redirectLoginFailed = "Login.php";  $MM_redirecttoReferrer = true;  mysql_select_db($database_SatPanelDB, $SatPanelDB);  $LoginRS__query=sprintf("SELECT Username, Password, UserLevel FROM `User` WHERE Username=%s AND Password=%s",  GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));   $LoginRS = mysql_query($LoginRS__query, $SatPanelDB) or die(mysql_error());  $loginFoundUser = mysql_num_rows($LoginRS);  if ($loginFoundUser) {    $loginStrGroup  = mysql_result($LoginRS,0,'UserLevel');    //declare two session variables and assign them    $_SESSION['MM_Username'] = $loginUsername;    $_SESSION['MM_UserGroup'] = $loginStrGroup;	          if (isset($_SESSION['PrevUrl']) && true) {      $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];	    }    header("Location: " . $MM_redirectLoginSuccess );  }  else {    header("Location: ". $MM_redirectLoginFailed );  }}?><!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"><head><link href="CSS/Layout.css" rel="stylesheet" type="text/css" /><link href="CSS/Menu.css" rel="stylesheet" type="text/css" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>San Andreas Trucking | Login</title><script src="../SpryAssets/SpryValidationTextField.js" type="text/javascript"></script><link href="../SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" /></head><body><div id="Holder"><div id="Header"></div><div id="NavBar">	<nav class="navbar navbar-inverse">  		<div class="container-fluid">    		<div>      			<ul class="nav navbar-nav">        			<li class="dropdown">                      <a class="dropdown-toggle" data-toggle="dropdown" href="#">Login                      <span class="caret"></span></a>						<ul class="dropdown-menu">           				 <li><a href="/ForgotPassword.php">Passwort vergessen</a></li>          		</ul>       			 </li>        		<li><a href="/Register.php">Registrieren</a></li>       </ul>    </div>  </div></nav></div><div id="Content">	<div id="PageHeading">	  <h1>Login	</h1>	</div>	<div id="ContentLeft">	  <h2>Support:</h2>      <h6>&nbsp;</h6>      <h6>Email: bedrockcracher@gmail.com</h6>      <h6>&nbsp;</h6>      <h6>codet by Yannik Böltes alias	Derek Westbrook</h6>	</div>    <div id="ContentRight">      <form id="LoginForm" name="LoginForm" method="POST" action="<?php echo $loginFormAction; ?>">        <table width="400" border="0" align="center">          <tr>            <td><h6>Benutzername:</h6>              <h6><span id="sprytextfield1">                <label>                  <input name="UserName" type="text" class="StyleTextField" id="UserName" />                </label>            <span class="textfieldRequiredMsg">Es muss ein Wert angegeben werden.</span></span></h6></td>          </tr>          <tr>            <td>&nbsp;</td>          </tr>          <tr>            <td><h6><span id="sprytextfield2">              <label>Passwort:<br />                <br />                <input name="Password" type="text" class="StyleTextField" id="Password" />              </label>            <span class="textfieldRequiredMsg">Es muss ein Wert angegeben werden.</span></span></h6></td>          </tr>          <tr>            <td>&nbsp;</td>          </tr>          <tr>            <td><label>              <input type="submit" name="Einloggen" id="LoginButton" value="Einloggen" />            </label></td>          </tr>          <tr>            <td>&nbsp;</td>          </tr>        </table>      </form>    </div></div><div id="Footer"></div></div><script type="text/javascript"><!--var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2");//--></script></body></html><?phpmysql_free_result($Login);?>


    SatDB.php

    PHP
    <?php# FileName="Connection_php_mysql.htm"# Type="MYSQL"# HTTP="true"$hostname_SatDB = "localhost";$database_SatDB = "sat_panel";$username_SatDB = "sat_panel";$password_SatDB = "*****";$SatDB = mysql_pconnect($hostname_SatDB, $username_SatDB, $password_SatDB) or trigger_error(mysql_error(),E_USER_ERROR); ?>

    Ich habe SatDB.php nun im root platziert. aber er will immernoch nicht laden :/


    Diese Webseite hat eine Weiterleitungsschleife


    Die Webseite unter http://www.sa-trucking.ml/Login.php?accesscheck=%2FLogin.php führte zu viele Um- bzw. Weiterleitungen durch. Möglicherweise kann das Löschen der Cookies für diese Site oder das Zulassen von Drittanbieter-Cookies das Problem beheben. Ist dies nicht der Fall, handelt es sich möglicherweise um ein Konfigurationsproblem des Servers und nicht um ein Problem Ihres Computers.

    Leider wird mir hierbei die abfrage verwährt:
    SELECT max_user_coennections FROM mysql.user WHERE user='u269112572_sat';
    #1142 - SELECT command denied to user 'u269112572_sat' localhost for table 'user'


    SHOW VARIABLES LIKE 'max_user_connections';
    Und hier kommt 5 raus.


    bei bplaced wird der verbindungsaufbau abgebrochen. Browser zur seite;


    Diese Webseite hat eine Weiterleitungsschleife


    Die Webseite unter http://www.sa-trucking.ml/Login.php?accesscheck=%2FLogin.php führte zu viele Um- bzw. Weiterleitungen durch. Möglicherweise kann das Löschen der Cookies für diese Site oder das Zulassen von Drittanbieter-Cookies das Problem beheben. Ist dies nicht der Fall, handelt es sich möglicherweise um ein Konfigurationsproblem des Servers und nicht um ein Problem Ihres Computers.
    maddin:

    Hallo, Ich kann mich nicht entscheiden welchen Channelnamen ich nehmen sollte...


    Zum Projekt:


    Wir haben vor In unserer Stadt ein bisschen Chaos zu verursachen ;)
    Da es in unserer Stadt ziemlich unspektakulär ist.

    Sieht sie nicht schön aus?


    Das sind Luftblasen der schutzfolie.


    Tja. Einen Arbeitskollegen gezeigt. der hat sie sich "Genauer angesehen". Also er hat von hinten gegen die Uhr gedrückt. dann ist Sie aus dem Armband gesprungen. Ca 5M durch die Luft geflogen und genau auf die Kante gefallen. X(


    Nun sieht sie so aus:



    Ein fall für Markt deckt auf ;)
    oder für Carglas ^^


    Nein, es wird ein fall für seine Versicherung -.-

    COMING SOON


    DU willst Mitglied einer LEGENDE werden?
    Teilhaben an einem Projekt was man NICHT so schnell VERGESSEN wird?
    Dann BEWERBE dich noch HEUTE!


    Freie Plätze:


    1x Projektleitung
    1x Scripter
    3x Supporter davon 2x Deutsch und 2x Englisch
    1x Webdeveloper
    1x PR-Manager
    1x Community Verwaltung



    Was ist Grand Theft Auto San Andreas ONLINE überhaupt?


    Grand Theft Auto San Andreas ONLINE versucht möglischst alle Features von GTA V ONLINE zu SA:MP zu portieren.

    Ok, hört sich Interessant an. Wie weit seit Ihr denn schon?

    Wir stehen noch ziemlich am anfang. Das Konzept Steht, Das Intro ist fast Fertig.

    Und was sollte ich können?


    Wenigstens dies:

    • Gutes-Perfektes Englisch/Deutsch in Wort und Schrift.
    • Mindestalter 16 Jahre.
    • Geistige Reife.
    • Kreativität.
    • Guter Umgang mit Konflikten und unvorhersehbaren Situationen.
    • TEAM-ARBEIT

    Ich habe Folgendes Problem...



    Dort wo Player Player und Player Player Two steht sollen Namen der Spieler stehen die die variable TutorialRace = 1 haben.
    aber wie mache ich das?


    Ich möchte/muss auch eine art random System einbauen damit dieSpieler zufällig rein gezogen werden.


    Jeffry