giller Posted February 4, 2010 Report Share Posted February 4, 2010 Es ist jan nichts Dramatisches aber unötiges Protukolieren brauch auch rezurcen! Darum würde ich gerne wissen Warum er follgende zeilen im error.log des Servers aufzeichnet und wie man das Abschaltet ? IM LOG seht ____________________________________________________________ PHP Warning: constant(): Couldn't find constant #A1433B in /html/xtFramework/charts/chart.orders.php on line 270 und in der chart.orders.php im bereich der zeile 270 steht folgendes $pieShop = array(); $pieData = array(); $pieSliceColor = array(); $i=1; foreach ($stores as $sdata) { if( $data[$sdata['id']] > 0 ){ $pieShop[] = $sdata['text'] . ' - ' . $data[$sdata['id']] ; $pieData[] = $data[$sdata['id']] / $totalamount * 100; $pieSliceColor[] = constant(_CHART_COLOR_.$i); $i++; } } $g->pie(60,'#505050','{font-size: 12px; color: '.constant(_CHART_COLOR_3).';}'); $g->pie_values( $pieData, $pieShop ); $g->pie_slice_colours( $pieSliceColor ); $g->set_tool_tip( '#val#%' ); echo $g->render(); } warum findet er die contante nicht Link to comment Share on other sites More sharing options...
HanischIT Posted February 4, 2010 Report Share Posted February 4, 2010 um Fehlermeldungen zu unterdrücken, kannst du ein @ vor constant(..) setzen. Oder du bearbeitest deine php.ini und stellt den error-log für warnings ab Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.