Installing PdfExport extension for mediawiki

From Notes_Wiki

Home > CentOS > CentOS 6.x > Web based tools or applications > Mediawiki configuration > Installing PdfExport extension for mediawiki

To install pdfExport extension use following steps:

  1. Visit http://www.mediawiki.org/wiki/Special:ExtensionDistributor/PdfExport and download version of PdfExport compatible with Mediawiki version installed
  2. Copy the link and do wget of link in wiki extensions folder. You can also download the file using browser and copy it to extensions folder.
  3. "tar xzf PdfExport*.tar.gz" in extensions folder
  4. rm -f PdfExport*.tar.gz
  5. yum -y install htmldoc
  6. Edit 'LocalSettings.php' and append:
    require_once("$IP/extensions/PdfExport/PdfExport.php");
    $wgPdfExportHtmlDocPath = '/usr/bin/htmldoc';
    It is good idea to verify location of htmldoc package using 'which htmldoc' command
  7. The PdfExport extension assumes writable folder named tmp inside $wgUploadDirectory. Hence go to upload directory and create a folder named 'tmp' inside it. Change the permissions on this folder to '777'.



Home > CentOS > CentOS 6.x > Web based tools or applications > Mediawiki configuration > Installing PdfExport extension for mediawiki