I'm trying to generate a barcode using this: https://github.com/davidscotttufts/php-barcode/.
This method requires to install gd library.
I install this library like this on my linux based server:
$ apt-get install php5-gd
After the instalation I restarded the server and looked if it was instaled like this:
php -m
And it was.
Now I added this line to my code to genarate a barcode(I'm generating the link with the twig function "asset"):
<img alt="testing" src="{{ asset('bundles/kopictadmin/code/barcode.php?text=testing') }}"/>
This gives my the 'Alt' attribute instead of the picture. I'm generating css just like this only branching of to 'css' folder instead of the 'code' folder.
Somebody any idea whats wrong?