Demo

Probiere ClanSphere aus und teste daran herum. Demo


Gef
Super!
Ist gut, aber ich benutze es nicht!
Nicht gut!
Antworten: 150
Seite < 1 2 3 4 5 6 [7] 8 >
borchi


Geekboy



Herkunft: Berlin
Beiträge: 1231
# Antwort: 116 - 02.04.2007 um 16:56 Uhr
Öhm... dann kopier die mal in den Unterordner... wie sieht denn die options.php im Mod-Ordner aus?

Kann hier nicht selbst testen, aber müsste in der obersten Zeile: $cs_lang = cs_translate('abcode') stehen


------------------


Inaktiv
|
Pitti


Try to beat me




Herkunft: Rettenberg
Beiträge: 104
# Antwort: 117 - 02.04.2007 um 17:31 Uhr
hier die options.php +-
 
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.
1. / 2. / ... 
<?php
// ClanSphere 2006 - www.clansphere.net
// $Id: options.php 40 2006-06-26 00:46:53Z hajo $

$cs_lang cs_translate('abcode','options');

echo 
cs_html_table(1,'forum',1);
echo 
cs_html_roco(1,'headb');
echo 
$cs_lang['mod'] . ' - ' $cs_lang['head_options'];
echo 
cs_html_roco(0);
echo 
cs_html_roco(1,'leftb');
echo 
$cs_lang['body_options'];
echo 
cs_html_roco(0);
echo 
cs_html_table(0);
echo 
cs_html_br(1);

$op_abcode cs_sql_option(__FILE__,'abcode');

if(isset(
$_POST['submit'])) {

    
settype($_POST['max_width'],'integer');
    
settype($_POST['max_height'],'integer');
    
settype($_POST['max_size'],'integer');

  
$opt_where "options_mod = 'abcode' AND options_name = ";
  
$def_cell = array('options_value');
  
$def_cont = array($_POST['max_width']);
  
cs_sql_update(__FILE__,'options',$def_cell,$def_cont,0,$opt_where "'max_width'");
  
$def_cont = array($_POST['max_height']);
  
cs_sql_update(__FILE__,'options',$def_cell,$def_cont,0,$opt_where "'max_height'");
  
$def_cont = array($_POST['max_size']);
  
cs_sql_update(__FILE__,'options',$def_cell,$def_cont,0,$opt_where "'max_size'");
  
$def_cont = array($_POST['def_func']);
  
cs_sql_update(__FILE__,'options',$def_cell,$def_cont,0,$opt_where "'def_func'");
  
$def_cont = array(implode('#',$_POST['op_abcf']));
  
cs_sql_update(__FILE__,'options',$def_cell,$def_cont,0,$opt_where "'abc_features'");
    
        
    echo 
cs_html_table(1,'forum',1);
    echo 
cs_html_roco(1,'leftc');
    echo 
$cs_lang['changes_done'];
    echo 
cs_html_roco(0);
    echo 
cs_html_roco(1,'centerb');
    echo 
cs_link($cs_lang['continue'],'clansphere','system');
    echo 
cs_html_roco(0);
    echo 
cs_html_table(0);
}
else {
    
    echo 
cs_html_form (1,'abcode_options','abcode','options');
  echo 
cs_html_table(1,'forum',1);
  echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('resizecol') . $cs_lang['max_width'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_input('max_width',$op_abcode['max_width'],'text',4,4) . ' ' $cs_lang['pixel'];
  echo 
cs_html_roco(0);
    
  echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('resizerow') . $cs_lang['max_height'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_input('max_height',$op_abcode['max_height'],'text',4,4) . ' ' $cs_lang['pixel'];
  echo 
cs_html_roco(0);

  echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('fileshare') . $cs_lang['max_size'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_input('max_size',$op_abcode['max_size'],'text',20,8) . ' ' $cs_lang['bytes'];
  echo 
cs_html_roco(0);

  echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('completion') . $cs_lang['def_func'];
  echo 
cs_html_roco(2,'leftb');
    
$abc[0]['def_func'] = 'img';
    
$abc[0]['name'] = $cs_lang['img'];
    
$abc[1]['def_func'] = 'str';
    
$abc[1]['name'] = $cs_lang['str'];
    echo 
cs_dropdown('def_func','name',$abc,$op_abcode['def_func']);
  echo 
cs_html_roco(0);
    
    
/////////////////SCHIRIS ABCODE ADDON ///////////
    
$feature_settings_select=cs_sql_select(__FILE__,'options','options_value',"options_name = 'abc_features'");
  
$feature_settings=explode("#",$feature_settings_select['options_value']);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['table_replace'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',1,'checkbox',in_array("1"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['user_link'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',2,'checkbox',in_array("2"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['user_flag'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',3,'checkbox',in_array("3"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['user_pic'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',4,'checkbox',in_array("4"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['user_flag_space'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',5,'checkbox',in_array("5"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['map_replace'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',6,'checkbox',in_array("6"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['intern_replace'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',7,'checkbox',in_array("7"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['game_symbol'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',8,'checkbox',in_array("8"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['info_replace'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',9,'checkbox',in_array("9"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['countrys_flagging'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',10,'checkbox',in_array("10"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['country_flag_space'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',11,'checkbox',in_array("11"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['flag_replace'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',12,'checkbox',in_array("12"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['war_replace'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',13,'checkbox',in_array("13"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['language_funktion'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',14,'checkbox',in_array("14"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    echo 
cs_html_roco(1,'leftc');
  echo 
cs_icon('table') . $cs_lang['link_replace'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('op_abcf[]',15,'checkbox',in_array("15"$feature_settings)? 0);
  echo 
cs_html_roco(0);
    
    
    
    
////////////////////////////////////////////////
    
  
echo cs_html_roco(1,'leftc');
  echo 
cs_icon('ksysguard') . $cs_lang['options'];
  echo 
cs_html_roco(2,'leftb');
  echo 
cs_html_vote('submit',$cs_lang['edit'],'submit');
  echo 
cs_html_vote('reset',$cs_lang['reset'],'reset');
  echo 
cs_html_roco(0);
  echo 
cs_html_table(0);
  echo 
cs_html_form (0);
}

?>


in der Zeile die du meinst steht also ein 'options' zu viel drinne


Inaktiv
|
borchi


Geekboy



Herkunft: Berlin
Beiträge: 1231
# Antwort: 118 - 02.04.2007 um 17:36 Uhr
Genau, lösch mal das options dort und versuchs mal.

Bei CS sind alle Lang-Dateien zusammengefasst, das Addon war wohl mal nur für BXCP.


------------------


Inaktiv
|
Pitti


Try to beat me




Herkunft: Rettenberg
Beiträge: 104
# Antwort: 119 - 02.04.2007 um 18:18 Uhr
das options ist jetzt gelöscht, aber es kommt immer noch der Spruch
ClanSphere - System
Wichtige Informationen und Einstellungen.

und nicht die Verwaltung bzw. System


Zuletzt editiert von Pitti am 02.04.2007 um 18:22 Uhr (1x Editiert)
Inaktiv
|
borchi


Geekboy



Herkunft: Berlin
Beiträge: 1231
# Antwort: 120 - 02.04.2007 um 18:47 Uhr
^^ Mmmh...

Sehr merkwürdig. Weiß ich grad auch nicht weiter


------------------


Inaktiv
|
Pitti


Try to beat me




Herkunft: Rettenberg
Beiträge: 104
# Antwort: 121 - 02.04.2007 um 18:59 Uhr
ich habe jetzt mal wieder alles rausgenommen und in den Ursprungszustand von RC3 gebracht

jetzt habe ich halt nicht mehr die schönen Länderflaggen vor den Nicks usw
wird aber bestimmt was für RC3 kommen oder ?


Inaktiv
|
SCHIRI ClanSphere Team
Thread-Ersteller


Weltmeister



Herkunft: Hamburg
Beiträge: 5299
# Antwort: 122 - 02.04.2007 um 20:54 Uhr
wird wohl kommen, hab aber leider atm kaum zeit :(

wenns dringend is, kann dir das ja vllt jemand anders auf rc3 umcoden oder selbst neu einbauen


------------------
www.laszlokorte.de

Inaktiv
|
Pitti


Try to beat me




Herkunft: Rettenberg
Beiträge: 104
# Antwort: 123 - 02.04.2007 um 20:59 Uhr
so dringend ist es nicht, schön wäre es aber wenn alles wieder so wäre wie in RC2



Inaktiv
|
vici


Wannabe poster




Beiträge: 36
# Antwort: 124 - 19.04.2007 um 18:37 Uhr
wäre trotzdem schön wenn sich wer findet


Inaktiv
|
duRiel ClanSphere Team


Weltmeister




Herkunft: Cambridge
Beiträge: 7300
# Antwort: 125 - 28.04.2007 um 17:02 Uhr
normale urls wie zb

http://www.clansphere.net
www.clansphere.net
http://clansphere.net

und emails wie

info (at) clansphere (dot) net

werden bei der aktuellen entwicklerversion jetzt auch automatisch umgewandelt.


Inaktiv
|
theGrimm


Rock the board




Beiträge: 62
# Antwort: 126 - 17.05.2007 um 15:18 Uhr
Hi
Und wie schauts aus mit der Weiterentwicklung ?


------------------

"Die Herrschaft der Dummen ist unüberwindlich, weil es so viele sind, und ihre Stimmen zählen genau wie unsere."



Inaktiv
|
SCHIRI ClanSphere Team
Thread-Ersteller


Weltmeister



Herkunft: Hamburg
Beiträge: 5299
# Antwort: 127 - 17.05.2007 um 15:21 Uhr
nachm finalrelease werd ich weiter machen, also wenn nichts mehr offiziell an der abcode.php geändert wird. denn es hat meiner meinung nach keine sinn jetzt n addon zu releasen, was ich übermorgen updaten msus weil auf offizieller seite etwas geupdatet wurde, was sonst nicht im addon enthalten ist.
ausserdem sind ja viele features jetzt schon offiziell aufgesetzt worden, sodass es meiner meinung nach nicht mehr soo dringend ist.


------------------
www.laszlokorte.de

Inaktiv
|
Nakarta


Beginner




Beiträge: 12
# Antwort: 128 - 17.05.2007 um 19:54 Uhr
^^ was macht das modul genau? und wozu ist es da.


Zuletzt editiert von Nakarta am 17.05.2007 um 19:58 Uhr (1x Editiert)
Inaktiv
|
SCHIRI ClanSphere Team
Thread-Ersteller


Weltmeister



Herkunft: Hamburg
Beiträge: 5299
# Antwort: 129 - 17.05.2007 um 20:05 Uhr
das abcode-addon?

ist kein modul, aber es macht, dass man mit [de] [fr] und so die ganzen länder flaggen einfügen kann, usernamen im text automatisch verlinkt werden und optional auch vor die usernamen eine länder-falgge gesezt wird. ausserdem kann man mit [userpic=SCHIRI] das userbild einfügen oder mit [war=1] die details über den war mit id 1 einfügen.
und noch vieles mehr


------------------
www.laszlokorte.de

Inaktiv
|
Nakarta


Beginner




Beiträge: 12
# Antwort: 130 - 18.05.2007 um 09:16 Uhr
hi nochmal^^,
k der code klappt habe ich den fehlenden code hiinzugefügt.

bei den News:
Wie kann ich ein link umbenennen, dass mit <a href="blabla">Text</a> geht nicht


Inaktiv
|
sgraewe ClanSphere Team

Supporter
Supporter




Beiträge: 6116
# Antwort: 131 - 18.05.2007 um 11:14 Uhr
[ url=blabla.de]Die blabla Seite[ /url]


Inaktiv
|
Pitti


Try to beat me




Herkunft: Rettenberg
Beiträge: 104
# Antwort: 132 - 18.05.2007 um 11:29 Uhr
Kann ich auch irgendwie angeben wie sich der Link öffnen soll ?

Im neuen Fenster oder im selben ?


Inaktiv
|
Marckrele


Try to beat me




Herkunft: H-U
Beiträge: 180
# Antwort: 133 - 20.05.2007 um 19:18 Uhr
hi schiri,

hab das addon ( v.2.o) via link auf erster Seite runtergeladen, die sql geladen und anschliessen die ordner hochgeladen.

Nun zeigt er mir unter System->Option->Forumcode folgendes... +-
 
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.
1. / 2. / ... 
<?php NoticeUndefined indextable_replace in /var/www/users/rpggamer/test/mods/abcode/options.php on line 85
    

Notice
Undefined indexuser_link in /var/www/users/rpggamer/test/mods/abcode/options.php on line 91
    

Notice
Undefined indexuser_flag in /var/www/users/rpggamer/test/mods/abcode/options.php on line 97
    

Notice
Undefined indexuser_pic in /var/www/users/rpggamer/test/mods/abcode/options.php on line 103
    

Notice
Undefined indexuser_flag_space in /var/www/users/rpggamer/test/mods/abcode/options.php on line 109
    

Notice
Undefined indexmap_replace in /var/www/users/rpggamer/test/mods/abcode/options.php on line 115
    

Notice
Undefined indexintern_replace in /var/www/users/rpggamer/test/mods/abcode/options.php on line 121
    

Notice
Undefined indexgame_symbol in /var/www/users/rpggamer/test/mods/abcode/options.php on line 127
    

Notice
Undefined indexinfo_replace in /var/www/users/rpggamer/test/mods/abcode/options.php on line 133
    

Notice
Undefined indexcountrys_flagging in /var/www/users/rpggamer/test/mods/abcode/options.php on line 139
    

Notice
Undefined indexcountry_flag_space in /var/www/users/rpggamer/test/mods/abcode/options.php on line 145
    

Notice
Undefined indexflag_replace in /var/www/users/rpggamer/test/mods/abcode/options.php on line 151
    

Notice
Undefined indexwar_replace in /var/www/users/rpggamer/test/mods/abcode/options.php on line 157
    

Notice
Undefined indexlanguage_funktion in /var/www/users/rpggamer/test/mods/abcode/options.php on line 163
    

Notice
Undefined indexlink_replace in /var/www/users/rpggamer/test/mods/abcode/options.php on line 169 ?>
an. Jede Zeile steht für eine Zeile in Forumcode-Optionen

Was hab ich da falsch gemacht und wo muß da was geändert werden?

Gruß, Marckrele


------------------
Ohne Ordnung wird jedes Universum im Chaos verglühen, und ohne Chaos wird jedes Universum in Ordnung erstarren.
Sind sie nicht aufeinander angewiesen?
Ruumaytron PR Nr. 2382



Inaktiv
|
SCHIRI ClanSphere Team
Thread-Ersteller


Weltmeister



Herkunft: Hamburg
Beiträge: 5299
# Antwort: 134 - 20.05.2007 um 19:26 Uhr
das liegt daran, dass das abcode addon nicht mit der aktuellen clansphere-version kompatibel ist.

es gab änderungen am language-system, weshalb die options.php nicht auf die sprachenvariablen zugreifen kann.


------------------
www.laszlokorte.de

Inaktiv
|
R0TT


Rock the board





Beiträge: 46
# Antwort: 135 - 23.06.2007 um 21:57 Uhr
hi gute arbeit...hab da nur ein problem und zwar möchte ich eine signaturgrafik anhängen die meine stats zeigt...jetz hab ich das Problem das wenn mein nick in dem link existiert zerschiesst der den link mit de usw...wie kann ich des machen das wenn ich einen link einfüge wo zb mein Nick drin ist das es das nicht als link zu meinem profil macht??


Inaktiv
|
Antworten: 150
Seite < 1 2 3 4 5 6 [7] 8 >


Sie müssen sich registrieren, um zu antworten.