Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 13
Seite [1]
Tress13


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Thema - 08.06.2009 um 19:10 Uhr
Wenn ich bei dem Liga-Manager "Teams den Ligen zuweisen" will,
sagt der mir Fehler in Zeile 17.

Kann vlt ma jemand drüber schauen ?



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.
1. / 2. / ... 
<?php <?php
$cs_lang 
cs_translate('liga_manager');

$liga_id = empty($_REQUEST['where']) ? : (int) $_REQUEST['where'];
$start = empty($_REQUEST['start']) ? : (int) $_REQUEST['start'];
$where = empty($_REQUEST['where']) ? "liga_id = '" . (int) $_REQUEST['where'] . "'";

$data = array();
$data['url']['create'] = cs_url('liga_manager','create_ttl');
$data['count']['ttl'] = cs_sql_count(__FILE__,'liga_manager_ttl',$where);
$data['url']['back'] = cs_url('liga_manager','manage');
$data['pages']['list'] = cs_pages('liga_manager','manage_ttl',$data['count']['ttl'] ,$start,0,0);

$data['url']['form'] = cs_url('liga_manager','manage_ttl');
$ligen_data cs_sql_select(__FILE__,'liga_manager_ligen','*',0,'liga_order DESC',0,0);
$data['head']['dropdown'] = cs_dropdown('where','liga_name',$ligen_data,$liga_id,'liga_manager_ligen_id');

----[
color=red]-ZEILE 17-[/color]------------------------------------------------------
$data['head']['button'] = cs_html_vote('submit',$cs_lang['show'],'submit');
----------------------------------------------------------------------
$data['head']['getmsg'] = cs_getmsg();

$from 'liga_manager_ttl ttl INNER JOIN {pre}_liga_manager_ligen lig ON ttl.liga_id = lig.liga_manager_ligen_id';
$from .= ' INNER JOIN {pre}_liga_manager_teams tea ON ttl.team_id = tea.liga_manager_teams_id';
$select 'ttl.liga_manager_ttl_id AS ttl_id, tea.team_name AS team_name, lig.liga_name AS liga_name, ttl.liga_id AS liga_id';
$ttl cs_sql_select(__FILE__,$from,$select,$where,0,$start,$account['users_limit']);
$data['ttl'] = array();
if(!empty(
$ttl)) {
  for(
$run=0$run<count($ttl); $run++)  {
    
$data['ttl'][$run]['team_name'] = $ttl[$run]['team_name'];
    
$data['ttl'][$run]['liga_name'] = $ttl[$run]['liga_name'];
    
$data['ttl'][$run]['edit'] = cs_link(cs_icon('editdelete'),'liga_manager','remove_ttl','ttl_id=' $ttl[$run]['ttl_id']);
  }
}

echo 
cs_subtemplate(__FILE__,$data,'liga_manager','manage_ttl');
?> ?>


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


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

Zuletzt editiert von Tress13 am 08.06.2009 um 19:12 Uhr (1x Editiert)
Inaktiv
SCHIRI ClanSphere Team


Weltmeister



Herkunft: Hamburg
Beiträge: 5299
# Antwort: 1 - 08.06.2009 um 19:11 Uhr
$data['head']

das ist falsch in Zeile 17, entweder fehlt da noch was, oder das ist zu viel da.


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

Inaktiv
|
Tress13
Thread-Ersteller


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 2 - 08.06.2009 um 19:13 Uhr
Kenn mich mit PHP leider gar nicht aus.



Meinste soll ich das einfach mal löschen ?


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


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

Inaktiv
|
Atomic


King for a day




Herkunft: Weikersheim
Beiträge: 261
# Antwort: 3 - 08.06.2009 um 19:20 Uhr
Du hast die sql ausgeführt und den Cache danach gelöscht? Komischerweise hatte ich beim Ligamodul ganz woanders Probleme, beim Dropdownmenue. Benutze Clansphere RC3


Inaktiv
|
Tress13
Thread-Ersteller


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 4 - 08.06.2009 um 20:05 Uhr
Ja SQL ausgeführt und Cache geleert !

Und Spiele bereitet mir auch Probleme !

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.
1. / 2. / ... 
<?php <?php
$cs_lang 
cs_translate('liga_manager');
$data = array();

$start = empty($_REQUEST['start']) ? $_REQUEST['start'];
$sort = empty($_REQUEST['sort']) ? $_REQUEST['sort'];

$data['url']['create'] = cs_url('liga_manager','create_game');
$data['count']['games'] = cs_sql_count(__FILE__,'liga_manager_games');
$data['pages']['list'] = cs_pages('liga_manager','manage_games',$data['count']['games'],$start,0,0);
$data['url']['back'] = cs_url('liga_manager','manage');

$data['url']['form'] = cs_url('liga_manager','manage_games');

$select 'liga_manager_ligen_id, liga_max_teams, liga_name';
$ligen cs_sql_select(__FILE__,'liga_manager_ligen',$select,0,0,0,0);
$drop_where = empty($_POST['where']) ? : (int) $_POST['where'];
$data['head']['dropdown'] = cs_dropdown('where','liga_name',$ligen,$drop_where,'liga_manager_ligen_id');
if(!empty(
$drop_where)) {
  
$day = array();
  
$where "liga_manager_ligen_id = '" $drop_where "'";
  
$liga cs_sql_select(__FILE__,'liga_manager_ligen','liga_manager_ligen_id, liga_max_teams',$where,0,0,1);
  
$max_days = ($liga['liga_max_teams'] - 1) * 2;
  for(
$run=0$run<$max_days$run++) {
    
$runb $run+1;
    
$day[] = array('day' => $runb'day_id' => $runb);
  }
  
$data['if']['day'] = true;
  
$day_where = empty($_POST['day_id']) ? : (int) $_POST['day_id'];
  
$data['games_day']['dropdown'] = cs_dropdown('day_id','day',$day,$day_where,'day_id');
} else {
  
$data['if']['day'] = false;  
  
$data['games_day']['dropdown'] = '';
}
$data['head']['button'] = cs_html_vote('submit',$cs_lang['show'],'submit');

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

$data['ligen'] = array();
$data['if']['not_enough'] = false;
if(!empty(
$ligen)) {
  for(
$run=0$run<count($ligen); $run++) {
    
$where "liga_id = '" $ligen[$run]['liga_manager_ligen_id'] . "'";
    
$teams cs_sql_count(__FILE__,'liga_manager_ttl',$where);
    
$sum $ligen[$run]['liga_max_teams'] - $teams;
    if(!empty(
$sum)) {
      
$data['if']['not_enough'] = true;
      
$data['ligen']['liga_name'] = sprintf($cs_lang['not_enough_teams'], $ligen[$run]['liga_name']);
    } else {
      
$data['if']['not_enough'] = false;
    }
  }


$where = empty($_POST['where']) ? "liga_id = '" $_POST['where'] . "'";
$where = empty($_POST['day_id']) ? $where $where .= " AND games_day = '" $_POST['day_id'] . "'";
$select 'liga_manager_games_id, liga_id, team1_id, team2_id, games_time, games_day, score_team1, score_team2, winning_team_id';
$games cs_sql_select(__FILE__,'liga_manager_games',$select,$where,'games_time DESC',$start,$account['users_limit']);
$data['games'] = array();
if(!empty(
$games)) {
  for(
$run=0$run<count($games); $run++) {
    
$select 'liga_manager_ligen_id, liga_name';
    
$where "liga_manager_ligen_id = '" $games[$run]['liga_id'] . "'";
    
$liga cs_sql_select(__FILE__,'liga_manager_ligen',$select,$where,0,0,1);
    
$data['games'][$run]['liga'] = $liga['liga_name'];
    
    
$select 'liga_manager_teams_id, team_short';
    
$where "liga_manager_teams_id = '" $games[$run]['team1_id'] . "'";
    
$team1 cs_sql_select(__FILE__,'liga_manager_teams',$select,$where,0,0,1);
    
$data['games'][$run]['team1'] = $team1['team_short'];
    
    
$where "liga_manager_teams_id = '" $games[$run]['team2_id'] . "'";
    
$team2 cs_sql_select(__FILE__,'liga_manager_teams',$select,$where,0,0,1);
    
$data['games'][$run]['team2'] = $team2['team_short'];
    
    
$data['games'][$run]['score'] = $games[$run]['score_team1'] . ' : ' $games[$run]['score_team2'];
    
$data['games'][$run]['time'] = cs_date('unix',$games[$run]['games_time'],0);
    
$data['games'][$run]['edit'] = cs_link(cs_icon('edit'),'liga_manager','edit_game','gam_id=' $games[$run]['liga_manager_games_id']);
    
$data['games'][$run]['remove'] = cs_link(cs_icon('editdelete'),'liga_manager','remove_game','gam_id=' $games[$run]['liga_manager_games_id']);    
    
  }
}  
echo 
cs_subtemplate(__FILE__,$data,'liga_manager','manage_games');
?> ?>


Zeile 35

Das Dropdownmenü

Benutze auch RC3


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


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

Zuletzt editiert von Tress13 am 08.06.2009 um 20:42 Uhr (1x Editiert)
Inaktiv
|
SCHIRI ClanSphere Team


Weltmeister



Herkunft: Hamburg
Beiträge: 5299
# Antwort: 5 - 08.06.2009 um 20:48 Uhr
hm hab mich etwas verguckt. das $data... ist doch richtig. was genau ist denn der fehler der angezeigt wird?


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

Inaktiv
|
Tress13
Thread-Ersteller


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 6 - 08.06.2009 um 21:18 Uhr
Fatal error: Call to undefined function cs_html_vote() in /usr/export/www/vhosts/funnetwork/hosting/tress13/V-LEAGUE/mods/liga_manager/man age_ttl.php on line 17


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


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

Inaktiv
|
SCHIRI ClanSphere Team


Weltmeister



Herkunft: Hamburg
Beiträge: 5299
# Antwort: 7 - 08.06.2009 um 21:20 Uhr
achso ja klar:
Das Modul ist nicht für 2009, also musst du wie im Wiki beschrieben die alten HTML FUnktionen wieder aktiveren:

http://wiki.clansphere.de/ClanSphere_Update_2008_2009

ganz unten, Module ohne Themes Support


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

Inaktiv
|
Tress13
Thread-Ersteller


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 8 - 08.06.2009 um 22:22 Uhr
OK.
Wir kommen der Sache näher !

Ich habe jetzt das old inne functions geschrieben und soweit scheint es zu gehen.

Nur wenn ich jetzt ein Team der Liga zuordnen will und aus dem Dropdown den Liganamen wähle,
dann zeigt er mir den nächsten Fehler an:

Fatal error: Call to undefined function cs_cache_load() in /usr/export/www/vhosts/funnetwork/hosting/tress13/V-LEAGUE/system/database/mysql .php on line 115

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.
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.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
1. / 2. / ... 
<?php <?php
// ClanSphere 2009 - www.clansphere.net
// $Id: mysql.php 3023 2009-05-06 11:24:36Z hajo $

function cs_sql_connect($cs_db$test 0)
{
  
$error '';
  if(!
extension_loaded('mysql')) {
    
$error 'PHP extension mysql must be activated!';
  }
  else {
    
$connect = @mysql_connect($cs_db['place'], $cs_db['user'], $cs_db['pwd']) OR $error mysql_error();
  }
  if(empty(
$error)) {
    
mysql_select_db($cs_db['name']) OR $error mysql_error($connect);
  }

  if(empty(
$test) AND empty($error)) {
    
# mysql_set_charset('utf8', $connect); // php 5.2.3+
    
return $connect;
  }
  elseif(empty(
$test)) {
    
cs_error_sql(__FILE__'cs_sql_connect'$error1);
  }
  else {
    return 
$error;
  }
}

function 
cs_sql_count($cs_file$sql_table$sql_where 0$distinct 0)
{
  global 
$cs_db;
  
$row = empty($distinct) ? '*' 'DISTINCT ' $distinct;
  
$sql_where str_replace('"'''$sql_where);
  
  
$sql_query 'SELECT COUNT(' $row ') FROM ' $cs_db['prefix'] . '_' $sql_table;
  
$sql_query .= empty($sql_where) ? '' ' WHERE ' $sql_where;
  
  
$sql_query str_replace('{pre}'$cs_db['prefix'], $sql_query);
  if (!
$sql_data mysql_query($sql_query$cs_db['con'])) {
    
cs_error_sql($cs_file'cs_sql_count'mysql_error($cs_db['con']));
    return 
false;
  }
  
$sql_result mysql_fetch_row($sql_data);
  
mysql_free_result($sql_data);
  
cs_log_sql($cs_file$sql_query);
  return 
$sql_result[0];
}

function 
cs_sql_delete($cs_file$sql_table$sql_id$sql_field 0)
{
  global 
$cs_db;
  
settype($sql_id'integer');
  if (empty(
$sql_field)) {
    
$sql_field $sql_table '_id';
  }
  
$sql_delete 'DELETE FROM ' $cs_db['prefix'] . '_' $sql_table;
  
$sql_delete .= ' WHERE ' $sql_field ' = ' $sql_id;
  
mysql_query($sql_delete$cs_db['con']) or cs_error_sql($cs_file'cs_sql_delete'mysql_error($cs_db['con']));
  
cs_log_sql($cs_file$sql_delete1);
}

function 
cs_sql_escape($string)
{
  global 
$cs_db;
  return 
mysql_real_escape_string($string$cs_db['con']);
}

function 
cs_sql_insert($cs_file$sql_table$sql_cells$sql_content)
{
  global 
$cs_db;
  
$max count($sql_cells);
  
$set " (";
  for (
$run 0$run $max$run++) {
    
$set .= $sql_cells[$run];
    if (
$run != $max 1) {
      
$set .= ",";
    }
  }
  
$set .= ") VALUES ('";
  for (
$run 0$run $max$run++) {
    
$set .= mysql_real_escape_string($sql_content[$run], $cs_db['con']);
    if (
$run != $max 1) {
      
$set .= "','";
    }
  }
  
$set .= "')";
  
  
$sql_insert 'REPLACE INTO ' $cs_db['prefix'] . '_' $sql_table $set;
  
mysql_query($sql_insert$cs_db['con']) or cs_error_sql($cs_file'cs_sql_insert'mysql_error($cs_db['con']));
  
cs_log_sql($cs_file$sql_insert);
}

function 
cs_sql_insertid($cs_file)
{
  global 
$cs_db;
  
$result mysql_insert_id($cs_db['con']) or cs_error_sql($cs_file'cs_sql_insertid'mysql_error($cs_db['con']));
  return 
$result;
}

function 
cs_sql_option($cs_file$mod)
{
  global 
$cs_db;
  static 
$options = array();

  if (empty(
$options[$mod])) {

    if (!
$options[$mod] = cs_cache_load('op_' $mod)) {

      
$sql_query 'SELECT options_name, options_value FROM  ' $cs_db['prefix'] . '_' 'options';
      
$sql_query .= " WHERE options_mod = '" $mod "'";
      
$sql_data mysql_query($sql_query$cs_db['con']) or cs_error_sql($cs_file'cs_sql_option'mysql_error($cs_db['con']), 1);

      while (
$sql_result mysql_fetch_assoc($sql_data)) {
        
$name $sql_result['options_name'];
        
$new_result[$name] = $sql_result['options_value'];
      }
      
mysql_free_result($sql_data);
      
cs_log_sql($cs_file$sql_query);
      
$options[$mod] = isset($new_result) ? $new_result 0;

      
cs_cache_save('op_' $mod$options[$mod]);
    }
  }
  
  return 
$options[$mod];
}

function 
cs_sql_query($cs_file$sql_query$more 0)
{
  global 
$cs_db;
  
$sql_query str_replace('{pre}'$cs_db['prefix'], $sql_query);
  if (
$sql_data mysql_query($sql_query$cs_db['con'])) {
    
$result = array('affected_rows' => mysql_affected_rows($cs_db['con']));
    if(!empty(
$more)) {
      while (
$sql_result mysql_fetch_assoc($sql_data)) {
        
$result['more'][] = $sql_result;
      }
      
mysql_free_result($sql_data);
    }
  }
  else {
    
cs_error_sql($cs_file'cs_sql_query'mysql_error($cs_db['con']));
    
$result 0;
  }
  
cs_log_sql($cs_file$sql_query);
  return 
$result;
}

function 
cs_sql_select($cs_file$sql_table$sql_select$sql_where 0$sql_order 0$first 0$max 1$cache 0)
{
  if (!empty(
$cache) && $return cs_cache_load($cache)) {
    return 
$return;
  }
  
  global 
$cs_db;
  
settype($first'integer');
  
settype($max'integer');
  
$run 0;
  
$sql_where str_replace('"'''$sql_where);
  
  
$sql_query 'SELECT ' $sql_select ' FROM ' $cs_db['prefix'] . '_' $sql_table;
  if (!empty(
$sql_where)) {
    
$sql_query .= ' WHERE ' $sql_where;
  }
  if (!empty(
$sql_order)) {
    
$sql_query .= ' ORDER BY ' $sql_order;
  }
  if (!empty(
$max)) {
    
$sql_query .= ' LIMIT ' $first ',' $max;
  }
  
$sql_query str_replace('{pre}'$cs_db['prefix'], $sql_query);
  
  if (!
$sql_data mysql_query($sql_query$cs_db['con'])) {
    
cs_error_sql($cs_file'cs_sql_select'mysql_error($cs_db['con']));
    return 
false;
  }
  if (
$max == 1) {
    
$new_result mysql_fetch_assoc($sql_data);
  } else {
    while (
$sql_result mysql_fetch_assoc($sql_data)) {
      
$new_result[$run] = $sql_result;
      
$run++;
    }
  }
  
mysql_free_result($sql_data);
  
cs_log_sql($cs_file$sql_query);
  
  if (!empty(
$new_result)) {
    
    if (!empty(
$cache)) 
      
cs_cache_save($cache$new_result);
    
    return 
$new_result;
  }
}

function 
cs_sql_update($cs_file$sql_table$sql_cells$sql_content$sql_id$sql_where 0) {

  global 
$cs_db;
  
settype($sql_id'integer');
  
$max count($sql_cells);
  
$set ' SET ';
  for (
$run 0$run $max$run++) {
    
$set .= $sql_cells[$run] . "='" mysql_real_escape_string($sql_content[$run], $cs_db['con']);
    if (
$run != $max 1) {
      
$set .= "', ";
    }
  }
  
$set .= "' ";

  
$sql_update 'UPDATE ' $cs_db['prefix'] . '_' $sql_table $set ' WHERE ';
  if (empty(
$sql_where)) {
    
$sql_update .= $sql_table '_id = ' $sql_id;
  }
  else {
    
$sql_update .= $sql_where;
  }
  
mysql_query($sql_update$cs_db['con']) or cs_error_sql($cs_file'cs_sql_update'mysql_error($cs_db['con']));

  
$action 1;
  if (
$sql_cells[0] == 'users_laston' or $sql_table == 'count') {
    
$action 0;
  }
  
cs_log_sql($cs_file$sql_update$action);
}

function 
cs_sql_version($cs_file)
{
  global 
$cs_db;
  
$sql_infos = array('data_free' => 0'data_size' => 0'index_size' => 0'tables' => 0'names' => array());
  
$sql_query "SHOW TABLE STATUS LIKE '" cs_sql_escape($cs_db['prefix'] . '_') . "%'";
  
$sql_data mysql_query($sql_query$cs_db['con']) or cs_error_sql($cs_file'cs_sql_version'mysql_error($cs_db['con']));
  while(
$row mysql_fetch_assoc($sql_data)) {
    
$sql_infos['data_size'] += $row['Data_length'];
    
$sql_infos['index_size'] += $row['Index_length'];
    
$sql_infos['data_free'] += $row['Data_free'];
    
$sql_infos['tables']++;
    
$sql_infos['names'][] .= $row['Name'];
  }
  
mysql_free_result($sql_data);
  
cs_log_sql($cs_file$sql_query);

  
$sql_infos['encoding'] = mysql_client_encoding();
  
$sql_infos['type'] = 'MySQL (mysql)';
  
$sql_infos['client'] = mysql_get_client_info();
  
$sql_infos['host'] = mysql_get_host_info($cs_db['con']) or cs_error_sql($cs_file'cs_sql_version'mysql_error($cs_db['con']));
  
$sql_infos['server'] = mysql_get_server_info($cs_db['con']) or cs_error_sql($cs_file'cs_sql_version'mysql_error($cs_db['con']));
  return 
$sql_infos;
}

function 
cs_sql_error() {

  global 
$cs_db;

  return 
mysql_error($cs_db['con']);
?>


Hier ist die Zeile 125 die eigentliche Zeile 115 !!!


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


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

Zuletzt editiert von Tress13 am 08.06.2009 um 22:24 Uhr (1x Editiert)
Inaktiv
|
Atomic


King for a day




Herkunft: Weikersheim
Beiträge: 261
# Antwort: 9 - 08.06.2009 um 22:28 Uhr
yep, den fehler habe ich hier mal gepostet... leider keine Endlösung, aber

siehe hier -> http://www.clansphere.net/index/board/thread/where/10777

und wenn Du gleich weitersuchst: Die Berechnungspunkte kannste zwar eingeben, werden aber ignoriert, es werden Win 3, Unentschieden 1, Verloren 0 angenommen. Egal was man eingibt, bei mir hats keine Funktion!


Zuletzt editiert von Atomic am 08.06.2009 um 22:31 Uhr (1x Editiert)
Inaktiv
|
SCHIRI ClanSphere Team


Weltmeister



Herkunft: Hamburg
Beiträge: 5299
# Antwort: 10 - 08.06.2009 um 22:32 Uhr
der fehler dürfte jetzt aber nichts mit dem liga manager zu tun haben.

kann es sein, dass deine system/core/cachegen.php veraltet oder nicth existent ist?


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

Inaktiv
|
Tress13
Thread-Ersteller


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 11 - 08.06.2009 um 22:41 Uhr
Jo !

Funzt Danke !!!





Benutze die RC3 !?

E2: Nein funzt noch nicht 100%ig !

Die selben Fehler werden auch angezeigt,
wenn ich ein Spiel erstellen will und auf die Dropdowns dort klicke !

mysql line 115 ...

E3: Ausserdem wenn ich die list aufrufe und auf die Liga klicke,
steht

{loop:games} {stop:games}
über dem Spieltag !

Die Platzhalter sind auch Falsch...

{games:run} {games:team1} {games:team2} {games:time} {games:goals}


...bzw werden nur so angezeigt.


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


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

Zuletzt editiert von Tress13 am 08.06.2009 um 23:07 Uhr (4x Editiert)
Inaktiv
|
Atomic


King for a day




Herkunft: Weikersheim
Beiträge: 261
# Antwort: 12 - 09.06.2009 um 12:55 Uhr
Oh, dazu kann ich nix sagen, hab die Dateien komplett umgekrempelt. Hatte Anfangs auch den Fehler, aber nachdem ich eine Liga und Teams erstellt hatte, war der Fehler verschwunden.

>cachegen ist nicht veraltet und existiert!

Nachtrag wegen Dropdownmenue: Beide Dateien bearbeiten -> create_game.php und die Datei create_ttl.php

Nachtrag2: Noch ein Fehler, der mir gerade einfällt ist, dass die Spielrundenauswahl/Saisonrunde nicht angezeigt wird, jedesmal erst nach Absenden kommt der Fehler: Sie haben keine Saisonrunde angegeben... flups und da ist das Eingabefeld..

Meine create_game.php ab Zeile 64 sieht so aus: Achtung die Berechnung der maxdays habe ich gesetzt, da mir 90 Runden für unsere Zwecke reichen.
mehr... +-

if(!empty($data['create']['liga_id'])) {
// $day = array();
// $where = "liga_manager_ligen_id = '" . $data['create']['liga_id'] . "'";
// $liga = cs_sql_select(__FILE__,'liga_manager_ligen','liga_manager_ligen_i d, liga_max_teams',$where,0,0,1);
$max_days = '90';
for($run=0; $run<$max_days; $run++) {
$runb = $run+1;
$day[] = array('day' => $runb, 'day_id' => $runb);
}
$data['dropdown']['day'] = cs_dropdown('day_id','day',$day,0,'day_id');
} else {
$max_days = '90';
for($run=0; $run<$max_days; $run++) {
$runb = $run+1;
$day[] = array('day' => $runb, 'day_id' => $runb);
}
$data['dropdown']['day'] = cs_dropdown('day_id','day',$day,0,'day_id');
}
} else {
if($data['create']['score_team1'] > $data['create']['score_team2']) {
$data['create']['winning_team_id'] = $data['create']['team1_id'];
} elseif($data['create']['score_team1'] < $data['create']['score_team2']) {
$data['create']['winning_team_id'] = $data['create']['team2_id'];
} else {
$data['create']['winning_team_id'] = 0;
}
$game_cells = array_keys($data['create']);
$game_save = array_values($data['create']);
cs_sql_insert(__FILE__,'liga_manager_games',$game_cells,$game_save);
cs_redirect($cs_lang['create_done'],'liga_manager','man age_games');
}
echo cs_subtemplate(__FILE__,$data,'liga_manager','create_game');
?>


PS: Erstelle bitte mal eine Liga + Teams nimm mal für Win und so andere Werte als 3,1,0 und lass die Teams mal gegeneinander spielen, verrate uns mal, ob er Deine Werte angenommen hat oder ob er die Standardwerte 3,1,0 genommen hat. Thanks


Zuletzt editiert von Atomic am 09.06.2009 um 13:11 Uhr (3x Editiert)
Inaktiv
|
Tress13
Thread-Ersteller


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 13 - 09.06.2009 um 18:16 Uhr
Bei mir nimmt er die Punkte 3,2,1 !


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


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

Inaktiv
|
Antworten: 13
Seite [1]


Sie müssen sich registrieren, um zu antworten.