Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 6
Seite [1]
Tress13


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Thema - 04.10.2010 um 13:53 Uhr
Ich habe mal das Referenzen-Modul von Dragon dubliziert.
Dabei habe ich einfach gegen jede "referenz" ein "temshop" ausgetauscht.
Nun habe ich aber das Problem, dass das Modul zwar schon auf meiner seite ist,
ich aber nirgends das Modul sehen kann. Weder unter System/module, noch unter Verwaltung oder sonst wo.
Wenn ich das Modul aber mit den jeweiligen URL's aufrufe, klappt alles soweit.

Nur ich sehe es halt nirgends...



Weiss vlt jemand, woran das liegen könnte ?
Die debug zeigt nichts an.

Bei PHPMyAdmin wird mir auch die Tabelle angezeigt.


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


www.iv-gaming.de | www.iv-artwork.de

Zuletzt editiert von Tress13 am 04.10.2010 um 13:54 Uhr (1x Editiert)
Inaktiv
sgraewe ClanSphere Team

Supporter
Supporter




Beiträge: 6116
# Antwort: 1 - 04.10.2010 um 14:03 Uhr
haste die info.php des modules angepasst? Ansonsten mal Cache leeren


Inaktiv
|
Tress13
Thread-Ersteller


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 2 - 04.10.2010 um 14:13 Uhr
Cache habe ich schon 1000mal geleert.
Die Info.php sieht so aus:

mehr... +-
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
1. / 2. / ... 
<?php
// ClanSphere 2009 - www.clansphere.net
// Drag0n $

$cs_lang cs_translate('tempshop');

$mod_info['name']      = $cs_lang['mod_name'];
$mod_info['version']  = $cs_main['version_name'];
$mod_info['released']  = $cs_main['version_date'];
$mod_info['creator']  = 'Drag0n';
$mod_info['team']     = 'Clansphere';
$mod_info['url']      = 'www.clansphere.net';
$mod_info['text']    = $cs_lang['modtext'];
$mod_info['icon']     = 'tempshop';
$mod_info['show']     = array('clansphere/admin' => 4,'options/roots' => 5);
$mod_info['tables']    = array('tempshop');


Habe halt nut überall wo referenz stand tempshop rein gemacht.


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


www.iv-gaming.de | www.iv-artwork.de

Zuletzt editiert von Tress13 am 04.10.2010 um 14:14 Uhr (1x Editiert)
Inaktiv
|
palle ClanSphere Team

Supporter
Supporter




Beiträge: 3073
# Antwort: 3 - 04.10.2010 um 14:20 Uhr
SQL Access Eintrag fehlt vermutlich.


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



Inaktiv
|
Tress13
Thread-Ersteller


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 4 - 04.10.2010 um 14:22 Uhr
Habe auch das nur ersetzt.
Die SQL sieht nun so aus:

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.
1. / 2. / ... 
 ALTER TABLE {pre}_access ADD access_tempshop INTNOT NULL ;
UPDATE {pre}_access SET access_tempshop '1' WHERE access_id 1 LIMIT 1 ;
UPDATE {pre}_access SET access_tempshop '2' WHERE access_id 2 LIMIT 1 ;
UPDATE {pre}_access SET access_tempshop '3' WHERE access_id 3 LIMIT 1 ;
UPDATE {pre}_access SET access_tempshop '4' WHERE access_id 4 LIMIT 1 ;
UPDATE {pre}_access SET access_tempshop '5' WHERE access_id 5 LIMIT 1 ;


INSERT INTO {pre}_options (options_modoptions_nameoptions_valueVALUES ('tempshop''max_width''1024');
INSERT INTO {pre}_options (options_modoptions_nameoptions_valueVALUES ('tempshop''max_height''768');
INSERT INTO {pre}_options (options_modoptions_nameoptions_valueVALUES ('tempshop''max_size''804800');
INSERT INTO {pre}_options (options_modoptions_nameoptions_valueVALUES ('tempshop''max_width_klein''100');
INSERT INTO {pre}_options (options_modoptions_nameoptions_valueVALUES ('tempshop''max_height_klein''100');
INSERT INTO {pre}_options (options_modoptions_nameoptions_valueVALUES ('tempshop''max_size_klein''204800');


CREATE TABLE {pre}_tempshop (
  
tempshop_id {serial}, 
  
tempshop_time varchar(14NOT NULL default ''
  
tempshop_name varchar(100NOT NULL default '',
  
tempshop_users_name varchar(100NOT NULL default '',
  
users_id int(8NOT NULL default '0',
  
tempshop_info text NOT NULL,
  
tempshop_url text NOT NULL,
  
tempshop_img text NOT NULL,
  
tempshop_img_klein text NOT NULL,
  
tempshop_count int(10NOT NULL default '0',
  
tempshop_logo varchar(14NOT NULL default '',
  
tempshop_flash varchar(14NOT NULL default '',
  
tempshop_banner varchar(14NOT NULL default '',
  
tempshop_pics varchar(14NOT NULL default '',
  
tempshop_animation varchar(14NOT NULL default '',
  
tempshop_angepasst varchar(14NOT NULL default '',
  
tempshop_module varchar(14NOT NULL default '',
  
tempshop_css varchar(14NOT NULL default '',
  
tempshop_verkaufsstatus varchar(14NOT NULL default '',
  
PRIMARY KEY  (tempshop_id)
){
engine};



Allerdings zeigt er mir beim import folgendes in rot an:

INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('tempshop', 'max_width', '1024') # cs_sql_query - Duplicate entry 'tempshop-max_width' for key 'options_mod'
INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('tempshop', 'max_height', '768') # cs_sql_query - Duplicate entry 'tempshop-max_height' for key 'options_mod'
INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('tempshop', 'max_size', '804800') # cs_sql_query - Duplicate entry 'tempshop-max_size' for key 'options_mod'
INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('tempshop', 'max_width_klein', '100') # cs_sql_query - Duplicate entry 'tempshop-max_width_klein' for key 'options_mod'
INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('tempshop', 'max_height_klein', '100') # cs_sql_query - Duplicate entry 'tempshop-max_height_klein' for key 'options_mod'
INSERT INTO {pre}_options (options_mod, options_name, options_value) VALUES ('tempshop', 'max_size_klein', '204800') # cs_sql_query - Duplicate entry 'tempshop-max_size_klein' for key 'options_mod'


Vlt sollte ich an dieser Stelle ja noch erwähnen, dass ich die aktuelle SVN drauf gemacht habe.
Aber ob das was damit zu tun haben kann...


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


www.iv-gaming.de | www.iv-artwork.de

Zuletzt editiert von Tress13 am 04.10.2010 um 14:38 Uhr (2x Editiert)
Inaktiv
|
Nordic


Beginner




Beiträge: 2
# Antwort: 5 - 03.12.2010 um 15:13 Uhr
Hm,

ich habe das gleiche Problem (2010.1). Ich habe das Tutorial aus der Docu soweit nachgemacht, aber es wurde dennoch nirgends angezeigt.

Der SQL-Fehler von dir besagt nur, dass in der _options Tabelle bereits die Variablen für tempshop - max_width & Co. gesetzt sind und, dass er die nicht nochmal einsetzen kann, da der Schlüssel "options_mod" bereits mit tempshop belegt wurde. Völlig korrektes Verhalten seitens SQL. Daran sollte es also nicht liegen. Du müsstest die SQL auch ausführen können, wenn du auf die Zeilen 9-14 verzichtest, denn wie gesagt - laut SQL sind die Werte für _options bereits vorhanden.

MfG


Inaktiv
|
hajo ClanSphere Team


VIP - Poster




Herkunft: Barsbüttel
Beiträge: 9411
# Antwort: 6 - 03.12.2010 um 15:29 Uhr
neue themes, templates, languages und modules sind ab dem nächsten update im admin bereich immer schon sofort sichtbar, ein leeren des caches ist dann nicht mehr unbedingt nötig.

fehlende sql-tabellen werden in der aktuellen trunk version bereits unter system -> datenbank als integritätsmerkmal angezeigt, für fehlende options oder access werte usw. ist dies leider nicht möglich


------------------
ClanSphere - professional clan care starts here

Inaktiv
|
Antworten: 6
Seite [1]


Sie müssen sich registrieren, um zu antworten.