|
|
Allgemeiner Support zum phpBB 2 Board und phpBB 2 Modifikationen
Moderator: Moderatoren
Forumsregeln
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
von oxpus » Wed 16.Dec, 2009 16:43 • Beitrag als PDF
Häng doch mal deine fpdf.php hier an. So finde ich sonst nie die richtigen Stellen. - Code: Alles auswählen
$info['i']=count($this->images)+1; $this->images[$file]=$info;
müsste bei dir ursprünglich gestanden haben. Die Fehlermeldung sagt nun aus, dass $info kein Array ist. Also müsste es mit $info = array(); zunächst zu einem solchen gemacht werden. Normalerweise reicht das dann aus, um den Scalar (die Integer-Variable) nicht mehr als solche zu führen...
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per ICQ, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert! No support per ICQ, Email or PM. Each unasked message will be ignored!
-

oxpus
- Administrator

-
- Beiträge: 28981
- Registriert: Mon 27.Jan, 2003 23:13
- Wohnort: Bad Wildungen
-
von Holger » Wed 16.Dec, 2009 17:13 • Beitrag als PDF
Hier kommt erstmal meine fpdf
Real men don’t back up, they learn data recovery. ;-) http://www.mysqldumper.de http://www.mysqldumper.se
-
Holger
- User

-
- Beiträge: 2253
- Registriert: Wed 17.Mar, 2004 19:09
von oxpus » Wed 16.Dec, 2009 19:59 • Beitrag als PDF
Wie wäre es denn mal mit diesem Block? - Code: Alles auswählen
if (!isset($info) || !is_array($info)) { $info = array(); } $info['i'][] = count($this->images)+1; $this->images[$file]=$info;
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per ICQ, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert! No support per ICQ, Email or PM. Each unasked message will be ignored!
-

oxpus
- Administrator

-
- Beiträge: 28981
- Registriert: Mon 27.Jan, 2003 23:13
- Wohnort: Bad Wildungen
-
von Holger » Thu 17.Dec, 2009 10:32 • Beitrag als PDF
Danke! LOL, jetzt bekomme ich Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php:983) in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 1068 FPDF error: Some data has already been output to browser, can't send PDF file
Weiterhin in diesem Topic: http://www.maskinisten.net/viewtopic.php?t=13974
Real men don’t back up, they learn data recovery. ;-) http://www.mysqldumper.de http://www.mysqldumper.se
-
Holger
- User

-
- Beiträge: 2253
- Registriert: Wed 17.Mar, 2004 19:09
von oxpus » Thu 17.Dec, 2009 16:20 • Beitrag als PDF
Also da scheint insgesamt was nicht zu stimmen, denn die Daten liegen schlicht nicht vor. Das betreffende Bild scheint also nicht ausgelesen werden zu können. Und zwar alle Bilder, die über den Upload PIC MOD hochgeladen wurden!! Hier scheint der angenommene Pfad für die PDF-Generierung nicht zu passen. Häng doch mal bitte deine pdf.php an. Vielleicht kann man da was entsprechendes anpassen...
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per ICQ, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert! No support per ICQ, Email or PM. Each unasked message will be ignored!
-

oxpus
- Administrator

-
- Beiträge: 28981
- Registriert: Mon 27.Jan, 2003 23:13
- Wohnort: Bad Wildungen
-
von Holger » Fri 18.Dec, 2009 12:57 • Beitrag als PDF
Danke für Deine Hilfe!
Real men don’t back up, they learn data recovery. ;-) http://www.mysqldumper.de http://www.mysqldumper.se
-
Holger
- User

-
- Beiträge: 2253
- Registriert: Wed 17.Mar, 2004 19:09
von oxpus » Fri 18.Dec, 2009 13:29 • Beitrag als PDF
Hm ja, warum ist das nie aufgefallen... Ersetze mal die Zeile - Code: Alles auswählen
else if ( $splitter[$b] == "img:$bbcode_uid" )
in der pdf.php durch - Code: Alles auswählen
else if ( preg_match("\/?img:$bbcode_uid/i", $splitter[$b]) )
Ursprünglich würde $splitter[$b] ja eigentlich nur img:bbcode enthalten. Somit kann alles nachfolgende darauf ja nicht gehen. Aber der Wert steht ja dann ein Array-Wert weiter, insofern müsste es eigentlich auch klappen... *grübel* Der Pfad zum Image spielt dabei allerdings keine Rolle. Du kannst aber mal nach der obigen Zeile ein - Code: Alles auswählen
echo $splitter[$b];
einfügen, um zu schauen, ob auch der korrekte Pfad zu den Bildern angezeigt wird. Das PDF wird dann allerdings klar mit dem echo nicht erzeugt...
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per ICQ, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert! No support per ICQ, Email or PM. Each unasked message will be ignored!
-

oxpus
- Administrator

-
- Beiträge: 28981
- Registriert: Mon 27.Jan, 2003 23:13
- Wohnort: Bad Wildungen
-
von Holger » Fri 18.Dec, 2009 14:17 • Beitrag als PDF
Hups: - Code: Alles auswählen
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/maskinisten.net/httpdocs/pdf.php:276) in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 1068 FPDF error: Some data has already been output to browser, can't send PDF file
Zuletzt geändert von Holger am Fri 18.Dec, 2009 14:19, insgesamt 1-mal geändert.
Real men don’t back up, they learn data recovery. ;-) http://www.mysqldumper.de http://www.mysqldumper.se
-
Holger
- User

-
- Beiträge: 2253
- Registriert: Wed 17.Mar, 2004 19:09
von Holger » Fri 18.Dec, 2009 14:19 • Beitrag als PDF
Hups! Zehntausend mal diese Fehlermeldung: Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Und: Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/maskinisten.net/httpdocs/pdf.php:276) in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 1068 FPDF error: Some data has already been output to browser, can't send PDF file
Real men don’t back up, they learn data recovery. ;-) http://www.mysqldumper.de http://www.mysqldumper.se
-
Holger
- User

-
- Beiträge: 2253
- Registriert: Wed 17.Mar, 2004 19:09
von oxpus » Fri 18.Dec, 2009 14:37 • Beitrag als PDF
Oh ja richtig. Bitte so: - Code: Alles auswählen
else if ( preg_match("/\/?img:$bbcode_uid/i", $splitter[$b]) )
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per ICQ, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert! No support per ICQ, Email or PM. Each unasked message will be ignored!
-

oxpus
- Administrator

-
- Beiträge: 28981
- Registriert: Mon 27.Jan, 2003 23:13
- Wohnort: Bad Wildungen
-
von Holger » Fri 18.Dec, 2009 15:08 • Beitrag als PDF
Gleicher Fehler weiterhin: - Code: Alles auswählen
Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /var/www/vhosts/maskinisten.net/httpdocs/pdf.php on line 276
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Real men don’t back up, they learn data recovery. ;-) http://www.mysqldumper.de http://www.mysqldumper.se
-
Holger
- User

-
- Beiträge: 2253
- Registriert: Wed 17.Mar, 2004 19:09
von oxpus » Fri 18.Dec, 2009 16:31 • Beitrag als PDF
Und so? - Code: Alles auswählen
else if ( preg_match("#\/?img:$bbcode_uid#i", $splitter[$b]) )
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per ICQ, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert! No support per ICQ, Email or PM. Each unasked message will be ignored!
-

oxpus
- Administrator

-
- Beiträge: 28981
- Registriert: Mon 27.Jan, 2003 23:13
- Wohnort: Bad Wildungen
-
von Holger » Mon 21.Dec, 2009 10:17 • Beitrag als PDF
Leider nicht - Code: Alles auswählen
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Division by zero in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 983
Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php:983) in /var/www/vhosts/maskinisten.net/httpdocs/fpdf.php on line 1068 FPDF error: Some data has already been output to browser, can't send PDF file
Real men don’t back up, they learn data recovery. ;-) http://www.mysqldumper.de http://www.mysqldumper.se
-
Holger
- User

-
- Beiträge: 2253
- Registriert: Wed 17.Mar, 2004 19:09
von oxpus » Mon 21.Dec, 2009 10:43 • Beitrag als PDF
Ersetze mal in der fpdf.php den Block - Code: Alles auswählen
if($w==0) $w=$h*$info['w']/$info['h']; if($h==0) $h=$w*$info['h']/$info['w'];
durch - Code: Alles auswählen
if($w==0) if (!$info['h']) { $w = 300; } else { $w=$h*$info['w']/$info['h']; } if($h==0) if (!$info['w']) { $h = 250; } else { $h=$w*$info['h']/$info['w']; }
Dadurch wird, sofern Bildinformationen fehlen, das Bild auf 300 * 250 Pixel festgezurrt. Soweit zumindest die Theorie.
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per ICQ, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert! No support per ICQ, Email or PM. Each unasked message will be ignored!
-

oxpus
- Administrator

-
- Beiträge: 28981
- Registriert: Mon 27.Jan, 2003 23:13
- Wohnort: Bad Wildungen
-
von Holger » Mon 21.Dec, 2009 10:54 • Beitrag als PDF
Jetzt läuft es durch, ich bekomme aber xobject.jpg sobald die PDF-Seite geladen wird. Wenn ich dann runterscrolle bekomme ich weitere Acrobat-Fehler. Und Bilder werden nicht angezeigt im PDF-Dokument.
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen. Real men don’t back up, they learn data recovery. ;-) http://www.mysqldumper.de http://www.mysqldumper.se
-
Holger
- User

-
- Beiträge: 2253
- Registriert: Wed 17.Mar, 2004 19:09
von oxpus » Mon 21.Dec, 2009 16:41 • Beitrag als PDF
Da bin ich nun überfragt. Die fdpf.php kenne ich nur rudimentär.
Vielleicht müsste bei dir der gesamte Text zunächst konvertiert werden. Also von utf8 auf iso, damit das Script auch sauber arbeiten kann. Denn mit utf8 werden ja bekanntlich alle Sonderzeichen und Umlaute als Multibyte-Zeichen (2 Byte lang) dargestellt. Und das führt z. B. auch bei preg_match-Funktionen, wie sie hier für die Erkennung der diversen BBCode-Stellen im Post verwendet werden, gelegentlich zu Problemen.
Keine Ahnung, wie man das jetzt "auf die Schnelle" löst...
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per ICQ, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert! No support per ICQ, Email or PM. Each unasked message will be ignored!
-

oxpus
- Administrator

-
- Beiträge: 28981
- Registriert: Mon 27.Jan, 2003 23:13
- Wohnort: Bad Wildungen
-
von Holger » Mon 21.Dec, 2009 16:54 • Beitrag als PDF
Trotzdem DANKE! Gruss H
Real men don’t back up, they learn data recovery. ;-) http://www.mysqldumper.de http://www.mysqldumper.se
-
Holger
- User

-
- Beiträge: 2253
- Registriert: Wed 17.Mar, 2004 19:09
von Dungeonwatcher » Sat 10.Mar, 2012 16:13 • Beitrag als PDF
Hi!  Danke an den großen Meister für den Sicherheits Fix. Wie kann ich bisher nicht beachtete BBCodes einbinden? Betroffen ist bei u.a. center. Welche Rolle spielt die fpdf.css? Ich kann darin ändern was ich will, es wird nicht beachtet und selbst ohne diese Datei funktioniert der Mod. Bye
-

Dungeonwatcher
- User

-
- Beiträge: 1048
- Registriert: Sat 19.Feb, 2005 02:16
- Wohnort: Berlin
-
von oxpus » Sat 10.Mar, 2012 18:48 • Beitrag als PDF
Hallo,
ich habe aktuell keine Zeit, die Mode zu erweitern/verbessern. Vielleicht in 1-2 Monaten wieder.
Die .css ist im fpdf Paket enthalten, somit also auch in diesen beiden Mods. Auch wenn sie aktuell keine Rolle spielt...
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per ICQ, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert! No support per ICQ, Email or PM. Each unasked message will be ignored!
-

oxpus
- Administrator

-
- Beiträge: 28981
- Registriert: Mon 27.Jan, 2003 23:13
- Wohnort: Bad Wildungen
-
Zurück zu phpBB 2 Support Board + Modifikationen
Wer ist online?
Mitglieder in diesem Forum: Google [Bot] und 1 Gast
|