Please note that the tcpdf_include.php file searches for the tcpdf.php file just for the default examples.
If you already know where your tcpdf.php file is, then you can set the path directly.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Now I,m using this path in my files and it works
require_once('../../tcpdf/config/lang/eng.php');
require_once('../../tcpdf/tcpdf.php');
Trying to update to latest version I tried this path and it does not work
require_once('../../tcpdf/examples/tcpdf_include.php');
If I put my file in examples folder this works
require_once('tcpdf_include.php');
What am I doing wrong?
Please note that the tcpdf_include.php file searches for the tcpdf.php file just for the default examples.
If you already know where your tcpdf.php file is, then you can set the path directly.
Setting the path direct did it
Thank you Nicola!
Hi Buck,
I am also getting the same error. what did you mean by setting the path direct did it? what did you do?