perlego-downloader icon indicating copy to clipboard operation
perlego-downloader copied to clipboard

PdfMerger Error

Open MajidAmin112 opened this issue 2 years ago • 2 comments

Hello Team,

There is an error during merger pdf files, A blank pdf file generated in folder. what to do now?

Please resolve the issue.

MajidAmin112 avatar Feb 18 '23 07:02 MajidAmin112

I have the same issue with bookID "3476307" image

romantci2710 avatar Feb 25 '23 16:02 romantci2710

I had the same Error. It was fixed when i added the line 'executablePath': 'C:\Program Files\Google\Chrome\Application\chrome.exe', in line 174. It looks like this now:

# start headless chrome
browser = await launch(options={
		'headless': True,
		'autoClose': False,
                    'executablePath': 'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe',
		'args': [
			'--no-sandbox',
			'--disable-setuid-sandbox',
			'--disable-dev-shm-usage',
			'--disable-accelerated-2d-canvas',
			'--no-first-run',
			'--no-zygote',
			'--single-process',
			'--disable-gpu',
			'--disable-web-security',
			'--webkit-print-color-adjust',
			'--disable-extensions'
		],
	},
)

kasziber avatar Feb 26 '23 13:02 kasziber