Category Archives: Xampp
Connection reset while using DOMPDF on production server
Here is the solution (I am using XAMPP 1.7.1) :-
In httpd.conf located in apache/conf/ search
#LoadModule rewrite_module modules/mod_rewrite.so
if its commented using # do UN-comment it
then open dompdf_config.inc.php file
and find DOMPDF_PDF_BACKEND
if it set to auto change it to smth like below
define(“DOMPDF_PDF_BACKEND”, “auto”); –> define(“DOMPDF_PDF_BACKEND”, “smth”);
For further information read below:-