Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 4
Seite [1]
Der Krapfenmann


Beginner




Beiträge: 11
# Thema - 15.01.2010 um 18:48 Uhr
Hallo =)

Ich hab ein kleines Problem festgestellt und konnte es niergends lösen. Vieleicht könnt ihr mir helfen denn ich bin kein Profi.

Im Clansphere Modul "Kategorien" hab ich für die News, Shortnews ect. Kategorien erstellt, die alle ein Bild haben, das 282 x 62 (maximalgröße) groß ist.
Nun wollte ich das für die Kategorien im Forum auch machen, damit dort nicht mehr einfach nur der Name steht, sondern auch ein Bild.

Leider werden die Bilder dazu nicht angezeigt, wenn ich die Forumübersicht anzeige (glaube /board/list ist das). Das funktioniert ebanfalls nicht in den Unterkategorien des Forums. Man kann zwar Bilder zu den einzelnen Kathegorien hochladen, werden aber nicht angzeigt.

Wie gesagt ich kenn mich nicht sonderlich damit aus und die forumsuche hat mir auch nicht geholfen^^ Kann auch sein, dass in der list.php dort einfach nicht das Kategoriebild abgefragt wird?

Vieleicht liegt der Fehler dort oder das Cathegorie Bild fehlt ganz (reine Vermutung^^) daher hab ich den Quellcode der board/list.php mal hier im Klapptext drin.

mehr... +-
 
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.
1. / 2. / ... 
<?php
// ClanSphere 2009 - www.clansphere.net
// $Id: list.php 2911 2009-04-24 18:27:30Z hajo $

$cs_lang cs_translate('board');

$options cs_sql_option(__FILE__'board');

require 
'mods/categories/functions.php';
 
$data = array();

$unread_array = array();

if(!empty(
$account['users_id'])) {

  
# clear old read data that is no longer needed for checks
  
$cs_usertime cs_sql_select(__FILE__'users''users_readtime'"users_id = '" $account["users_id"] . "'");
  
$cs_readtime cs_time() - $cs_usertime['users_readtime'];
  
cs_sql_query(__FILE__"DELETE FROM {pre}_read WHERE users_id = '" $account['users_id'] . "' AND read_since < '" $cs_readtime "'");

  
# fetch unread threads grouped per board for later checks
  
$tables 'threads thr LEFT JOIN {pre}_read red ON thr.threads_id = red.threads_id AND red.users_id = ' $account['users_id'];
  
$needed "thr.threads_last_time > '" $cs_readtime "' AND (red.threads_id IS NULL OR thr.threads_last_time > red.read_since)" .
          
' AND thr.threads_ghost = 0 GROUP BY thr.board_id';
  
$values 'thr.board_id AS board_id';
  
$unread cs_sql_select(__FILE__$tables$values$needed000);
  
$unread is_array($unread) ? $unread : array();
  foreach(
$unread AS $untop => $unboard) {
    
$unread_array['' $unboard['board_id'] . ''] = 0;
  }
}

$categories_id = empty($_GET['id']) ? : (int)$_GET['id'];

$where "categories_mod = 'board' AND categories_access <= " $account['access_board'];
$select 'categories_name, categories_id, categories_subid';
$order 'categories_subid ASC, categories_order ASC, categories_name ASC';
$data['categories'] = cs_catsortcs_sql_select(__FILE__'categories'$select$where$order00), $categories_id);
$count_categories = empty($data['categories']) ? count($data['categories']); 

$data['if']['category'] = empty($categories_id) ? false true;

$data['category']['name'] = !empty($categories_id) ? $data['categories'][0]['categories_name'] : '';

for (
$run_1 0$run_1 $count_categories$run_1++) {

  
$data['categories'][$run_1]['list_url'] = cs_url('board''list''id=' $data['categories'][$run_1]['categories_id']);

  
$from "board boa LEFT JOIN {pre}_read red ON boa.board_last_threadid = red.threads_id AND red.users_id = " $account['users_id'] .
          
" LEFT JOIN {pre}_members mem ON boa.squads_id = mem.squads_id AND mem.users_id = " $account['users_id'];
  
$select 'boa.board_id AS board_id, boa.board_name AS board_name, boa.board_text AS board_text, boa.board_pwd AS board_pwd, ' .
            
'boa.board_threads AS board_threads, boa.board_comments AS board_comments, boa.board_access AS board_access,' .
            
'boa.board_last_time AS board_last_time, boa.board_last_user AS board_last_user, boa.board_last_userid AS board_last_userid,' 
            
'boa.board_last_thread AS board_last_thread, boa.board_last_threadid AS board_last_threadid, red.read_since AS read_since';
  
$where "categories_id = '" $data['categories'][$run_1]['categories_id'] . "' AND (board_access <= " .
           
$account['access_board'] . " OR mem.users_id = " $account['users_id'] . ")";
  
$order 'board_order ASC, board_name ASC';

  
$data['categories'][$run_1]['board'] = cs_sql_select(__FILE__$from$select$where$order00);

  if (empty(
$data['categories'][$run_1]['board']))
    
$data['categories'][$run_1]['board'] = array();


  
$data['categories'][$run_1]['blank'] = ''
  
$data['categories'][$run_1]['iconwidth'] = 36
  for (
$i 0$i $data['categories'][$run_1]['layer']; $i++) {
    
$data['categories'][$run_1]['blank'] .= '   » '
    
$data['categories'][$run_1]['iconwidth'] += 20
  }
  
  if (
$data['categories'][$run_1]['layer'] == || !empty($options['list_subforums'])) {
      
$data['categories'][$run_1]['if']['small_subforums'] = false;
      
$count_boards count($data['categories'][$run_1]['board']);

      for (
$run_2 0$run_2 $count_boards$run_2++) {
        
$board $data['categories'][$run_1]['board'][$run_2];
        
$board['listcat_url'] = cs_url('board''listcat''id=' $board['board_id']);

        
$check_pw 1;
        if (!empty(
$board['board_pwd'])) {
          
$pw_where 'users_id = "' $account['users_id'] . '" AND board_id = "' $board['board_id'] . '"';
          
$check_pw cs_sql_count(__FILE__'boardpws'$pw_where);
        }

        if (empty(
$check_pw)) {
          
$icon 'password';
        } else {
          
$icon 'board_read_';
        }

        if (!empty(
$check_pw)) {
          if (isset(
$unread_array['' $board['board_id'] . ''])) {
            
$icon 'board_unread_';
          }
        }

        
$board['icon'] = cs_html_img('symbols/board/' $icon '.png');
        
$board['board_text'] = cs_secure($board['board_text'], 1);

      
# new - set board_last_* content if empty
      
if(empty($board['board_last_threadid']) AND !empty($board['board_threads'])) {
        include_once 
'mods/board/repair.php';
        
$new cs_board_last($board['board_id']);
        
$board is_array($new) ? array_merge($board$new) : $board;
      }

        if(!empty(
$board['board_last_threadid']) and !empty($check_pw)) {
          
$board['last_name'] = cs_secure($board['board_last_thread']);
          
$board['board_last_id'] = $board['board_last_threadid'];

          if (empty(
$board['board_last_time']))
            
$board['last_time'] = '';
          else
            
$board['last_time'] = cs_date('unix'$board['board_last_time'], 1);

          if (empty(
$board['board_last_userid']))
            
$board['last_usernick'] = empty($board['board_last_user']) ? '-' cs_secure($board['board_last_user']);
          else
            
$board['last_usernick'] = cs_user($board['board_last_userid'], $board['board_last_user']);

          
$board['of'] = $cs_lang['of'];
        }
      else {
        if(empty(
$check_pw)) {
          
$board['board_threads'] = '-';
            
$board['board_comments'] = '-';
        }
          
$board['last_name'] = '';
          
$board['board_last_id'] = '';
          
$board['last_time'] = '';
          
$board['last_usernick'] = '';
          
$board['board_last_userid'] = '';
          
$board['of'] = '';
        }

        
$board['last_url'] = cs_url('board''thread''where=' $board['board_last_threadid']);
        
$board['user_url'] = cs_url('users''view''id=' $board['board_last_userid']);
        
$board['board_name'] = cs_secure($board['board_name']);
        
        
$data['categories'][$run_1]['board'][$run_2] = $board;
      }
  } else {
    
$data['categories'][$run_1]['subboard'] = $data['categories'][$run_1]['board'];
      
$data['categories'][$run_1]['board'] = array();
    
$data['categories'][$run_1]['if']['small_subforums'] = true;
    
$count_boards count($data['categories'][$run_1]['subboard']);
    
$count_boards_less $count_boards 1;
    
    for (
$j 0$j $count_boards$j++) {
        
$data['categories'][$run_1]['subboard'][$j][','] = $j != $count_boards_less ', ' '';
    }
  }
}

$data['head']['message'] = cs_getmsg();

echo 
cs_subtemplate(__FILE__$data'board''list',1);



Vieleicht kann mir jemand helfen wie ich doch die Bilder angezeigt bekomme? Weiss echt nicht so richtig weiter und meine 0815 Html Grundkenntnisse reichen dafür defenitiv nicht
Inaktiv
palle ClanSphere Team

Supporter
Supporter




Beiträge: 3073
# Antwort: 1 - 15.01.2010 um 18:50 Uhr
nutze doch bitte die suche..dazu gibt es schon mindestens einen thread zu

darf ich fragen was shortnews ist?


------------------
I like the part where it says 'nyan'



Zuletzt editiert von PAlle! ClanSphere Team am 15.01.2010 um 18:50 Uhr (1x Editiert)
Inaktiv
|
Der Krapfenmann
Thread-Ersteller


Beginner




Beiträge: 11
# Antwort: 2 - 15.01.2010 um 18:57 Uhr
Shortnews ist bei uns ein Modul. Naja es zeigt anstatt der großen Nachrichten auf der Startseite, 2 Kleine Nachrichten an mit 50% breite.

Da steht dann kurz zb: "Aktuelle Serverarbeiten dauern bis XX:XX UHR an" ... man kann dann auf weiterlesen klicken und sieht dann mehr infos dazu.
Haben wir mit News zb kombiniert um kurz Nachrichten raus zu geben.

Suche hatte ich bereits genutzt und jemand hatte das selbe problem. Allerdings hat mir das nicht weiter geholfen, da ich irgendwie keinen Plan von PhP habe. Oder gibt es noch mehr Themen dazu? Leider keines gefunden hmm...



Zuletzt editiert von Der Krapfenmann am 15.01.2010 um 19:04 Uhr (1x Editiert)
Inaktiv
|
palle ClanSphere Team

Supporter
Supporter




Beiträge: 3073
# Antwort: 3 - 15.01.2010 um 19:14 Uhr
dieses shortnews modul? hast du nicht zufaellig von einem gewissen herrn rapid erworben, oder ?

zu deinem
problem adde mich einfach mal in icq


------------------
I like the part where it says 'nyan'



Zuletzt editiert von PAlle! ClanSphere Team am 15.01.2010 um 19:15 Uhr (1x Editiert)
Inaktiv
|
Der Krapfenmann
Thread-Ersteller


Beginner




Beiträge: 11
# Antwort: 4 - 15.01.2010 um 19:20 Uhr
Hab dich mal geaddet. Danke^^

Edit: Ja die HP ist von Rapid. Ich bin zwar nur Clanmitglied und dort als Webmaster mit eingetragen, schau aber wie unsere HP zum laufen kommt. Denn Rapid ist irgendwie seid Dez verschollen und macht wohl für andere Clans die HP. Keine Ahnung ^^

Edit 2: Ok hat sich erledigt. Von daher kann das hier geschlossen werden.


Zuletzt editiert von Der Krapfenmann am 15.01.2010 um 19:45 Uhr (2x Editiert)
Inaktiv
|

Dieses Thema wurde von duRiel ClanSphere Team PM geschlossen.

Antworten: 4
Seite [1]