Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 8
Seite [1]
z13l5ch31b3


Wannabe poster





Beiträge: 33
# Thema - 27.05.2011 um 14:43 Uhr
Bei beiden habe ich schon mittels SuFu versucht es zu lösen. Jedoch bin ich durch die Posts auch nicht schlauer geworden.

Wie stelle ich die navlisttop so ein das der aktell gepostete Beitrag auf der Frontseite angezeigt wird

und

wie kann ich in der Shoutbox die Uhrzeit mit anzeigen lassen ? Habe schon in dem shoutbox ordner in den Dateien gewuselt aber finde weder eine Schlaufe wo ich etwas eintragen soll noch sonstwas.

Verstehe nur Bahnhof und sehe den Wald vor Bäumen nicht. Danke für hilfreiche Antworten.


------------------
CoD:MW:R 4405-4675-7416
CoD:BO 0467-4973-9830

Inaktiv
Swifter


Specialist





Beiträge: 1841
# Antwort: 1 - 27.05.2011 um 15:34 Uhr
Shoutbox:
http://www.csphere.eu/index/board/thread/where/3302


------------------
Greetz Swifter


Wenn du dich klein, nutzlos, beleidigt und depressiv fühlst, denke immer daran: Du warst einmal das schnellste und erfolgreichste Spermium deiner Gruppe!


Inaktiv
|
z13l5ch31b3
Thread-Ersteller


Wannabe poster





Beiträge: 33
# Antwort: 2 - 27.05.2011 um 15:48 Uhr
Zu Frage 2:

Habe unter ~/themes/ keinen Shoutbox Eintrag, lediglich user,news und wars . Und im ~/mods/shoutbox sind nr php Dateien. Aber danke schonmal für den Link, auch wenn ich nicht weiß wo ich ihn hinstecken soll .


------------------
CoD:MW:R 4405-4675-7416
CoD:BO 0467-4973-9830



Inaktiv
|
Swifter


Specialist





Beiträge: 1841
# Antwort: 3 - 27.05.2011 um 15:55 Uhr
themes\base\shoutbox\navlist.tpl ...

Die muss da sein, sonst hast du anscheinend nicht alles hochgeladen


------------------
Greetz Swifter


Wenn du dich klein, nutzlos, beleidigt und depressiv fühlst, denke immer daran: Du warst einmal das schnellste und erfolgreichste Spermium deiner Gruppe!


Inaktiv
|
z13l5ch31b3
Thread-Ersteller


Wannabe poster





Beiträge: 33
# Antwort: 4 - 28.05.2011 um 00:09 Uhr
thnx , wäre das mit der Shoutbox erfolgreich gelöst ...

Zu 1)
http://www.csphere.eu/index/board/thread/where/15367 ist das Problem beschrieben,.. allerdings brauche ich nur die aktuellen letzten 2 Posts.

Bei diesem Codepaste ( http://www.csphere.eu/downloads/codepaste/view/id/151 ) tut sich gorn ix auf der page.


------------------
CoD:MW:R 4405-4675-7416
CoD:BO 0467-4973-9830



Zuletzt editiert von z13l5ch31b3 am 28.05.2011 um 11:35 Uhr (2x Editiert)
Inaktiv
|
z13l5ch31b3
Thread-Ersteller


Wannabe poster





Beiträge: 33
# Antwort: 5 - 31.05.2011 um 14:38 Uhr
*push*


------------------
CoD:MW:R 4405-4675-7416
CoD:BO 0467-4973-9830



Inaktiv
|
Swifter


Specialist





Beiträge: 1841
# Antwort: 6 - 31.05.2011 um 14:58 Uhr
probier mal des hier: http://www.csphere.eu/index/board/thread/where/11561


------------------
Greetz Swifter


Wenn du dich klein, nutzlos, beleidigt und depressiv fühlst, denke immer daran: Du warst einmal das schnellste und erfolgreichste Spermium deiner Gruppe!


Inaktiv
|
z13l5ch31b3
Thread-Ersteller


Wannabe poster





Beiträge: 33
# Antwort: 7 - 03.06.2011 um 18:30 Uhr
Habe mit dem Link experimentiert und nicht darauf geachtet das "Frage2" bei ihm etwas mit den News regelt. Seitherr habe ich einen Anzeigefehler und kriege ihn nicht behoben:


Hilfe wäre nett,
mein eigentliches Problem ist leider ebenfalls nicht behoben.

/edit:mods/board/navlist.php +-
<?php
// ClanSphere 2010 - www.clansphere.net
// $Id$

$cs_lang = cs_translate('board');
$cs_get = cs_get('catid');
$cs_option = cs_sql_option(__FILE__,'board');
require_once 'mods/board/functions.php';

$cs_usertime = cs_sql_select(__FILE__,'users','users_readtime',"users_ id = '" . $account["users_id"] . "'");
$cs_readtime = cs_time() - $cs_usertime['users_readtime'];

$data = array();

$tables = 'threads thr INNER JOIN {pre}_board frm ON frm.board_id = thr.board_id ';
$tables .= 'LEFT JOIN {pre}_read red ON thr.threads_id = red.threads_id AND red.users_id = \''.$account['users_id'].'\'';
$cells = 'thr.threads_headline AS threads_headline, thr.threads_id AS threads_id, ';
$cells .= 'thr.threads_last_time AS threads_last_time, frm.board_name AS board_name, frm.board_id AS board_id';
$cond = 'frm.board_access <= \''.$account['access_board'].'\' AND frm.board_pwd = \'\'';
if(!empty($account['users_id'])) {
$cond .= ' AND thr.threads_last_time > \'' . $cs_readtime . '\' AND (thr.threads_last_time > red.read_since OR red.threads_id IS NULL)';
}
if(!empty($cs_get['catid'])) {
$cond .= ' AND frm.categories_id = ' . $cs_get['catid'];
}
$order = 'thr.threads_last_time DESC';
$data['threads'] = cs_sql_select(__FILE__,$tables,$cells,$cond,$order,0,$cs_option['max_navlis t']);

if(empty($data['threads'])) {
echo $cs_lang['no_new_posts'];
}
else {
$count_threads = count($data['threads']);

for ($run = 0; $run < $count_threads; $run++) {
$data['threads'][$run]['threads_date'] = cs_date('unix',$data['threads'][$run]['threads_last_tim e'],1);
$data['threads'][$run]['threads_headline_short'] = strlen($data['threads'][$run]['threads_headline']) <= $cs_option['max_headline'] ? $data['threads'][$run]['threads_headline'] : cs_substr($data['threads'][$run]['threads_headline'],0,$cs_o ption['max_headline']-2) . '..';
$data['threads'][$run]['threads_headline_short'] = cs_secure($data['threads'][$run]['threads_headline_short']);
$data['threads'][$run]['threads_headline'] = cs_secure($data['threads'][$run]['threads_headline']);
$data['threads'][$run]['new_posts'] = last_comment($data['threads'][$run]['threads_id'], $account["users_id"], $account['users_limit']);
}
echo cs_subtemplate(__FILE__,$data,'board','navlist');
}


mods/board/navlist.tpl +-
<?php
// ClanSphere 2010 - www.clansphere.net
// $Id$

$cs_lang = cs_translate('board');
$cs_get = cs_get('catid');
$cs_option = cs_sql_option(__FILE__,'board');
require_once 'mods/board/functions.php';


$data = array();

$tables = 'threads thr INNER JOIN {pre}_board frm ON frm.board_id = thr.board_id';
$cells = 'thr.threads_headline AS threads_headline, thr.threads_id AS threads_id, ';
$cells .= 'thr.threads_last_time AS threads_last_time, frm.board_name AS board_name, frm.board_id AS board_id';
$cond = 'frm.board_access <= \''.$account['access_board'].'\' AND frm.board_pwd = \'\'';

if(!empty($cs_get['catid'])) {
$cond .= ' AND frm.categories_id = ' . $cs_get['catid'];
}
$order = 'thr.threads_id DESC';
$data['threads'] = cs_sql_select(__FILE__,$tables,$cells,$cond,$order,0,$cs_option['max_navlis t']);

if(empty($data['threads'])) {
echo $cs_lang['no_new_posts'];
}
else {
$count_threads = count($data['threads']);

for ($run = 0; $run < $count_threads; $run++) {
$data['threads'][$run]['threads_date'] = cs_date('unix',$data['threads'][$run]['threads_last_tim e'],1);
$data['threads'][$run]['threads_headline_short'] = strlen($data['threads'][$run]['threads_headline']) <= $cs_option['max_headline'] ? $data['threads'][$run]['threads_headline'] : cs_substr($data['threads'][$run]['threads_headline'],0,$cs_o ption['max_headline']-2) . '..';
$data['threads'][$run]['threads_headline_short'] = cs_secure($data['threads'][$run]['threads_headline_short']);
$data['threads'][$run]['threads_headline'] = cs_secure($data['threads'][$run]['threads_headline']);
$data['threads'][$run]['new_posts'] = last_comment($data['threads'][$run]['threads_id'], $account["users_id"], $account['users_limit']);
}
echo cs_subtemplate(__FILE__,$data,'board','navlist');
}

http://fighturnext.cwsurf.de/index.php?mod=news&action=recent


------------------
CoD:MW:R 4405-4675-7416
CoD:BO 0467-4973-9830



Zuletzt editiert von z13l5ch31b3 am 04.06.2011 um 11:11 Uhr (2x Editiert)
Inaktiv
|
z13l5ch31b3
Thread-Ersteller


Wannabe poster





Beiträge: 33
# Antwort: 8 - 08.06.2011 um 12:21 Uhr
*push*

Ich habe hier wirklich arge Probleme auf der Site... weiß denn niemand was anscheinend in der tpl für die LastNews oder sonstwo schief gelaufen ist ?






Okay ich bin soweit das ich herausgefunden habe das es an der Datei: themes/$template$/navlist.tpl liegt.
Hier bräuchte ich nun eure Hilfe.


------------------
CoD:MW:R 4405-4675-7416
CoD:BO 0467-4973-9830



Zuletzt editiert von z13l5ch31b3 am 09.06.2011 um 12:11 Uhr (3x Editiert)
Inaktiv
|
Antworten: 8
Seite [1]


Sie müssen sich registrieren, um zu antworten.