Known Issues - Fastaval/Infosys GitHub Wiki
Error 500 trying to print participant sheet:
This may be an issue with missing barcode generator
- Use
sudo pear install Image_Barcode
to install barcode generator using PEAR
Exception on /deltager/spillersedler/
Getting an error related to syntax error, unexpected 'new' (T_NEW)
- /usr/share/php/Image/Barcode.php line 80 doesn't work on newer versions of PHP
changing it from
@$obj =& new $classname();
to
$instance = new $classname();
@$obj =& $instance;
seems to work
/deltager/spillersedler/ is empty
Getting an error related to PHP Fatal error: Declaration of & Image_Barcode_ean13::draw
- /usr/share/php/Image/Barcode/ean13.php line 156 doesn't work on newer versions of PHP where function signature has to match
changing it from
function &draw($text, $imgtype = 'png')
to
function &draw($text, $type = 'int25', $imgtype = 'png', $bSendToBrowser = true, $height = 60, $barwidth = 1)
seems to work