Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: sourceserver.info. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

sliqz

Fortgeschrittener

  • »sliqz« ist der Autor dieses Themas

Beiträge: 409

Beruf: Kaufman im Einzelhandel

Rootserver vorhanden: Ja

  • Nachricht senden

1

Freitag, 31. Mai 2013, 22:50

chatlogex PHP LOGIN + PW

Hallo

Ich habe eine kleine frage. Ich benutze chatlogex, da gibt es einen Webinterface wo ich schauen kann wer was im Chat geschrieben hat. Aber leider ohne ein Login mit PW also es kann jeder sie sehen und meine frage ist kann jemand die PHP Datei so verändern das da ein Login mit PW benötigt wird ?

Die PHP Datei sieht so aus.

Spoiler Spoiler

PHP-Quelltext

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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<?php
/*
 * =============================================================================
 * SourceMod Extended ChatLog v1.3.5 WebUI Example
 * Reads a chatlog database for sourcemod and prints the sauce, in ajaxxx!
 *
 * (C)2009 Nephyrin@doublezen.net
 * =============================================================================
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License, version 3.0, as published by the
 * Free Software Foundation.
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 *
*/

//
// This is a SIMPLE example. Modify it as you wish. Keep in mind that it is GPL
// Licensed.
//
$START_ROWS 50// How many lines of chat we should display to start.

// $DB_HOST [$DB_PORT] $DB_USER $DB_PASS $DB_DATABASE
$DB_HOST "78.46.35.124";
$DB_PORT "*****";
$DB_USER "******";
$DB_PASS "*****";
$DB_DATABASE "******";

// Gives a nicer back-end ID for the javascript.
function cleanId($in)
{
    return preg_replace("/[^0-9a-zA-Z]/""_"$in);
}
function formatRow($R)
{
    $class;
    if ($R['team'] == 3)
        $class "bluename";
    elseif ($R['team'] == 2)
        $class "redname";
    elseif ($R['team'] == 10)
        $class "violetname";
    else
        $class "greyname";

    $team "";
    $dead "";
    $name htmlspecialchars($R['name'], ENT_QUOTES);
    $text htmlspecialchars($R['text'], ENT_QUOTES);

    if ($R['type'] >= 0)
    {
        if ($R['type'] & 2)
            $team "[TEAM] ";
        if ($R['type'] & 1)
            $dead "<span class="deadname">*DEAD*</span> ";

        $name "$dead<span class="$class">$team$name: </span>";
    }
    else
    {
        if($R['team'] == 10)
        {
            $team "[ADMIN] ";
            $name "<span class="$class">$team$name: </span>";
        }
        else
            $text "<span class="servermsg">$text</span>";
    }

    // Hours modifier
    $hoursmod 0;

    // http://fi2.php.net/manual/en/function.date.php
    // European timestamp
    //$date = date("j.m.y H:i:s", $R['date'] + ($hoursmod * 3600));
    $date date("n/j g:i:sa"$R['date'] + ($hoursmod 3600));
    
    $id cleanId($R['srvid']);
    return "$id\x01<span class="line"><span class="timestamp">$date </span>$name$text</span><br />";
}

$SQL = @mysql_connect($DB_PORT "$DB_HOST:$DB_PORT$DB_HOST$DB_USER$DB_PASS);
if (!$SQL) die("Failed to connect to MySQL Database");
@mysql_select_db($DB_DATABASE) or die("MySQL Failure: " mysql_error());

// Set output encoding to UTF-8
mysql_query('SET NAMES utf8'$SQL) or die("MySQL Failure: " mysql_error());

if (isset($_GET['mark']) && $mark $_GET['mark'] + 0):
    if ($mark == -1)
        $Q "SELECT name,seqid,type,srvid,team,text,UNIX_TIMESTAMP(`date`) AS `date` FROM `chatlogs` ORDER BY `seqid` DESC LIMIT $START_ROWS";
    else
        $Q "SELECT name,seqid,type,srvid,team,text,UNIX_TIMESTAMP(`date`) AS `date` FROM `chatlogs` WHERE `seqid` > $mark ORDER BY `seqid` DESC";

    $Q = @mysql_query($Q$SQL) or die("MySQL Failure: " mysql_error());
    $ar = array();
    $R mysql_fetch_array($Q);
    if (!$R)
    {
        // No new data, echo same mark back
        echo($mark);
        exit();
    }
    $newmark $R['seqid'];
    do
    {
        array_push($arformatRow($R));
    } while ($R mysql_fetch_array($Q));
    array_push($ar$newmark); // Add mark to bottom (top once reversed)
    $ar array_reverse($ar);// Query selects rows in reverse order, and mark is on bottom
    echo(implode("\n"$ar));
else:
    $Q "SELECT DISTINCT `srvid` FROM `chatlogs`";
    $Q = @mysql_query($Q$SQL) or die("MySQL Failure: " mysql_error());
    $PB "";
    $PS "";
    while ($R mysql_fetch_row($Q))
    {
        $id cleanId($R[0]);
        $PB .= "<div class="dat">
                <div class="dhead">Server "$R[0]"</div>
                <div class="dbody" id="dbody_$id">
                    <div class="dtext" id="dat_$id"></div>
                    <div id="dscrollto_$id"></div>
                </div>
            </div>\n";
        $PS .= "srvz.push("$id");\n";
    }
    echo "<?xml version="1.0" encoding="UTF-8" ?>";
?>
    <!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>
        <title>ChatLog Simple WebUI</title>
        <script type="text/javascript" src="./jquery-1.3.min.js"></script>
        <script type="text/javascript">
            var srvz = new Array();
            var mark = -1;
            var loading = 1;
            <?php echo($PS); ?>
            function dead(wat)
            {
                alert("Server side error. Dying:" + wat);
            }
            function cback(data, textStatus)
            {
                if (textStatus == "success")
                {
                    var lines = data.split("\n");
                    mark = lines[0];
                    if (mark + 0 == 0) die(3);
                    var line;
                    var scrollme = new Array();
                    for(var i = 1; i < lines.length; i++)
                    {
                        line = lines[i].split("\x01");
                        // 0 srvid
                        // 1 string
                        // Formatted serverside
                        if ($("#dscrollto_" + line[0]).offset().top <= $("#dbody_" + line[0]).height() + $("#dbody_" + line[0]).offset().top)
                            if (!scrollme[line[0]]) scrollme[line[0]] = true;
                        if (line.length != 2) return dead("1");
                        var box = $("#dat_" + line[0]);
                        if (!box) return dead("2");
                        for(var j = i + 1; j < lines.length; j++)
                        {
                            if(lines[j].split("\x01").length != 1) break;
                            line[1] += "<br />" + lines[j];
                            i = j;
                        }
                        if (loading)
                        {
                            box.html(line[1]);
                            loading = 0;
                        }
                        else
                        {
                            box.append(line[1]);
                        }
                        box.children(".line:last").fadeIn(500);
                    }
                    for (var sid in scrollme)
                    {
                        // Scroll it, thanks to learningjquery.com!
                        var divOffset = $("#dbody_" + sid).offset().top;
                        var endOffset = $("#dscrollto_" + sid).offset().top;
                        var Scroll = endOffset - divOffset;
                        $("#dbody_" + sid).animate({scrollTop: '+=' + Scroll + 'px'}, 500);
                    }
                }
                window.setTimeout("proc()", 2000);
            }
            function proc()
            {
                $.get("<?php echo($_SERVER["PHP_SELF"]); ?>?mark=" + mark, cback);
            }
        </script>
        <style>
            body
            {
                background-color: #333;
                font-family: verdana, arial;
                font-size: 12px;
            }
            .dat
            {
                border: 1px solid #000;
                background-color: #EEE;
                padding: 10px;
                margin: 10px;
                width: 700px;
                margin-left: auto;
                margin-right: auto;
            }
            .dbody
            {
                height: 250px;
                width: 700px;
                overflow: auto;
            }
            .dhead
            {
                font-weight: bold;
                font-size: 150%;
            }
            .dtext
            {
                padding-left: 7em;
            }
            .line
            {
                position: relative;
                margin-left: -7em;
                display: none;
            }
            .redname
            {
                color: red;
                font-weight: bold;
            }
            .bluename
            {
                color: blue;
                font-weight: bold;
            }
            .greyname
            {
                color: grey;
                font-weight: bold;
            }
            .violetname
            {
                color: #aa00b7;
                font-weight: bold;
            }
            .deadname
            {
                color: grey;
                font-weight: bold;
                font-style: italic;
            }
            .servermsg
            {
                color: grey;
                font-style: italic;
            }
            .timestamp
            {
                font-size: 80%;
                font-color: black;
                font-style: italic;
            }
        </style>
    </head>
    <body onload="javascript:proc()">
    <?php echo($PB); ?>
    </body>
    </html>
<?php endif; ?>


Just.eSports Chat-Log


MfG
sliqz

General

Super Moderator

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

2

Samstag, 1. Juni 2013, 00:15

mach doch einfach Passwortschutz mit .htaccess ^^

sliqz

Fortgeschrittener

  • »sliqz« ist der Autor dieses Themas

Beiträge: 409

Beruf: Kaufman im Einzelhandel

Rootserver vorhanden: Ja

  • Nachricht senden

3

Samstag, 1. Juni 2013, 09:38

Hab ich gemacht aber ich habe ein Problem :D Ich kann mich nicht einloggen :D

das ist die .htaccess hab ich da was falsch gemacht ? Wenn ich meine Login Daten eingebe kommt da so was >>> Bild <<<

Spoiler Spoiler

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
AuthUserFile http://www.justesports.eu/logs/.htpasswd
AuthGroupFile /dev/null
AuthName "Die Chat Spanner"
AuthType Basic
<Limit GET>
require valid-user
</Limit>
ErrorDocument 401 ERROR 1337
ErrorDocument 403 ERROR 1337
ErrorDocument 404 ERROR 1337
ErrorDocument 500 ERROR 1337
Options +Indexes 


MfG sliqz

General

Super Moderator

Beiträge: 1 043

Wohnort: Mönchengladbach

Beruf: Brückenkranführer / Staplerfahrer

Rootserver vorhanden: Nein

  • Nachricht senden

4

Samstag, 1. Juni 2013, 13:20

Lies dir DAS mal durch ^^

sliqz

Fortgeschrittener

  • »sliqz« ist der Autor dieses Themas

Beiträge: 409

Beruf: Kaufman im Einzelhandel

Rootserver vorhanden: Ja

  • Nachricht senden

5

Mittwoch, 5. Juni 2013, 15:49

Danke hat geklappt :)