HTH-C.com - Forum
Latest News Latest Threads
Neuerung: Persönliche Galerie
Informationen zur Übernahme der Erweite..
HTH Blog - Version 2.0
#HTH.Systems - Betatester gesucht
Neueröffnung - PHPKit-Award.de
HTH Webchat v3
Letzter Beitrag Happy Birthday Bottyline Weiblicher Benutzer Heute, 0:00 Zeit der letzten Antwort
Letzter Beitrag Gibt es eigentlich noch jemand der PHPki.. Myrddin Männlicher Benutzer 19.04.2025 - 02:37 Zeit der letzten Antwort
Letzter Beitrag Herzlich Willkommen Botty Männlicher Benutzer 22.11.2024 - 21:45 Zeit der letzten Antwort
Letzter Beitrag PHPKit 1.6.6 WEBI Männlicher Benutzer 24.06.2024 - 13:58 Zeit der letzten Antwort
Letzter Beitrag PHPKit 1.6.6 ohne ASCE auf PHP8x Myrddin Männlicher Benutzer 22.03.2023 - 13:36 Zeit der letzten Antwort
 56.674 Posts & 4.945 Themen in 78 Foren
Forenübersicht » Suchergebnisse

Suchergebnisse 12 Treffer
Verfasst am 29.04.2013 - 23:41
Forenbeitrag von: porcky

Last Forum

ich habe das gemacht :




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

PHP-Quelltext

if(!defined('pkFRONTEND') || pkFRONTEND!='public')
    die(
'Direct access to this location is not permitted.');


// Anzahl der Threads die angezeigt werden sollen 
define('FORUMINFO_LIMIT',15);

// Thread Finish Status in den Threads angezeigt werden soll. FALSE ist aus und TRUE ist an geht aber nur wer Thread Finish installiert hat.
define('THREADFINISH',TRUE);

// Ab hier nichts mehr ändern !!!

$site_refresh .= '<link href="images/lastthread/lastthread.css" rel="stylesheet" type="text/css" />';
$site_refresh .= '<script type="text/javascript" src="images/lastthread/jquery.toogle.js"></script>';

$foruminfo_threads FORUMINFO_LIMIT;
pkLoadClass($FORUM,'forum');

$query $SQL->query("SELECT forumthread_id,forumthread_catid,forumthread_lastreply_time FROM ".pkSQLTAB_FORUM_THREAD."
    WHERE forumthread_status IN(1,2) AND forumthread_catid IN(0"
.implode(',',$FORUM->getCategories()).") AND forumthread_lastreply_time>'".pkGetUservalue('lastlog')."'");
        while(list(
$threadid,$catid,$time)=$SQL->fetch_row($query))
            {
                
$pkFORUMNEWTHREADS[$catid][$threadid] = $time;
            }

$query $SQL->query("SELECT threadid,rtime FROM ".pkSQLTAB_FORUM_THREAD_READED." WHERE sid='".$SQL->f($SESSION->getid())."'");
    while(list(
$threadid,$rtime)=$SQL->fetch_row($query))
        {
            
$pkFORUMREADEDTHREADS[$threadid] = $rtime;
        }
        
$lastthread_row '';    
$getforuminfo=$SQL->query("SELECT forumthread_id,forumthread_catid,forumthread_status,forumthread_replycount,forumthread_viewcount,forumthread_lastreply_time,forumthread_lastreply_autor,forumthread_lastreply_autorid,forumthread_title,forumthread_icon,forumthread_autor,forumthread_autorid,forumthread_finish
    FROM "
.pkSQLTAB_FORUM_THREAD."
        LEFT JOIN "
.pkSQLTAB_FORUM_CATEGORY." ON forumcat_id=".pkSQLTAB_FORUM_THREAD.".forumthread_catid
            WHERE("
.sqlrights(pkSQLTAB_FORUM_CATEGORY.".forumcat_rrights")." OR ".pkSQLTAB_FORUM_CATEGORY.".forumcat_mods LIKE '%-".pkGetUservalue('id')."-%' OR ".pkSQLTAB_FORUM_CATEGORY.".forumcat_user LIKE '%-".pkGetUservalue('id')."-%')
                ORDER by "
.pkSQLTAB_FORUM_THREAD.".forumthread_lastreply_time
                    DESC LIMIT "
.FORUMINFO_LIMIT."");
                        while(
$foruminfo=$SQL->fetch_array($getforuminfo))
                            {
                                
$getforumcatinfo $SQL->query("SELECT forumcat_id,forumcat_subcat,forumcat_name,forumcat_replys,forumcat_views,forumcat_posts FROM ".pkSQLTAB_FORUM_CATEGORY." WHERE forumcat_id='".$SQL->i($foruminfo['forumthread_catid'])."'");
                    
                                
$forumcatinfo $SQL->fetch_array($getforumcatinfo);
                                
                                
$forumcatinfo['result'] = '<a class="small" href="?path=forumscategory&amp;catid='.$forumcatinfo['forumcat_id'].'">'.$forumcatinfo['forumcat_name'].'</a>';
                                
$forumsubcatinfo['result'] = '';
                                
$forumsubcatinfo['forumcat_subcat'] = $forumcatinfo['forumcat_subcat'];
                                    while(
$forumsubcatinfo['forumcat_subcat'] > 0)
                                        {
                                            
$getforumsubcatinfo $SQL->query("SELECT forumcat_id,forumcat_subcat,forumcat_name FROM ".pkSQLTAB_FORUM_CATEGORY." WHERE forumcat_id=".$SQL->i($forumsubcatinfo['forumcat_subcat'])."");
                                            
$forumsubcatinfo=$SQL->fetch_array($getforumsubcatinfo);
                                            
$forumsubcatinfo['result'] = '<a class="small" href="?path=forumscategory&amp;catid='.$forumsubcatinfo['forumcat_id'].'">'.$forumsubcatinfo['forumcat_name'].'</a> - '.$forumsubcatinfo['result'];
                                        }
                
                                
$forumthread_icon = empty($foruminfo['forumthread_icon']) ? '' '&nbsp;<img src="images/icons/'.basename($foruminfo['forumthread_icon']).'" alt="Threadstatus Icon" title="Threadstatus Icon" />';
                                
$threadstatus $foruminfo['forumthread_status']==|| $foruminfo['forumthread_status']=='close' 'open';
                                
$threadstatus .= ($foruminfo['forumthread_status']==|| $foruminfo['forumthread_status']==3) ? 'fixed' '';  
                
                                
$countforumposts $SQL->fetch_array($SQL->query("SELECT COUNT(forumpost_autorid) FROM ".pkSQLTAB_FORUM_POST." WHERE forumpost_autorid = '".$SQL->f(pkGetUservalue('id'))."' AND forumpost_threadid = '".$SQL->i($foruminfo['forumthread_id'])."'"));
// Eigenpost by PimpYourKiT.de
                                
$mypost    = ($countforumposts[0] > 0) ? '<img src="images/lastthread/mypost.png" alt="Du hast in diesem Forenthread selbst schon '.$countforumposts[0].' mal etwas geschrieben." title="Du hast in diesem Forenthread selbst schon '.$countforumposts[0].' mal etwas geschrieben." style="width:18px;height:18px;border-style:none" />' '';
// Eigenpost by PimpYourKiT.de
// Anhang by PimpYourKiT.de    
                                
$attachment '';
                                
$anhangforumatts $SQL->fetch_array($SQL->query("SELECT COUNT(forumpost_forumatt_file) FROM ".pkSQLTAB_FORUM_POST." WHERE forumpost_threadid = '".intval($foruminfo['forumthread_id'])."' AND forumpost_forumatt_file != ''"));

                                
$anhangforumatts $anhangforumatts[0];
                                if (
$anhangforumatts==1
                                    
$attachment '<img src="images/lastthread/attachment.png" alt="In diesem Forenthread gibt es '.$anhangforumatts.' Anhang." title="In diesem Forenthread gibt es '.$anhangforumatts.' Anhang." style="width:18px;height:18px;border-style:none" />';

                                elseif (
$anhangforumatts>1
                                    
$attachment '<img src="images/lastthread/attachment.png" alt="In diesem Forenthread gibt es '.$anhangforumatts.' Anh&auml;nge." title="In diesem Forenthread gibt es '.$anhangforumatts.' Anh&auml;nge." style="width:18px;height:18px;border-style:none" />';

// Anhang by PimpYourKiT.de
// Forumsumfrage by PimpYourKiT.de
                                
$forumumfrage '';
                                if (
$foruminfo['forumthread_votestatus'] > && $foruminfo['forumthread_votetitle'] != "")
                                    
$forumumfrage '<img src="images/lastthread/poll.png" alt="Umfrage" title="Umfrage" style="width:20px;height:20px;border-style:none" />';
                                elseif (
$foruminfo['forumthread_votestatus'] == && $foruminfo['forumthread_votetitle'] != "")
                                    
$forumumfrage '<img src="images/lastthread/poll_close.png" alt="Umfrage Geschlossen" title="Umfrage Geschlossen" style="width:20px;height:20px;border-style:none" />';
// Forumsumfrage by PimpYourKiT.de
// Bedankomat in der &Uuml;bersicht
                                
$bedankomat '';
                                
$ThankInfosLoad=$SQL->fetch_array($SQL->query("SELECT COUNT(thank_revive) FROM ".pkSQLPREFIX."_forumthanks WHERE thank_foruser='".pkgetuservalue('id')."' && thank_threadid='".$foruminfo['forumthread_id']."' LIMIT 1 "));  
                            
                                if (
$ThankInfosLoad[0]>0)
                                    
$bedankomat '<a class="small" href="?path=forumsthread&amp;threadid='.$foruminfo['forumthread_id'].'"><img src="images/lastthread/thumb.png" alt="Du hast in diesem Forenthread '.$ThankInfosLoad[0].' Danke Klick(s) erhalten." title="Du hast in diesem Forenthread '.$ThankInfosLoad[0].' Danke Klick(s) erhalten." style="width:18px;height:18px;border-style:none" /></a>'
// Bedankomat in der &Uuml;bersicht
// Forum Pr&auml;fix by PimpYourKiT.de
                                
$praefix_name '';
                                
$getpraefix=$SQL->fetch_array($SQL->query("SELECT forumthread_praefix FROM ".pkSQLTAB_FORUM_THREAD." WHERE forumthread_id = '".$foruminfo['forumthread_id']."'"));

                                if (!empty(
$getpraefix['forumthread_praefix'])) 
                                    {
                                        
$showpraefix=$SQL->fetch_array($SQL->query("SELECT * FROM ".pkSQLPREFIX."_forumpraefix WHERE id = '".$SQL->i($getpraefix['forumthread_praefix'])."'"));
                                        
$praefix_farbe    stripslashes($showpraefix['color']);
                                        
$praefix_name    '<font style="color:#'.$praefix_farbe.';" class="left"><b>['.stripslashes($showpraefix['praefix']).']</b></font><br />';
                                    }
// Forum Pr&auml;fix by PimpYourKiT.de
// Thread Finish by PimpYourKiT.de
                                
if(THREADFINISH == true)
                                    {
                                        
$thread_finish '';
                                        if(
$foruminfo['forumthread_finish'] == 2)
                                            
$thread_finish '<img src="images/lastthread/atwork.png" alt="Beitrag ist in Arbeit" title="Beitrag ist in Arbeit" style="width:18px;height:18px;border-style:none" />';
            
                                        if(
$foruminfo['forumthread_finish'] == 2)
                                            
$thread_finish '<img src="images/lastthread/finish.png" alt="Beitrag ist Erledigt" title="Beitrag ist Erledigt" style="width:18px;height:18px;border-style:none" />';
                                    }
// Thread Finish by PimpYourKiT.de

                                
$newpostlink '';
                                if(
$FORUM->isUnreadedThread($foruminfo['forumthread_catid'],$foruminfo['forumthread_id'],$foruminfo['forumthread_lastreply_time']))
                                    {
                                        
$threadstatus.='new';
                                        
$newpostlink '<img src="images/lastthread/new.png" alt="Threadstatus" title="Threadstatus" style="width:20px;height:9px;border-style:none" />';
                                    }
                            
                                if(
$foruminfo['forumthread_replycount']>=$forumcatinfo['forumcat_replys'] || $foruminfo['forumthread_viewcount']>=$forumcatinfo['forumcat_views'])
                                
$threadstatus.='hot';

                                
$getforumpostinfo=$SQL->query("SELECT forumpost_time FROM ".pkSQLTAB_FORUM_POST." WHERE forumpost_threadid='".$SQL->i($foruminfo['forumthread_id'])."' ORDER BY forumpost_id LIMIT 1");
                                
$forumpostinfo=$SQL->fetch_array($getforumpostinfo);
                                
                                
$forumpost_firstpost_time=formattime($forumpostinfo['forumpost_time']);

                                
$gotoseite 0;
                                if(
$foruminfo['forumthread_replycount'] > $forumcatinfo['forumcat_posts'])
                                    {
                                        
$threadseite '&nbsp;&nbsp;[Seite:';
                                        
$count 0;
                                        
$countto $foruminfo['forumthread_replycount'] / $forumcatinfo['forumcat_posts'];
                                            while(
$count $countto)
                                                {
                                                    
$viewseite $count 1;
                                                    
$gotoseite $count $forumcatinfo['forumcat_posts'];
                                                    
$threadseite .= '<a class="small" href="?path=forumsthread&amp;threadid='.$foruminfo['forumthread_id'].'&amp;entries='.$gotoseite.'">'.$viewseite.'</a>';
                                                    
$count++;
                                                }

                                        
$threadseite .= ']';
                                    }
                                else
                                    {
                                        
$threadseite '';
                                    }
                    
                                
$getforumpostinfo=$SQL->query("SELECT forumpost_id FROM ".pkSQLTAB_FORUM_POST." WHERE forumpost_threadid='".$SQL->i($foruminfo['forumthread_id'])."' ORDER BY forumpost_id DESC LIMIT 1");
                                
$forumpostinfo=$SQL->fetch_array($getforumpostinfo);
                                
$foruminfo_icon['icon_last_link'] = '<a href="?path=forumsthread&amp;threadid='.$foruminfo['forumthread_id'].'&amp;entries='.$gotoseite.'#post'.$forumpostinfo['forumpost_id'].'"><img src="images/lastthread/newpost.png" alt="Zum letzten Beitrag" title="Zum letzten Beitrag" style="width:18px;height:18px;border-style:none" /></a>';  
                                
$foruminfo_lastreply_time formattime($foruminfo['forumthread_lastreply_time']);

                                eval (
"\$lastthread_row.= \"".pktpl("forum/lastthread_row")."\";");
                            }
                            
eval (
"\$site_body.= \"".pktpl("forum/lastthread")."\";");
?>

 Last Forum
Verfasst am 29.04.2013 - 22:48
Forenbeitrag von: porcky

Last Forum

http://www.pimpyourkit.de/filebase/index.php?page=Entry&entryID=132 nur laut anleitung funtz das nicht !


download link. http://38clan.de/download/Forum_Last%20_Threads.rar

 Last Forum
Verfasst am 29.04.2013 - 22:00
Forenbeitrag von: porcky

Last Forum

giebt es ein einfache aleitung wie man sich bei phpkit ein Last Forum box installiert !

 Last Forum
Verfasst am 26.04.2013 - 16:02
Forenbeitrag von: porcky

TS und Gameserver Slider PHPkit 1.6.5

nochmal danke für deine hilfe nice forum  

 TS und Gameserver Slider PHPkit 1.6.5
Verfasst am 25.04.2013 - 22:15
Forenbeitrag von: porcky

TS und Gameserver Slider PHPkit 1.6.5

lol nein... vielleicht hast du xfier, icq oder facebook ich komme erlich nicht weiter....und es haben mehr gesagt das deine anleitung top ist nur wir kommen nicht weiter.....bei ilch hatte ich die slider in 5 min drin !

thx im voraus

 TS und Gameserver Slider PHPkit 1.6.5
Verfasst am 25.04.2013 - 22:00
Forenbeitrag von: porcky

TS und Gameserver Slider PHPkit 1.6.5

Zitat
Original geschrieben von porcky

ich werde das gleich nochmal auf mein root server testen da habe ich auch ein webserver laufen !





ps kann man dich auch privat ansprechen ?

 TS und Gameserver Slider PHPkit 1.6.5
Verfasst am 25.04.2013 - 21:58
Forenbeitrag von: porcky

TS und Gameserver Slider PHPkit 1.6.5

ich werde das gleich nochmal auf mein root server testen da habe ich auch ein webserver laufen !

 TS und Gameserver Slider PHPkit 1.6.5
Verfasst am 25.04.2013 - 20:23
Forenbeitrag von: porcky

TS und Gameserver Slider PHPkit 1.6.5

ich habe alle datein geändert aber auf meiner startseiten ändert sich nichts ! ich habe gute freunde gefragt die sich mit php sehr gut aus kennen sie sind der meinung es liegt an mein webserver ! http://www.one.com ich hatte schon bei ilch sehr viele probleme !!

 TS und Gameserver Slider PHPkit 1.6.5
Verfasst am 25.04.2013 - 12:57
Forenbeitrag von: porcky

TS und Gameserver Slider PHPkit 1.6.5

ich habe mir die anleitung mehr mals gut durch gelesen, aber ich kann einfach den fehler nicht finden    

 TS und Gameserver Slider PHPkit 1.6.5
Verfasst am 24.04.2013 - 21:09
Forenbeitrag von: porcky

TS und Gameserver Slider PHPkit 1.6.5

danke soweit habe ich den slieder einaun können nur er zeigt mir immer noch ein fehler {_boxes_tsviewer} irgentwas mache ich noch falsch

meine website http://www.38clan.de

 TS und Gameserver Slider PHPkit 1.6.5
 Seiten (2):    1     2    Next    >  
12 Treffer
Zur Zeit sind 795 Benutzer online:
2 Mitglieder und 793 Besucher - Rekord: 1814 Benutzer (Samstag, 14. Januar 2023, 07:00)
Botty, Bottyline
Statistik:
6.222 Mitglieder - 4.945 Themen - 56.674 Beiträge (8 Beiträge pro Tag)
Unser neuestes Mitglied heißt: HKS-CLAN

Open

New Posts

Closed
Heute haben folgende Mitglieder Geburtstag:
Das Team von HTH-C.com wünscht einen schönen Geburtstag.
tezabielskyevet (93), Sasch77 (48), Bruchwurst (48), Bruchi (48), Bas-83 (42), SpeedySC1978 (47), djdaiz (47), ichbins (61)

HTH-C.com - Webmedien & Community