Das hab ich richtig in der viewtopic. Nur hier hab ichs schlecht reinkopiert.nickvergessen hat geschrieben:aber du könntestans ende der zeile hinzufügen wie es eigentlich sein müsste.Code: Alles auswählen
],
lg
Powersilie
Das hab ich richtig in der viewtopic. Nur hier hab ichs schlecht reinkopiert.nickvergessen hat geschrieben:aber du könntestans ende der zeile hinzufügen wie es eigentlich sein müsste.Code: Alles auswählen
],
Code: Alles auswählen
1101: // Due to specialchars, we may not be able to store the string...
1102: if (utf8_strlen($string) > $max_store_length)
1103: {
1104: // let's split again, we do not want half-baked strings where entities are split
1105: $_chars = utf8_str_split(htmlspecialchars_decode($string));
1106: $chars = array_map('utf8_htmlspecialchars', $_chars);
1107:
1108: do
1109: {
1110: array_pop($chars);
1111: $string = implode('', $chars);
1112: }
1113: while (utf8_strlen($string) > $max_store_length || !sizeof($chars));
1114: }
Also wenn ich das mache habe ich schon auf dem index einen Fehler und der Style sieht wirklich bescheiden ausnickvergessen hat geschrieben:du könntest mal in der config.php die " Zeilen mit DEBUG ent-kommentieren (also "// " am Anfang der Zeilen entfernen)
Code: Alles auswählen
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3472: Undefined index: COPY
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3562: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2975)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3564: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2975)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3565: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2975)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3566: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2975)Code: Alles auswählen
Fatal error: Maximum execution time of 30 seconds exceeded in c:\programme\easyphp1-8\www\dcon\includes\utf\utf_tools.php on line 233Code: Alles auswählen
229 /**
230 * Return the length (in characters) of a UTF-8 string
231 * @ignore
232 */
233 function utf8_strlen($text)
234 {
235 return mb_strlen($text, 'utf-8');
236 }
237 }
238 else
239 {
Code: Alles auswählen
Undefined index: COPYWie veraltetes Sprachpaket? Ich hab beim update auf 3.0.2 auch die Sprachdateien aktualisiert! Von daher ............nickvergessen hat geschrieben:lässt auf ein veraltetes Sprachpaket schließen. Vllt hängt damit auch das andere Zusammen.Code: Alles auswählen
Undefined index: COPY
Passiert das gleichenickvergessen hat geschrieben:Stell mal testweise auf Englisch um und guck ob der Fehler immer noch vorhanden ist.
Code: Alles auswählen
Fatal error: Maximum execution time of 30 seconds exceeded in c:\programme\easyphp1-8\www\dcon\includes\utf\utf_tools.php on line 236