barryvdh / laravel-snappy

Laravel Snappy PDF
MIT License
2.63k stars 290 forks source link

Images process canceled XDG_RUNTIME_DIR #406

Closed MathiasWeisheit closed 3 years ago

MathiasWeisheit commented 4 years ago

Hi, if I include an image in my blade template like this: <img src="/app/storage/app/private/232/conversions/bild2-thumb200.jpg" class="img-fluid"> or <img src="./232/conversions/bild2-thumb200.jpg" class="img-fluid"> or <img src="/private/232/conversions/bild2-thumb200.jpg" class="img-fluid">

an error occurse: The exit status code '1' says something went wrong:↵stderr: "QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-nobody'↵Loading page

Do you have an idea?

MathiasWeisheit commented 3 years ago

i forgot the file: for the correct protocol <img src="file:/app/storage/app/private/232/conversions/bild2-thumb200.jpg" class="img-fluid">

so my blade temaple code <img src="{{ str_replace('/storage','file:/app/storage/app',$pos->image) }}" class="img-fluid">