123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- require_once('config/tcpdf_config_alt.php');
- $tcpdf_include_dirs = array(
- realpath('../tcpdf.php'),
- '/usr/share/php/tcpdf/tcpdf.php',
- '/usr/share/tcpdf/tcpdf.php',
- '/usr/share/php-tcpdf/tcpdf.php',
- '/var/www/tcpdf/tcpdf.php',
- '/var/www/html/tcpdf/tcpdf.php',
- '/usr/local/apache2/htdocs/tcpdf/tcpdf.php'
- );
- foreach ($tcpdf_include_dirs as $tcpdf_include_path) {
- if (@file_exists($tcpdf_include_path)) {
- require_once($tcpdf_include_path);
- break;
- }
- }
|