Datum Zeit
Shoutbox
Gästen ist das Schreiben von Mitteilungen nicht erlaubt.


tele955848  Offline
Verwarnstatus: warningwarningwarningwarning
06.02.2012 09:49
moin

Jackpot  Offline
06.02.2012 00:01
Sehr geehrte Mitglieder, absofort gibt es wieder Lose in unseren Lottosystem! Der neue Jackpot liegt bei 500 Score. Alle Angaben ohne Gewähr. Wink

Datalus  Offline
04.02.2012 01:57
@ fehlerlos noch einen versuch und ich sperre beide Accounts !

Datalus  Offline
04.02.2012 01:56
@ fehlerlos , keine freischaltung da du bereits einen Account hier hast ! ( Monk )

DjMicha1985  Offline
04.02.2012 01:09
@fehlerlos keine Freischaltung, da Account bereits vorhanden (Monk)

Ähnliche Themen
Thema Forum Antworten Letzter Beitrag
Verwarnungssystem(pd_warning) Gemischtes 2 02. Juni 2011 08:14:13
Wer ist Online 2.0 + pd_warning Infusionen 3 12. November 2010 18:58:33
pd_warning | Warnen über das Profil? Allgemeine Support Fragen 2 22. Juli 2010 20:28:39
PD_Warning v7 einbinden Allgemeine Support Fragen 4 04. Juli 2010 16:45:42
pd_Warning installation und Aktivirungen etc. bitte Antworten Allgemeine Support Fragen 10 22. Dezember 2009 17:04:45
Thread ansehen
PHPFusion-SupportClub :: PHP-Fusion v7 Support :: Infusionen
Wer ist hier? 1 Gäste
 Drucke Thread
pd_warning v7
emblinux
Geschrieben am 26. Juli 2010 21:54:45
User Avatar




Posts: 3664
Registriert seit: 04.10.08

Meister
Nächstes Level: 3686/5000

Scores: gesperrt
Einen kleinen Hinweis kann ich dir ja geben. Am besten man sucht nach $data['user_name'] oder $data1['user_name'] oder so in der Art, und da in der Nähe müsstest du das dann einbauen.
Das Lernen ist wie ein Meer ohne Ufer. Konfuzius

Alles wird Gut!

KEIN Support per Mail, ICQ oder PN !
www.heiseclan.de/fusion/sig.gif
 top
http://www.fusion-ng.de
AndiS76
Geschrieben am 26. Juli 2010 22:16:08
User Avatar

Stammgast


Posts: 83
Registriert seit: 06.05.10

Fortgeschrittener
Nächstes Level: 83/100

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
supi tausend dank
euer Andi
 top
www.radio-musicgroup.de
AndiS76
Geschrieben am 27. Juli 2010 03:26:24
User Avatar

Stammgast


Posts: 83
Registriert seit: 06.05.10

Fortgeschrittener
Nächstes Level: 83/100

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
emblinux schrieb:
Einen kleinen Hinweis kann ich dir ja geben. Am besten man sucht nach $data['user_name'] oder $data1['user_name'] oder so in der Art, und da in der Nähe müsstest du das dann einbauen.



so das $data['user_name'] habe ich ohne weiteres gefunden jetzt hapert es nur an dem wo da einsetzen denn egal wo meine seite verschiebt sich irgendwie.
Ich kopiere mal das script euch hir rei oki? Vieleicht könnt ihr mir so besser helfen.

Code

   
<?php
/*-------------------------------------------------------+
| PHP-Fusion Content Management System
| Copyright (C) 2002 - 2008 Nick Jones
| http://www.php-fu...
+--------------------------------------------------------+
| Filename: shoutbox_panel.php
| Author: Nick Jones (Digitanium)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licen... Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
if (!defined("IN_FUSION")) { die("Access Denied"); }
include INFUSIONS."pd_warning/warning.inc.php";
if(file_exists(INFUSIONS."shoutbox_panel/locale/".$settings['locale'].".php"))
 {
  include INFUSIONS."shoutbox_panel/locale/".$settings['locale'].".php";
 }
else
 {
  include INFUSIONS."shoutbox_panel/locale/Czech.php";
 }
echo "<script type='text/javascript' src='".INFUSIONS."shoutbox_panel/inc/functions.js'></script>";

add_to_head('<script type="text/javascript" src="'.INFUSIONS.'shoutbox_panel/inc/profil.js"></script>');

$link = FUSION_SELF.(FUSION_QUERY ? "?".FUSION_QUERY : "");
$link = preg_replace("^(&amp;|\?)s_action=(edit|delete)&amp;shout_id=\d*^", "", $link);
$sep = stristr($link, "?") ? "&amp;" : "?";

if (iMEMBER && (isset($_GET['s_action']) && $_GET['s_action'] == "delete") && (isset($_GET['shout_id']) && isnum($_GET['shout_id']))) {
   if ((iADMIN && checkrights("S")) || (iMEMBER && dbcount("(shout_id)", DB_SHOUTBOX, "shout_id='".$_GET['shout_id']."' AND shout_name='".$userdata['user_id']."'"))) {
      $result = dbquery("DELETE FROM ".DB_SHOUTBOX." WHERE shout_id='".$_GET['shout_id']."'".(iADMIN ? "" : " AND shout_name='".$userdata['user_id']."'"));
   }
   redirect($link);
}

function sbwrap($text) {
   
   $i = 0; $tags = 0; $chars = 0; $res = "";
   
   $str_len = strlen($text);
   
   for ($i = 0; $i < $str_len; $i++) {
      $chr = substr($text, $i, 1);
      if ($chr == "<") {
         if (substr($text, ($i + 1), 6) == "a href" || substr($text, ($i + 1), 3) == "img") {
            $chr = " ".$chr;
            $chars = 0;
         }
         $tags++;
      } elseif ($chr == "&") {
         if (substr($text, ($i + 1), 5) == "quot;") {
            $chars = $chars - 5;
         } elseif (substr($text, ($i + 1), 4) == "amp;" || substr($text, ($i + 1), 4) == "#39;" || substr($text, ($i + 1), 4) == "#92;") {
            $chars = $chars - 4;
         } elseif (substr($text, ($i + 1), 3) == "lt;" || substr($text, ($i + 1), 3) == "gt;") {
            $chars = $chars - 3;
         }
      } elseif ($chr == ">") {
         $tags--;
      } elseif ($chr == " ") {
         $chars = 0;
      } elseif (!$tags) {
         $chars++;
      }
      
      if (!$tags && $chars == 18) {
         $chr .= "<br />";
         $chars = 0;
      }
      $res .= $chr;
   }
   
   return $res;
}
$vip = dbarray(dbquery("SELECT * FROM ".DB_VIP_SETTINGS));
openside($locale['global_150']);

if (iMEMBER || $settings['guestposts'] == "1") {
   include_once INCLUDES."bbcode_include.php";
   if (isset($_POST['post_shout'])) {
      $flood = false;
      if (iMEMBER) {
         $shout_name = $userdata['user_id'];
      } elseif ($settings['guestposts'] == "1") {
         $shout_name = trim(stripinput($_POST['shout_name']));
         $shout_name = preg_replace("(^[0-9]*)", "", $shout_name);
         if (isnum($shout_name)) { $shout_name = ""; }
         include_once INCLUDES."securimage/securimage.php";
         $securimage = new Securimage();
         if (!isset($_POST['sb_captcha_code']) || $securimage->check($_POST['sb_captcha_code']) == false) { redirect($link); }
      }
      $shout_message = str_replace("\n", " ", $_POST['shout_message']);
      $shout_message = preg_replace("/^(.{999}).*$/", "$1", $shout_message);
      $shout_message = trim(stripinput(censorwords($shout_message)));
      if (iMEMBER && (isset($_GET['s_action']) && $_GET['s_action'] == "edit") && (isset($_GET['shout_id']) && isnum($_GET['shout_id']))) {
         $comment_updated = false;
         if ((iADMIN && checkrights("S")) || (iMEMBER && dbcount("(shout_id)", DB_SHOUTBOX, "shout_id='".$_GET['shout_id']."' AND shout_name='".$userdata['user_id']."'"))) {
            if ($shout_message) {
               $result = dbquery("UPDATE ".DB_SHOUTBOX." SET shout_message='$shout_message' WHERE shout_id='".$_GET['shout_id']."'".(iADMIN ? "" : " AND shout_name='".$userdata['user_id']."'"));
            }
         }
         redirect($link);
      } elseif ($shout_name && $shout_message) {
         require_once INCLUDES."flood_include.php";
         if (!flood_control("shout_datestamp", DB_SHOUTBOX, "shout_ip='".USER_IP."'")) {
            $result = dbquery("INSERT INTO ".DB_SHOUTBOX." (shout_name, shout_message, shout_datestamp, shout_ip) VALUES ('$shout_name', '$shout_message', '".time()."', '".USER_IP."')");
         }
      }
      redirect($link);
   }
   if (iMEMBER && (isset($_GET['s_action']) && $_GET['s_action'] == "edit") && (isset($_GET['shout_id']) && isnum($_GET['shout_id']))) {
      $esresult = dbquery(
         "SELECT ts.*, tu.user_id, tu.user_name FROM ".DB_SHOUTBOX." ts
         LEFT JOIN ".DB_USERS." tu ON ts.shout_name=tu.user_id
         WHERE ts.shout_id='".$_GET['shout_id']."'"
      );
      if (dbrows($esresult)) {
         $esdata = dbarray($esresult);
         if ((iADMIN && checkrights("S")) || (iMEMBER && $esdata['shout_name'] == $userdata['user_id'] && isset($esdata['user_name']))) {
            if ((isset($_GET['s_action']) && $_GET['s_action'] == "edit") && (isset($_GET['shout_id']) && isnum($_GET['shout_id']))) {
               $edit_url = $sep."s_action=edit&amp;shout_id=".$esdata['shout_id'];
            } else {
               $edit_url = "";
            }
            $shout_link = $link.$edit_url;
            $shout_message = $esdata['shout_message'];
         }
      } else {
         $shout_link = $link;
         $shout_message = "";
      }
   } else {
      $shout_link = $link;
      $shout_message = "";
   }
   

   echo "<form name='chatform' method='post' action='".$shout_link."'>\n";
   if (iGUEST) {
      echo "<center>\n";
      echo $locale['global_151']."<br />\n";
      echo "<input type='text' name='shout_name' value='' class='textbox' maxlength='30' style='width:140px' /><br />\n";
      echo $locale['global_152']."<br />\n";
      echo "</center>\n";
   }

if ((iADMIN) || (checkgroup("".$vip['vip_id'].""))) {
echo "<div align='center'>Shoutbox Zeichen:<input type='text' name='commentlen' value='".$vip['vip_characters']."' maxlength='3' size='3' style='margin-top:5px; margin-bottom:2px; text-align:center;' class='textbox' readonly></div>\n";
echo "<center><textarea id='shout_message' name='shout_message' onKeyDown=\"textCounter(this.form.shout_message, this.form.commentlen, ".$vip['vip_characters'].");\" onKeyUp=\"textCounter(this.form.shout_message, this.form.commentlen, ".$vip['vip_characters'].");\" onFocus=\"textCounter(this.form.shout_message, this.form.commentlen, ".$vip['vip_characters'].");\" rows='4' cols='20' style='width:140px;' class='textbox'>".$shout_message."</textarea><br />\n";

   } else {
echo "<div align='center'>Shoutbox Zeichen :<input type='text' name='commentlen' value='".$vip['member_characters']."' maxlength='3' size='3' style='margin-top:5px; margin-bottom:2px; text-align:center;' class='textbox' readonly><br />(Vip:".$vip['vip_characters'].")</div>\n";
echo "<center><textarea id='shout_message' name='shout_message' onKeyDown=\"textCounter(this.form.shout_message, this.form.commentlen, ".$vip['member_characters'].");\" onKeyUp=\"textCounter(this.form.shout_message, this.form.commentlen, ".$vip['member_characters'].");\" onFocus=\"textCounter(this.form.shout_message, this.form.commentlen, ".$vip['member_characters'].");\" rows='4' cols='20' style='width:140px;' class='textbox'>".$shout_message."</textarea><br />\n";


  }
   echo display_bbcodes("150px;", "shout_message", "chatform", "smiley|b|u|url|color")."\n";
   if (iGUEST) {
      echo $locale['global_158']."<br />\n";
      echo "<img id='sb_captcha' src='".INCLUDES."securimage/securimage_show.php' alt='' /><br />\n";
    echo "<a href='".INCLUDES."securimage/securimage_play.php'><img src='".INCLUDES."securimage/images/audio_icon.gif' alt='' class='tbl-border' style='margin-bottom:1px' /></a>\n";
    echo "<a href='#' onclick=\"document.getElementById('sb_captcha').src = '".INCLUDES."securimage/securimage_show.php?sid=' + Math.random(); return false\"><img src='".INCLUDES."securimage/images/refresh.gif' alt='' class='tbl-border' /></a><br />\n";
      echo $locale['global_159']."<br />\n<input type='text' name='sb_captcha_code' class='textbox' style='width:100px' /><br />\n";
   }
   echo "<br /><input type='submit' name='post_shout' value='".$locale['global_153']."' class='button' /></center>\n";
   echo "</form>\n<br />\n";
} else {
   echo "<div style='text-align:center'>".$locale['global_154']."</div><br />\n";
}


$numrows = dbcount("(shout_id)", DB_SHOUTBOX);
$result = dbquery(
   "SELECT ts.*, tu.user_id, tu.user_groups, tu.user_name FROM ".DB_SHOUTBOX." ts
   LEFT JOIN ".DB_USERS." tu ON ts.shout_name=tu.user_id
   ORDER BY ts.shout_datestamp DESC LIMIT 0,".$settings['numofshouts']
);

$rows = dbcount("(shout_id)", DB_SHOUTBOX);
if (!isset($_GET['rowstart']) || !isnum($_GET['rowstart'])) { $_GET['rowstart'] = 0; }
if ($rows != 0) {
   $result = dbquery(
      "SELECT * FROM ".DB_SHOUTBOX." LEFT JOIN ".DB_USERS."
      ON ".DB_SHOUTBOX.".shout_name=".DB_USERS.".user_id
     ORDER BY shout_datestamp DESC LIMIT 0,".$settings['numofshouts']
    );
   
   while ($data = dbarray($result)) {
      echo "<div class='shoutboxname'>\n";

      if ($data['user_name']) {
      
        $query = "SELECT user_name,user_id,user_lastvisit FROM ".DB_USERS."";
              $lastseen = time() - $data['user_lastvisit'];
      if ($lastseen < 60) {
         $lastseen = "<img src='".BASEDIR."images/online.png' style='vertical-align: middle;'><span style='color:#00FF00;font-weight:bold;'> Online</span>";
      } else {
         $lastseen = "<img src='".BASEDIR."images/offline.png' style='vertical-align: middle;'><span style='color:#ff0000;font-weight:bold;'> Offline</span>";
      }



      echo "<br /><a href='".BASEDIR."profile.php?lookup=".$data['shout_name']."' class='side'>".ColorName($data['shout_name'])."&nbsp;".panacik($data['user_groups'])."</a> \n";
    echo '<a title="header=[
    '.$locale['sbp_2'].ColorName($data["shout_name"]).'&nbsp;'.panacik($data["user_groups"]).']
    body=[
    <small> 
    <br />hodnost:'.getuserlevel($data["user_level"]).'
    <br />status:'.$lastseen.''."\n";
      echo"<br />pohlavi:".($data['user_gender'] == 1 ? $locale['sbp_7']  : ($data['user_gender'] == 2 ? $locale['sbp_6'] : $locale['sbp_8']));
    echo'<br /></small>'."\n";
    echo'] delay=[0] fade=[on]" href=\'\' title=\'\' style=\'text-decoration:underline;\'><img border="0" src="'.INFUSIONS.'shoutbox_panel/images/profil.png" alt="" title=""></a><br />'."\n";
   
    echo"</div></br>\n";
       if (iMEMBER && $userdata['user_id'] != $data['user_id']) {
    echo "<div style='text'>";
    echo '[<font size="1" style="font-family: Arial"><a href="#" onclick=\'addText("shout_message", "'.$data["user_name"].'»", "", "chatform"); return false;\'>'.$locale["sbp_9"].'</a></font>]</div>'."\n";       

   }
   
   

      } else {
         echo "".$data['shout_name']."\n";
      }


      echo "</div>\n";
      echo "<div class='shoutboxdate'>".showdate("shortdate", $data['shout_datestamp'])."</div>";
      echo "<div class='shoutbox'>".sbwrap(parseubb(parsesmileys($data['shout_message']), "b|i|u|url|color"))."</div>\n";
      if ((iADMIN && checkrights("S")) || (iMEMBER && $data['shout_name'] == $userdata['user_id'] && isset($data['user_name']))) {
         echo "[<a href='".$link.$sep."s_action=edit&amp;shout_id=".$data['shout_id']."#edit_shout"."' class='side'>".$locale['global_076']."</a>]\n";
         echo "[<a href='".$link.$sep."s_action=delete&amp;shout_id=".$data['shout_id']."' class='side'>".$locale['global_157']."</a>]<br />\n";
      }

      $i++;
      if ($i != $numrows) { echo "<br />\n"; }
   }


} else {
   echo "<div>".$locale['global_156']."</div>\n";
}

      echo "<br /><div style='text-align:center'>\n<a href='".INFUSIONS."shoutbox_panel/shoutbox_archive.php' class='side'>".$locale['global_155']."</a>\n</div>\n";

if ((iADMIN) || (checkgroup("".$vip['vip_id'].""))) {
      echo "<div style='text-align:center'>\n<a href='".INFUSIONS."shoutbox_panel/vip_shout.php' class='side'>".$locale['sbp_10']."</a>\n</div>\n";

}
closeside();
?>






ich hoffe ihr könnt mir so helfen!
Danke euch schonmal
euer Andi
 top
www.radio-musicgroup.de
MarcusG
Geschrieben am 27. Juli 2010 09:29:01
User Avatar




Posts: 2936
Registriert seit: 21.01.09

Meister
Nächstes Level: 2942/5000

Scores: gesperrt
Der relevante Schnipsel wo du das pd_warning eingefügt hast hätte auch gereicht.

Ausserdem finde ich da nichts vom pd_warning.

Ich würde es VOR diesen Zeilen einfügen:
Code
} else {
         echo "".$data['shout_name']."\n";
      }




Aber grundsätzlich würde ich eine andere Shoutbox nehmen, die ist ja schlimm verunstaltet vom Code her...
Gruß Marcus

Support per Mail, PN, ICQ oder MSN ist kostenpflichtig!
if ($ahnung == 'keine' ) { use ( FAQ ) && ( Google | | Suche ) }
if ($antwort == 0 ) { post ( Frage ) }
 top
http://phpfusion.marcusg.de
AndiS76
Geschrieben am 29. Juli 2010 15:22:13
User Avatar

Stammgast


Posts: 83
Registriert seit: 06.05.10

Fortgeschrittener
Nächstes Level: 83/100

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
emblinux schrieb:
Öffne die Datei warning.php und suche nach:

Code
                                        <tr>
                                                <td align='left' valign='top'>
                                                <small>".warning_forum_link($data_warning_archiv['post_id'])."</small><br />
                                                ".nl2br($data_warning_archiv['warn_message'])."
                                                </td>
                                                <td width='170' align='right' valign='top'>
                                                        <b>".$data_warning_archiv['warn_point']."</b> ".($data_warning_archiv['warn_point']==1 ? $locale['PDWA413'] : $locale['PDWA414'])."<br />
                                                        ".$locale['PDWA421']." ".date("d.m.Y", warning_length($data_warning_archiv['warn_subject'], $data_warning_archiv['warn_datestamp']))."<br />
                                                        <i>".date($locale['PDWA416'], $data_warning_archiv['warn_datestamp']).", ".warning_user($data_warning_archiv['warn_admin'])."</i>
                                                </td>
                                        </tr>";






und ersetze es durch:

Code
                                        <tr>
                                                <td align='left' valign='top'>
                                                  &nbsp;
                                                </td>
                                                <td width='170' align='right' valign='top'>
                                                        <b>".$data_warning_archiv['warn_point']."</b> ".($data_warning_archiv['warn_point']==1 ? $locale['PDWA413'] : $locale['PDWA414'])."<br />
                                                        ".$locale['PDWA421']." ".date("d.m.Y", warning_length($data_warning_archiv['warn_subject'], $data_warning_archiv['warn_datestamp']))."<br />
                                                        <i>".date($locale['PDWA416'], $data_warning_archiv['warn_datestamp']).", ".warning_user($data_warning_archiv['warn_admin'])."</i>
                                                </td>
                                        </tr>";






ist das der Code um im Profil verwarnen zu können?
euer Andi
 top
www.radio-musicgroup.de
DeeoNe
Geschrieben am 29. Juli 2010 15:30:34
User Avatar

Anwender


Posts: 281
Registriert seit: 30.01.10

Halb-Profi
Nächstes Level: 282/500

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
Hast du Überhaupt die kaufversion?
Wenn du die free Version hast kannst du eh nur über Forum Verwarnen
 top
http://www.deeone.de
AndiS76
Geschrieben am 29. Juli 2010 15:33:22
User Avatar

Stammgast


Posts: 83
Registriert seit: 06.05.10

Fortgeschrittener
Nächstes Level: 83/100

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
nee woher bekomme ich die Kaufversion?
euer Andi
 top
www.radio-musicgroup.de
DeeoNe
Geschrieben am 29. Juli 2010 15:35:57
User Avatar

Anwender


Posts: 281
Registriert seit: 30.01.10

Halb-Profi
Nächstes Level: 282/500

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
Hättest die Seite 8 gelesen hättest du die Antwort dazu:
http://www.phpfus...post_19809
 top
http://www.deeone.de
AndiS76
Geschrieben am 29. Juli 2010 15:55:11
User Avatar

Stammgast


Posts: 83
Registriert seit: 06.05.10

Fortgeschrittener
Nächstes Level: 83/100

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
ja das habe ich ja verstanden aber ist diese Version schon irgendwo erhältlich da diese Nachricht ja vom März ist und wir haben ja schon etwas später
euer Andi
 top
www.radio-musicgroup.de
DeeoNe
Geschrieben am 29. Juli 2010 17:00:05
User Avatar

Anwender


Posts: 281
Registriert seit: 30.01.10

Halb-Profi
Nächstes Level: 282/500

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
Ja die ist erhältlich, aber nur auf anfrage bei emblinux, schreib ih n per PM an das du Interesse hast und was es kosten wirst du auch erfahren bzw kannst du auch gleich erfragen.
Aber alles nur per PM hier keine anfragen und keine Preise!
 top
http://www.deeone.de
AndiS76
Geschrieben am 29. Juli 2010 17:25:08
User Avatar

Stammgast


Posts: 83
Registriert seit: 06.05.10

Fortgeschrittener
Nächstes Level: 83/100

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
danke dir vielmals
euer Andi
 top
www.radio-musicgroup.de
Mazen
Geschrieben am 05. August 2010 23:49:53
Anfänger


Posts: 11
Registriert seit: 26.08.09

Amateur
Nächstes Level: 11/25

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
Moinsen,

bei http://www.phpfus...support.de hat man micht zu euch geschickt. Hier gibt es "Spezialisten" hat man mir gesagt.

Hab mir das "pd Warning - Verwarnsystem" installiert (von dieser Seite geladen). Läuft auch alles, nur wenn man im Forum auf "Verwarnsystem" klick (wie beispielsweise auch hier im Forum möglich), dann kommen zunächst folgende Fehlermeldungen, bevor man die Legende über die unterschiedlichen Verwarnungen lesen kann:

Code
Notice: Use of undefined constant warn_point - assumed 'warn_point' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 112

Notice: Use of undefined constant warn_length - assumed 'warn_length' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 113

Notice: Use of undefined constant warn_subject - assumed 'warn_subject' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 114

Notice: Use of undefined constant warn_point - assumed 'warn_point' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 112

Notice: Use of undefined constant warn_length - assumed 'warn_length' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 113

Notice: Use of undefined constant warn_subject - assumed 'warn_subject' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 114

Notice: Use of undefined constant warn_point - assumed 'warn_point' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 112

Notice: Use of undefined constant warn_length - assumed 'warn_length' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 113

Notice: Use of undefined constant warn_subject - assumed 'warn_subject' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 114

Notice: Use of undefined constant warn_point - assumed 'warn_point' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 112

Notice: Use of undefined constant warn_length - assumed 'warn_length' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 113

Notice: Use of undefined constant warn_subject - assumed 'warn_subject' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 114

Notice: Use of undefined constant warn_point - assumed 'warn_point' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 112

Notice: Use of undefined constant warn_length - assumed 'warn_length' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 113

Notice: Use of undefined constant warn_subject - assumed 'warn_subject' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 114

Notice: Use of undefined constant warn_point - assumed 'warn_point' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 112

Notice: Use of undefined constant warn_length - assumed 'warn_length' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 113

Notice: Use of undefined constant warn_subject - assumed 'warn_subject' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 114

Notice: Use of undefined constant warn_point - assumed 'warn_point' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 112

Notice: Use of undefined constant warn_length - assumed 'warn_length' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 113

Notice: Use of undefined constant warn_subject - assumed 'warn_subject' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 114

Notice: Use of undefined constant warn_point - assumed 'warn_point' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 112

Notice: Use of undefined constant warn_length - assumed 'warn_length' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 113

Notice: Use of undefined constant warn_subject - assumed 'warn_subject' in /var/kunden/webs/web2s5723/infusions/pd_warning/info.php on line 114




Woran kann das liegen?? Kann mir da vllt. wer weiterhelfen?

Grüße
 top
www.svf-united.de
Mazen
Geschrieben am 05. August 2010 23:57:03
Anfänger


Posts: 11
Registriert seit: 26.08.09

Amateur
Nächstes Level: 11/25

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
Hab den Fehler schon entdeckt... In der Info.php müssen folgende Zeilen ersetzt werden:

Code
<td align='center' valign='top'>".$wcdata['warn_point']."</td>
   <td align='left' valign='top'>".$wcdata['warn_length']." ".$locale['PDWA324']."</td>
   <td align='left' valign='top'>".$wcdata['warn_subject']."</td>





 top
www.svf-united.de
emblinux
Geschrieben am 06. August 2010 07:59:57
User Avatar




Posts: 3664
Registriert seit: 04.10.08

Meister
Nächstes Level: 3686/5000

Scores: gesperrt
Hättest du das Thema besser durchgelesen, dann hättest du dir diese beiden Posts sparen können. Das wurde alles schon mal geklärt.

Sauer
Das Lernen ist wie ein Meer ohne Ufer. Konfuzius

Alles wird Gut!

KEIN Support per Mail, ICQ oder PN !
www.heiseclan.de/fusion/sig.gif
 top
http://www.fusion-ng.de
Mazen
Geschrieben am 06. August 2010 15:07:37
Anfänger


Posts: 11
Registriert seit: 26.08.09

Amateur
Nächstes Level: 11/25

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
emblinux schrieb:
Vampir190 schrieb:
Oki Das Ist Die Fehler Meldung :
Notice: Use of undefined constant warn_point - assumed 'warn_point' in /data/apache/users/kilu.de/dxl/www/infusions/pd_warning/info.php on line 112
Notice: Use of undefined constant warn_length - assumed 'warn_length' in /data/apache/users/kilu.de/dxl/www/infusions/pd_warning/info.php on line 113
Notice: Use of undefined constant warn_subject - assumed 'warn_subject' in /data/apache/users/kilu.de/dxl/www/infusions/pd_warning/info.php on line 114


Dabei geht es um folgende Zeilen in der info.php:

Code
      <td align='center' valign='top'>".$wcdata[warn_point]."</td>
      <td align='left' valign='top'>".$wcdata[warn_length]." ".$locale['PDWA324']."</td>
      <td align='left' valign='top'>".$wcdata[warn_subject]."</td>




diese einfach ersetzen durch:

Code
   <td align='center' valign='top'>".$wcdata['warn_point']."</td>
   <td align='left' valign='top'>".$wcdata['warn_length']." ".$locale['PDWA324']."</td>
   <td align='left' valign='top'>".$wcdata['warn_subject']."</td>





Werde bei Gelegenheit noch das Downloadpaket dahingehend anpassen.

DOWNLOAD AKTUALISIERT !


Ich hab mir den Thread hier durchgelesen, sogar sehr genau. Nur leider gab es Fehlinformationen von deiner Seite. Es wurde geschrieben, dass die Dateien auf dieser Seite gefixt wurden. - War wohl nix, darauf hatte ich mich verlassen. Leider besteht der Fehler immer noch und man muss es manuell nachbessern.

Wäre vllt nett, wenn das jemand mal fixen könnte.

Greetz
Editiert von Mazen am 06. August 2010 15:12:35
 top
www.svf-united.de
MarcusG
Geschrieben am 06. August 2010 15:14:14
User Avatar




Posts: 2936
Registriert seit: 21.01.09

Meister
Nächstes Level: 2942/5000

Scores: gesperrt
Ist nun im Downloadpaket gefixt.
Gruß Marcus

Support per Mail, PN, ICQ oder MSN ist kostenpflichtig!
if ($ahnung == 'keine' ) { use ( FAQ ) && ( Google | | Suche ) }
if ($antwort == 0 ) { post ( Frage ) }
 top
http://phpfusion.marcusg.de
Mazen
Geschrieben am 06. August 2010 15:16:07
Anfänger


Posts: 11
Registriert seit: 26.08.09

Amateur
Nächstes Level: 11/25

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
Sehr gut, vielen Dank!
 top
www.svf-united.de
boss159
Geschrieben am 05. September 2010 02:43:36
Anwender


Posts: 357
Registriert seit: 09.02.09

Halb-Profi
Nächstes Level: 357/500

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
Notice: Undefined index: user_level in infusions/shoutbox_panel/shoutbox_panel.php on line 174

Fatal error: Call to undefined function show_warning_points() in infusions/shoutbox_panel/shoutbox_panel.php on line 176

So hallo zusammen hier gehts um die Verwarn version vom embli sobald ich in der shoutbox das einbau streikt er

forum OK
Kommentar OK
Shoutbox NEIN

sobald ich den obrigen code eingebe und speicher kommt der fehler
 top
http://www.collerboss.de/
MarcusG
Geschrieben am 05. September 2010 08:41:11
User Avatar




Posts: 2936
Registriert seit: 21.01.09

Meister
Nächstes Level: 2942/5000

Scores: gesperrt
Dann machst du was falsch. Übrigens ist die Version die man hier herunterladen kann ohne Shoutbox.
Gruß Marcus

Support per Mail, PN, ICQ oder MSN ist kostenpflichtig!
if ($ahnung == 'keine' ) { use ( FAQ ) && ( Google | | Suche ) }
if ($antwort == 0 ) { post ( Frage ) }
 top
http://phpfusion.marcusg.de
boss159
Geschrieben am 05. September 2010 13:27:57
Anwender


Posts: 357
Registriert seit: 09.02.09

Halb-Profi
Nächstes Level: 357/500

Scores: gesperrt

Verwarnstatus: warningwarningwarningwarning
wer sagte denn das ich die version von hier habe ?

ich hab sie direkt vom ersteller
 top
http://www.collerboss.de/
Springe ins Forum: