python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Could not instanciate mail function with PhpMailer
I'm using Laminas framework for a project I'm developing. I installed Node.js to use maildev as SMTP server for sending mail e-mails with PHPMailer and everything is working well.
The next step is to ...
Samuel N.
Votes: 0
Answers: 0
Laminas Barcode not rendering correctly
I'm attempting to render barcodes for a MVC application in laminas.
I can build the barcode object, and the renderer, but when I render it it blacks out the whole screen with a single white square in ...

Mr. Berzerk
Votes: 0
Answers: 0
laminas-migration migrate -> "command not found" (ubuntu 20.04)
I am trying to migrate a ZF3 app to laminas. I have installed composer via apt, and added its vendor/bin to the PATH environment variable, for global usage:
$ composer -V
Composer version 2.2.4 2022-0...
John Crest
Votes: 0
Answers: 2
How can I output a php image resource using Laminas MVC?
I currently output an image like this (inside a controller class):
ob_start();
header("Content-Type: image/gif");
imagegif($image_resource);
imagedestroy($image_resource);
...
Artem Goutsoul
Votes: 0
Answers: 1