pdf-l4 icon indicating copy to clipboard operation
pdf-l4 copied to clipboard

error: iconv(): Wrong charset, conversion from `auto' to `utf-8//IGNORE' is not allowed

Open montes2012 opened this issue 10 years ago • 1 comments

I got this error

iconv(): Wrong charset, conversion from auto' toutf-8//IGNORE' is not allowed

Route::get('generate', function()
{
    $pdf = App::make('dompdf');
$pdf->loadHTML('<h1>Test</h1>');
return $pdf->stream();
});

montes2012 avatar Sep 24 '14 19:09 montes2012

@montes2012 I had the same issue and installing the php mbstring extension fixed it.

Hope that help!

cinco-de-mauro avatar Oct 07 '14 17:10 cinco-de-mauro