Topic als PDF ausgeben

Allgemeiner Support zum phpBB 2 Board und phpBB 2 Modifikationen
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!
Antworten
Benutzeravatar
oxpus
Administrator
Beiträge: 28737
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von oxpus »

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 Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Holger
Beiträge: 2253
Registriert: Mi 17.Mär, 2004 18:09

Re: Topic als PDF ausgeben

Beitrag von Holger »

Hier kommt erstmal meine fpdf
Real men don’t back up, they learn data recovery. ;-)
http://www.mysqldumper.de
http://www.mysqldumper.se
Benutzeravatar
oxpus
Administrator
Beiträge: 28737
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von oxpus »

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 Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Holger
Beiträge: 2253
Registriert: Mi 17.Mär, 2004 18:09

Re: Topic als PDF ausgeben

Beitrag von Holger »

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
Benutzeravatar
oxpus
Administrator
Beiträge: 28737
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von oxpus »

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 Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Holger
Beiträge: 2253
Registriert: Mi 17.Mär, 2004 18:09

Re: Topic als PDF ausgeben

Beitrag von Holger »

Danke für Deine Hilfe!
Real men don’t back up, they learn data recovery. ;-)
http://www.mysqldumper.de
http://www.mysqldumper.se
Benutzeravatar
oxpus
Administrator
Beiträge: 28737
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von oxpus »

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 Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Holger
Beiträge: 2253
Registriert: Mi 17.Mär, 2004 18:09

Re: Topic als PDF ausgeben

Beitrag von Holger »

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 Fr 18.Dez, 2009 13: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
Beiträge: 2253
Registriert: Mi 17.Mär, 2004 18:09

Re: Topic als PDF ausgeben

Beitrag von Holger »

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
Benutzeravatar
oxpus
Administrator
Beiträge: 28737
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von oxpus »

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 Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Holger
Beiträge: 2253
Registriert: Mi 17.Mär, 2004 18:09

Re: Topic als PDF ausgeben

Beitrag von Holger »

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
Benutzeravatar
oxpus
Administrator
Beiträge: 28737
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von oxpus »

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 Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Holger
Beiträge: 2253
Registriert: Mi 17.Mär, 2004 18:09

Re: Topic als PDF ausgeben

Beitrag von Holger »

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
Benutzeravatar
oxpus
Administrator
Beiträge: 28737
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von oxpus »

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 Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Holger
Beiträge: 2253
Registriert: Mi 17.Mär, 2004 18:09

Re: Topic als PDF ausgeben

Beitrag von Holger »

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
Benutzeravatar
oxpus
Administrator
Beiträge: 28737
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von oxpus »

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 Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Holger
Beiträge: 2253
Registriert: Mi 17.Mär, 2004 18:09

Re: Topic als PDF ausgeben

Beitrag von Holger »

Trotzdem DANKE! :respect:

Gruss
H
Real men don’t back up, they learn data recovery. ;-)
http://www.mysqldumper.de
http://www.mysqldumper.se
Benutzeravatar
Dungeonwatcher
Beiträge: 1055
Registriert: Sa 19.Feb, 2005 01:16
Wohnort: Berlin
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von Dungeonwatcher »

Hi! :cool:

Danke an den großen Meister für den Sicherheits Fix. :anbet

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
Benutzeravatar
oxpus
Administrator
Beiträge: 28737
Registriert: Mo 27.Jan, 2003 22:13
Wohnort: Bad Wildungen
Kontaktdaten:

Re: Topic als PDF ausgeben

Beitrag von oxpus »

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 Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
Antworten