diff --git a/admin/anschreiben/blanko_ludwigsburg.pdf b/admin/anschreiben/blanko_ludwigsburg.pdf index 0b68f12..53ac15a 100755 Binary files a/admin/anschreiben/blanko_ludwigsburg.pdf and b/admin/anschreiben/blanko_ludwigsburg.pdf differ diff --git a/admin/anschreiben/zuweisung_erstantrag_student.php b/admin/anschreiben/zuweisung_erstantrag_student.php index fb29d8d..bb89d5b 100755 --- a/admin/anschreiben/zuweisung_erstantrag_student.php +++ b/admin/anschreiben/zuweisung_erstantrag_student.php @@ -25,7 +25,7 @@ if(!isset($hist)){ $res_dat = $db->query("SELECT min(date_format(datum, '%d.%m.%Y')) datum FROM stan_printqueue_hist WHERE zuweisung='EZS' AND admin='$user_admin'"); $row_dat = $res_dat->fetch_array(); - $heute_format = $row_dat[datum]; + $heute_format = $row_dat['datum']; } if(isset($hist2)){ diff --git a/admin/anschreiben_kehl/blanko_kehl.pdf b/admin/anschreiben_kehl/blanko_kehl.pdf index 4051e29..a319921 100755 Binary files a/admin/anschreiben_kehl/blanko_kehl.pdf and b/admin/anschreiben_kehl/blanko_kehl.pdf differ diff --git a/admin/prints/#alt/FAQ.htm b/admin/prints/#alt/FAQ.htm index 60a75aa..28838e0 100755 --- a/admin/prints/#alt/FAQ.htm +++ b/admin/prints/#alt/FAQ.htm @@ -194,7 +194,7 @@ Header('Pragma: public');

7. When I execute a script I get the message "FPDF error: Don't alter the locale before including class file".

When the decimal separator is configured as a comma before including a file, there is a -bug in some PHP versions and decimal +bug in some PHP versions and decimal numbers get truncated. Therefore you shouldn't make a call to setlocale() before including the class. On Unix, you shouldn't set the LC_ALL environment variable neither, for it is equivalent to a setlocale() call. @@ -270,20 +270,20 @@ Remark: even when the browser goes in time-out, the script may continue to run o

17. Can I modify a PDF with FPDF?

You can import an existing PDF document thanks to the FPDI extension:

-https://fpdi.setasign.de +http://fpdi.setasign.de

18. I'd like to make a search engine in PHP and index PDF files. Can I do it with FPDF?

No. But a GPL C utility does exist, pdftotext, which is able to extract the textual content from a PDF. It is provided with the Xpdf package:

-https://www.foolabs.com/xpdf/ +http://www.foolabs.com/xpdf/

19. Can I convert an HTML page to PDF with FPDF?

Not real pages. But a GPL C utility does exist, htmldoc, which allows to do it and gives good results:

-https://www.easysw.com/htmldoc/ +http://www.easysw.com/htmldoc/

20. Can I concatenate PDF files with FPDF?

No. But some free tools exist to perform this task:

-https://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
-https://www.accesspdf.com/pdftk/ +http://thierry.schmit.free.fr/dev/mbtPdfAsm/enMbtPdfAsm2.html
+http://www.accesspdf.com/pdftk/ diff --git a/admin/prints/#alt/LICENSE b/admin/prints/#alt/LICENSE index 62589ed..d645695 100755 --- a/admin/prints/#alt/LICENSE +++ b/admin/prints/#alt/LICENSE @@ -1,7 +1,7 @@ Apache License Version 2.0, January 2004 - https://www.apache.org/licenses/ + http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -193,7 +193,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - https://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/prints/#alt/NOTICE b/admin/prints/#alt/NOTICE index 5d026f0..29ec933 100755 --- a/admin/prints/#alt/NOTICE +++ b/admin/prints/#alt/NOTICE @@ -3,7 +3,7 @@ php|architect by Marco Tabini. This software contains code derived from Oliver Plathey - The author of - FPDF. FPDF is available from: https://www.fpdf.org + FPDF. FPDF is available from: http://www.fpdf.org The LZW- and the ASCII85-Decoder are adapted from the iText-Library - https://www.lowagie.com/iText/ \ No newline at end of file + http://www.lowagie.com/iText/ \ No newline at end of file diff --git a/admin/prints/#alt/decoders/ascii85.php b/admin/prints/#alt/decoders/ascii85.php index b7548ee..f7580ba 100755 --- a/admin/prints/#alt/decoders/ascii85.php +++ b/admin/prints/#alt/decoders/ascii85.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/prints/#alt/decoders/lzw.php b/admin/prints/#alt/decoders/lzw.php index 06fcd4f..bb79063 100755 --- a/admin/prints/#alt/decoders/lzw.php +++ b/admin/prints/#alt/decoders/lzw.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/prints/#alt/doc/write.htm b/admin/prints/#alt/doc/write.htm index 1f0bf3c..2a56d04 100755 --- a/admin/prints/#alt/doc/write.htm +++ b/admin/prints/#alt/doc/write.htm @@ -38,7 +38,7 @@ $pdf->Write(5,'Visit ');
//Then put a blue underlined link
$pdf->SetTextColor(0,0,255);
$pdf->SetFont('','U');
-$pdf->Write(5,'www.fpdf.org','https://www.fpdf.org'); +$pdf->Write(5,'www.fpdf.org','http://www.fpdf.org');

See also

diff --git a/admin/prints/#alt/fpdf_tpl.php b/admin/prints/#alt/fpdf_tpl.php index d513f32..86b74cc 100755 --- a/admin/prints/#alt/fpdf_tpl.php +++ b/admin/prints/#alt/fpdf_tpl.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/prints/#alt/fpdi.php b/admin/prints/#alt/fpdi.php index 86f8872..f203c6f 100755 --- a/admin/prints/#alt/fpdi.php +++ b/admin/prints/#alt/fpdi.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/prints/#alt/fpdi_pdf_parser.php b/admin/prints/#alt/fpdi_pdf_parser.php index 3f923f8..d001677 100755 --- a/admin/prints/#alt/fpdi_pdf_parser.php +++ b/admin/prints/#alt/fpdi_pdf_parser.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/prints/#alt/pdf_context.php b/admin/prints/#alt/pdf_context.php index f82834f..9e1a86e 100755 --- a/admin/prints/#alt/pdf_context.php +++ b/admin/prints/#alt/pdf_context.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/prints/#alt/pdf_parser.php b/admin/prints/#alt/pdf_parser.php index 34afdcd..b525ffd 100755 --- a/admin/prints/#alt/pdf_parser.php +++ b/admin/prints/#alt/pdf_parser.php @@ -8,7 +8,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// https://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/admin/prints/#alt/praxisstellen.pdf b/admin/prints/#alt/praxisstellen.pdf index f3f827d..8fd0167 100755 Binary files a/admin/prints/#alt/praxisstellen.pdf and b/admin/prints/#alt/praxisstellen.pdf differ diff --git a/admin/prints/#alt/tutorial/tuto1.htm b/admin/prints/#alt/tutorial/tuto1.htm index d1ed60d..f587c09 100755 --- a/admin/prints/#alt/tutorial/tuto1.htm +++ b/admin/prints/#alt/tutorial/tuto1.htm @@ -16,7 +16,7 @@ Let's start with the classic example: