if you are using pChart use this:
$myPicture->setFontProperties(array("FontName"=>"../fonts/Forgotte.ttf","FontSize"=>11));
On GoDaddy (shared hosting, Cpanel), I have to specify the path only after the domain:
My files are here:
URL: http://example.com/assets/fonts/verdana/verdana.ttf
path: /home/content/123456/html/example/assets/fonts/verdana/verdana.ttf
PHP code which works:
$font = 'assets/fonts/verdana/verdana.ttf';
Using other values for the path did not work.
Please check for the font folder under Resources.
My solve (works for me):
realpath('here/is/right/path/to/font.ttf');