disetec21
Member
- Jun 24, 2020
- 69
- 12
- 8
Remove line 644Anyone able to fix this?
ThanksRemove line 644
<p class="b_top"><?php echo display('powerbybdtask')?></p>
In file: Application/Modules/Ordermanage/views/dueinvoicedirectprint.php
And remove line 184
<p class="text-note text-primary text-center mb-0"><?php echo display('powerbybdtask')?></p>
In file: Application/Modules/Ordermanage/views/dueinvoiceprint.php
anyone got a link for download the provided link is dead
dl link removed
Pls enter only random number as key... No alphabetsbro what to change unable to understand it
can you tell where to change the codePls enter only random number as key... No alphabets
@EviL CAN U SHARE IT AGAIN ?Download file is not available can anyone give it?
Thank you!
dl link removedDownload file is not available can anyone give it?
Thank you!
thanks but dl link removeddl link removed
Version 2.7 (08/04/2021) untouched
Download file is not available can anyone give it?
Thank you!
dl link removed
thanks but dl link removed
i will wait for untouched versio
Version 2.7 (08/04/2021) untouched
How To Null Bhojon 2.7:
1. Download Nulled Files from the link below
2. Replace These files in exact same path
3. Use any purchase key for validation.
4. Enjoy Bhojon 2.7 Nulled
give your reaction to my efforts it will encourage me for the future work
The dev altered some files in the codeigniter framework. Also he added a library for generating pdf "dompdf" but forgot to remove the archive "dompdf.zip" that have a size of 7.07 Mb. For best practices, this library should be in "application/libraries".
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
define('DOMPDF_ENABLE_AUTOLOAD', false);
require_once("./vendor/dompdf/dompdf/dompdf_config.inc.php");
class Pdfgenerator {
public function generate($html, $filename='', $stream=TRUE, $paper = 'A4', $orientation = "portrait")
{
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->set_paper($paper, $orientation);
$dompdf->render();
if ($stream) {
$dompdf->stream($filename.".pdf", array("Attachment" => 0));
} else {
return $dompdf->output();
}
}
}
bro in application/libraries there is a file named "pdfgenerator.php" which is calling library from the vendor folder below is the code of the above-mentioned file
Code:<?php defined('BASEPATH') OR exit('No direct script access allowed'); define('DOMPDF_ENABLE_AUTOLOAD', false); require_once("./vendor/dompdf/dompdf/dompdf_config.inc.php"); class Pdfgenerator { public function generate($html, $filename='', $stream=TRUE, $paper = 'A4', $orientation = "portrait") { $dompdf = new DOMPDF(); $dompdf->load_html($html); $dompdf->set_paper($paper, $orientation); $dompdf->render(); if ($stream) { $dompdf->stream($filename.".pdf", array("Attachment" => 0)); } else { return $dompdf->output(); } } }