Hi ich habe ein Ähnliches Problem.
Und Zwar bekomme ich meine Seite gar nicht mehr auf, habe folgende Fehlermeldung:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 262144 bytes) in /home/rlggamem/public_html/wp/wp-includes/pomo/mo.php on line 219
Installiert ist ein Wordpress.
Link:
http://rlggamemedia.x10.mx/wp/
Woran liegt das also ich habe wie ihr schon gesagt habt nach der php.ini gesucht aber nicht gefunden
Der Script text wo der Fehler sein soll lautet so.
218: function &make_entry($original, $translation) {
219: $entry = new Translation_Entry();
220: // look for context
221: $parts = explode(chr(4), $original);
222: if (isset($parts[1])) {
223: $original = $parts[1];
224: $entry->context = $parts[0];
225: }
226: // look for plural original
227: $parts = explode(chr(0), $original);
228: $entry->singular = $parts[0];
229: if (isset($parts[1])) {
230: $entry->is_plural = true;
231: $entry->plural = $parts[1];
232: }
233: // plural translations are also separated by \0
234: $entry->translations = explode(chr(0), $translation);
235: return $entry;
236: }
Ich bin zwar Programmierer in C# kenne mich aber nur eingeschränkt mit php aus, für Games brauch man das ja net
.