Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 25
Seite < 1 [2]
skyline
Thread-Ersteller


Rock the board




Beiträge: 83
# Antwort: 21 - 21.10.2007 um 06:00 Uhr
Die hab ich von einem Standard-Design übernommen.


Inaktiv
|
Fr33z3m4n ClanSphere Team


Medal of Honor




Herkunft: Hamm
Beiträge: 11094
# Antwort: 22 - 21.10.2007 um 10:33 Uhr
{shoutbox:navlist} in der debug.htm platzieren.


------------------
mfg
Patrick "Fr33z3m4n" Jaskulski

Antoine de Saint-Exupéry: Wenn Du ein Schiff bauen willst, so trommle nicht Männer zusammen, um Holz zu beschaffen, Aufgaben zu verteilen, sondern lehre die Männer die Sehnsucht nach dem endlosen weiten Meer.

Inaktiv
|
skyline
Thread-Ersteller


Rock the board




Beiträge: 83
# Antwort: 23 - 21.10.2007 um 17:07 Uhr
SELECT options_name, options_value FROM cs_options WHERE options_mod = 'clansphere'
SELECT * FROM cs_access WHERE access_id = '1' LIMIT 0,1
SELECT count_id, count_time FROM cs_count WHERE count_ip = '77.181.198.25' ORDER BY count_id DESC LIMIT 0,1
UPDATE cs_count SET count_time='1192964399', count_location='shoutbox/list' WHERE count_id='276'
SELECT options_name, options_value FROM cs_options WHERE options_mod = 'counter'
SELECT COUNT(*) FROM cs_shoutbox
SELECT shoutbox_name, shoutbox_text, shoutbox_date FROM cs_shoutbox ORDER BY shoutbox_date DESC LIMIT 0,20
SELECT options_name, options_value FROM cs_options WHERE options_mod = 'abcode'
SELECT abcode_func, abcode_pattern, abcode_result, abcode_file FROM cs_abcode
SELECT metatags_id, metatags_name, metatags_content FROM cs_metatags WHERE metatags_active = 1 ORDER BY metatags_name


Inaktiv
|
Denni


Specialist




Herkunft: Ilsfeld
Beiträge: 1972
# Antwort: 24 - 21.10.2007 um 17:34 Uhr
optionen kannst doch einfach mit cs_sql_option(__FILE__,'shoutbox') auslesen


------------------
Gruß
Denni

ClanSphere - Makes your website a playmate, just dress her

Inaktiv
|
skyline
Thread-Ersteller


Rock the board




Beiträge: 83
# Antwort: 25 - 21.10.2007 um 22:59 Uhr
So hat es jetzt geklappt.
Hab der Code weiter unten eingefügt und dann ging es auf einmal.
Wieso denn das?

Wie geht das denn mit cs_sql_option(__FILE__,'shoutbox')?

 
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.
1. / 2. / ... 
<?php <?php 
// ClanSphere 2007 - www.clansphere.net  
// $Id: navlist.php 2007-08-01 17:00:00Z Drag0n $
  
$cs_lang cs_translate('shoutbox'); 

$captcha extension_loaded('gd') ? 0;
  
$shoutbox_count cs_sql_count(__FILE__,'shoutbox');
$shoutbox_options cs_sql_option(__FILE__,'shoutbox');


$data = array();

$data['shoutbox'] = '';

$min 0;

if (
$shoutbox_options['order'] == 'ASC') {
  
$order 'shoutbox_date ASC';
  
  if (
$shoutbox_count $shoutbox_options['limit']) {
    
$min $shoutbox_count $shoutbox_options['limit'];
  }
}
else
  
$order 'shoutbox_date DESC';
    
  
$cells 'shoutbox_name, shoutbox_text, shoutbox_date';
  
$data['shoutbox'] = cs_sql_select(__FILE__,'shoutbox',$cells,0,$order,$min,$shoutbox_options['limit']);

  
$pattern "=([^\s*?]{".$shoutbox_options['linebreak']."})(?![^<]+>|[^&]*;)=";
  
$count_shoutbox count($data['shoutbox']);

  for(
$i 0$i $count_shoutbox$i++) {
    
$temp preg_replace($pattern,"\\0 ",$data['shoutbox'][$i]['shoutbox_text']);
    
$data['shoutbox'][$i]['shoutbox_text'] = cs_secure($temp,0,1,0);
    
$data['shoutbox'][$i]['shoutbox_name'] = cs_secure($data['shoutbox'][$i]['shoutbox_name'],0,0,0);
    
$data['shoutbox'][$i]['shoutbox_date'] = cs_date('unix',$data['shoutbox'][$i]['shoutbox_date'],1);
  }

  
$data['op'] = cs_sql_select(__FILE__,'options','options_value',"options_mod = 'shoutbox' AND options_name = 'height'");
  
$data['form']['url'] = cs_url('shoutbox','create');
  
$data['form']['nick'] = empty($account['users_nick']) ? 'Nick' cs_secure($account['users_nick']);
  
  if(!empty(
$captcha) && empty($account['users_id'])) {
    
$data['form']['captcha'] = cs_html_img('mods/captcha/generate.php?mini');
    
$data['form']['captcha'] .= cs_html_input('captcha','','text',3,3);
  }
  else {
    
$data['form']['captcha'] = '';
  }

  
$data['url']['archieve'] = cs_url('shoutbox','list');
  
$data['form']['uri'] = cs_secure($_SERVER['REQUEST_URI']);
  
$data['abcode']['smileys'] = cs_abcode_smileys('sh_text');
  
  echo 
cs_subtemplate(__FILE__,$data,'shoutbox','navlist');
?> ?>


Inaktiv
|
Antworten: 25
Seite < 1 [2]


Sie müssen sich registrieren, um zu antworten.