ilch Forum » Ilch Clan 1.1 » Module und Modifikationen » ShBox 3.2.2 Datum und Uhrzeit

Geschlossen
  1. #1
    User Pic
    EXEDRA Mitglied
    Registriert seit
    16.04.2006
    Beiträge
    100
    Beitragswertungen
    0 Beitragspunkte
    Hallöchen

    also ich bekomm es einfach nicht hin das das Datum anders angezeigt wird..

    es steht da zb 10.10.21 ...also jahr , monat, Tag. Ich möchte es aber so haben das es Tag, monat Jahr ist....was muss ich ändern?...hab bei den Einstellungen alles versucht...ändert sich nix traurig

    MfG

    Inka
    Fortiter in re, suariter in modo. - Stark in der Sache, süß in der Form.
    Kalorien sind kleine fiese Tierchen, die heimlich Nachts deine Klamotten enger nähen ...
    zwinker
    0 Mitglieder finden den Beitrag gut.
  2. #2
    User Pic
    Chapter Hall Of Fame
    Registriert seit
    21.10.2007
    Beiträge
    5.951
    Beitragswertungen
    229 Beitragspunkte
    poste mal den code der box
    Spamming, sinnlose Beiträge, Pushing, Doppelposting und Werbung sind verboten
    externer Link
    0 Mitglieder finden den Beitrag gut.
  3. #3
    User Pic
    EXEDRA Mitglied
    Registriert seit
    16.04.2006
    Beiträge
    100
    Beitragswertungen
    0 Beitragspunkte
    <?php
    /*
    Script     => ShBox 3.2.2 =>V1   &copy by NF-Projekt FIXED (V1.0)
    Entwickler => WDS NachtWolf / B.Masmann
    Seite/Sup. => http://www.nf-projekt.de /
                  http://www.wds-wolfsdragoner.de /
             and  http://www.ilch.de
    Kontakt    => Webmaster@nf-projekt.de
    */
    defined ('main') or die ('no direct access');
    
    include ('include/includes/js/shbox/shboxfunc.php');
    
    $abf = db_query('SELECT * FROM `prefix_shbox_config` WHERE id="1"');
    $conf = db_fetch_assoc($abf);
    echo '
    <table width="'.$conf['tabellewidth'].'%" height="" border="0" gcolor="" cellspacing="0" cellpadding="0">
     <tr> 
      <td>
    ';
    
    $postname = escape($_POST['xname'],'string');
    $postnamex = '*GAST*';
    $tags = array('[img]','[url]','[IMG]','[URL]','[/img]','[/url]','[/IMG]','[/URL]','[COLOR]','[/COLOR]','[color]','[/color]','http','www','://');
    $posttxt = escape($_POST['xtxt'], 'textarea');
    $posttxt = str_replace($tags , '', escape($_POST[xtxt],'string'));
    $posttxt = strip_tags($posttxt);
    
    if (isset($_POST['subshbox']))
    {//Check Submit
    if ($posttxt == ''){//Check leeres Textfeld
    }//CLT
    else
    {//CLT
    if ( loggedin() )
    {//1
      if ( isset($_POST['xtxt']) AND !empty($_POST['xdate']) AND !empty($_POST['xname']) AND !empty($_POST['xip']) )
      {//2
       db_query("INSERT INTO prefix_shbox (`txt`,`date`,`name`,`ip`) VALUES
       ('".$posttxt."', '".escape($_POST[xdate],'string')."', '".$postname."', '".escape($_POST[xip],'string')."')");
       }//2
    }//1
    
    else
    {//3
    $abfs = db_query("SELECT id FROM prefix_user WHERE name = BINARY '".$postname."'");
      if (db_num_rows($abfs) > 0)
      {
        if ($conf['spam'] == AN)
        {//4
        if ($_POST['sz'] == $_POST['xspam'])
          {//5
            if ( isset($_POST['xtxt']) AND !empty($_POST['xdate']) AND !empty($_POST['xname']) AND !empty($_POST['xip']) )
            {//6
             db_query("INSERT INTO prefix_shbox (`txt`,`date`,`name`,`ip`) VALUES
             ('".$posttxt."', '".escape($_POST[xdate],'string')."', '".$postnamex."', '".escape($_POST[xip],'string')."')");
            }//6
          }//5
        }//4
        else
        {//7
          if ( isset($_POST['xtxt']) AND !empty($_POST['xdate']) AND !empty($_POST['xname']) AND !empty($_POST['xip']) )
          {//8
           db_query("INSERT INTO prefix_shbox (`txt`,`date`,`name`,`ip`) VALUES
           ('".$posttxt."', '".escape($_POST[xdate],'string')."', '".$postnamex."', '".escape($_POST[xip],'string')."')");
          }//8
        }//7
      }
      else
      {
        if ($conf['spam'] == AN)
        {//4
          if (escape($_POST['sz'],'string') == escape($_POST['xspam'],'string'))
          {//5
            if ( isset($_POST['xtxt']) AND !empty($_POST['xdate']) AND !empty($_POST['xname']) AND !empty($_POST['xip']) )
            {//6
             db_query("INSERT INTO prefix_shbox (`txt`,`date`,`name`,`ip`) VALUES
             ('".$posttxt."', '".escape($_POST[xdate],'string')."', '".$postname."', '".escape($_POST[xip],'string')."')");
            }//6
          }//5
        }//4
        else
        {//7
          if ( isset($_POST['xtxt']) AND !empty($_POST['xdate']) AND !empty($_POST['xname']) AND !empty($_POST['xip']) )
          {//8
           db_query("INSERT INTO prefix_shbox (`txt`,`date`,`name`,`ip`) VALUES
           ('".$posttxt."', '".escape($_POST[xdate],'string')."', '".$postname."', '".escape($_POST[xip],'strng')."')");
          }//8
        }//7
    }//3
      }
    }
    }
    $ILCH_HEADER_ADDITIONS .= '
    <link rel="stylesheet" type="text/css" href="include/includes/js/shbox/shbox.css">
    <script type="text/javascript" charset="utf-8" src="include/includes/js/shbox/shbox.js"></script>
    <script language="JavaScript" type="text/javascript">
    window.onload = "fetch()";
    interval = window.setInterval("fetch();", '.$conf['setinterval'].');
    </script>
    ';
    
    $datum = date("$conf[datumformat]");
    $hr = '<hr style="height:0px;border:solid '.$conf['hrcolor'].' 0px;border-top-width: 1px;" />';
    
    if ($conf['ip'] == JA)
    {
    $ips = $_SERVER['REMOTE_ADDR'];
    $ip = '<br />Deine IP : '.$_SERVER['REMOTE_ADDR'].'';
    }
    else
    {
    $ip = '';
    }
    
    srand ((double) microtime() * 1000000);
    $sz = rand(999,10000);
    
    if ($conf['spam'] == AN)
    {
    $spam = '
    <table border="0" bgcolor="'.$conf['tabellecolor'].'" cellpadding="0" cellspacing="0">
     <tr>
      <td align="center">
       <input type="hidden" name="sz" value="'.$sz.'" />
       '.$sz.'&nbsp;&nbsp;&nbsp;<input name="xspam" size="4" maxlength="4" value="" />
      </td>
     </tr>
    </table>
            ';
    }
    else
    {
    $spam = '';
    }
    
    if($conf['smilies'] == JA)
    {
    $smilies = shboxsmilies();
    }
    else
    {
    $smilies = '';
    }
    
    if ( loggedin() )
    {
    $abf = 'SELECT id, name, avatar FROM prefix_user WHERE name = "'.escape($_SESSION['authname'],'string').'"';
    $erg = db_query($abf);
    $row = db_fetch_object($erg); 
    {
    $tabellew = $conf['tabellewidth'];
    $tabelleh = $conf['tabelleheight'];
    
    if ($conf['anzeige'] == 0)
    {
      if ( file_exists($row->avatar))
      {
      $avatar = '<img src="'.$row->avatar.'" border="0" height="'.$conf['avatarx'].'" width="'.$conf['avatary'].'">';
      }
      else
      {
      $avatar = $_SESSION['authname'];
      }
    }
    else
    {
    $avatar = $_SESSION['authname'];
    }
    }
    
    $tpl = new tpl ('shbox');
    $ar = array(
                'txt' => $text  = escape($_POST['txt'], 'textarea'),
                'CLASS' => $class,
                'SMILIES' => $smilies,
                'IP' => $ip,
                'IPS' => $ips,
                'USER' => $_SESSION['authname'],
                'AVATAR' => $avatar,
                'HR' => $hr,
                'DATE' => $datum,
                'TXTROWS' => $conf['textrows'],
                'TXTCOLS' => $conf['textcols'],
                'TXTCOLOR' => $conf['textgroundcolor'],
                'TCOLOR' => $conf['tabellecolor'],
                'TABELLEH' => $tabelleh,
                'TABELLEW' => $tabellew
                );
    $tpl->set_ar_out($ar, 0);
    }
    elseif ($conf['gastrecht'] == AN)
    {
    $gast = ''.$conf['nametext'].'<br /><input name="xname" size="'.$conf['namesize'].'" maxlength="'.$conf['namelänge'].'" style="background-color:'.$conf['namegroundcolor'].'" value="GAST" />';
    $tpl = new tpl ('shbox');
    $ar = array(
                'txt' => $text  = escape($_POST['txt'], 'textarea'),
                'CLASS' => $class,
                'SMILIES' => $smilies,
                'IP' => $ip,
                'IPS' => $ips,
                'GAST' => $gast,
                'HR' => $hr,
                'DATE' => $datum,
                'SPAM' => $spam,
                'TXTROWS' => $conf['textrows'],
                'TXTCOLS' => $conf['textcols'],
                'TXTCOLOR' => $conf['textgroundcolor'],
                'TCOLOR' => $conf['tabellecolor'],
                'TABELLEH' => $tabelleh,
                'TABELLEW' => $tabellew
                );
    $tpl->set_ar_out($ar, 1);
    }
    else
    {
    echo '<center>'.$conf['nametext'].'</center><br />';
    echo $hr;
    }
    
    if ($conf['reload'] == AN)
    {
    echo '<div id="shoutbox">
           <center><img src="include/images/load.gif" alt="Load" id="shoutbox" border="0" /></center>
          </div>';
    }
    else
    {
    echo shbox();
    }
    echo '
    <table width="'.$conf['tabellewidth'].'%" height="'.$conf['tabelleheight'].'%" border="0" bgcolor="'.$conf['tabellecolor'].'" align="center" cellpadding="0" cellspacing="0">
     <tr>
      <td>
       <center><b><a href="index.php?shbox-archiv">ARCHIV</a></b></center>
      </td>
     </tr>
    </table>
    
       </td>
      </tr>
     </table>';
    ?>


    in den einstellungen soll man das ändern können , angeblich gibt es Beispiele...ich hab nix gefunden ...jetzt steht da >>> d.m.j G:i:s
    Fortiter in re, suariter in modo. - Stark in der Sache, süß in der Form.
    Kalorien sind kleine fiese Tierchen, die heimlich Nachts deine Klamotten enger nähen ...
    zwinker
    0 Mitglieder finden den Beitrag gut.
  4. #4
    User Pic
    EXEDRA Mitglied
    Registriert seit
    16.04.2006
    Beiträge
    100
    Beitragswertungen
    0 Beitragspunkte
    juhu...ich habs gefunden^^ die einstellung muss j.n.y. G:i:s <<< für 22.10.10 sein und j.n.Y. G:i:s für 22.10.2010

    trotzdem danke für deine Hilfe
    Fortiter in re, suariter in modo. - Stark in der Sache, süß in der Form.
    Kalorien sind kleine fiese Tierchen, die heimlich Nachts deine Klamotten enger nähen ...
    zwinker
    0 Mitglieder finden den Beitrag gut.
Geschlossen

Zurück zu Module und Modifikationen

Optionen: Bei einer Antwort zu diesem Thema eine eMail erhalten