• Moving Back to wordpress

    I failed. but I had fun trying and learnt things, so I’m happy. For this blog I tried to use a static site generator, I thought it would make my blog simpler and allow me to post faster. I thought it would make my blog easier to host and easier to secure with no database to run. Here I am, installing WordPress again. So what went wrong? It turns out I really like the ability to log into a place to create content and post. Sure, I could create static content with markdown formatted text, but I had to remember the file format, remember how to link images (and upload them somewhere), then remember where I saved the generator script, and after all that, I didn’t get around to posting. The trigger to reinstall WordPress was actually needing something for my business site (roots.uk). We were hosting with Squarespace but I was finding it was slow delivering pages and Google’s webmaster tools were telling me we needed to better ‘or else’… Anyway, installing WordPress was a breeze, a day of setup to manually copy all the content from the Squarespace pages to new WordPress pages. Then another day of optimisation and I went from a page speed score of something like 60/100 to 95/100. To be fair to SquareSpace part of the issue was linking to YouTube videos, which in turn requires a large amount of JavaScript download. I found a WordPress plugin called WP-youtube-lyte that grabs the video thumbnail and makes it a clickable link to YouTube for visitors that press play. Once I had WordPress for work, it was trivial to add WordPress alongside it for this blog, so I have, and here you are. As for the old content, well I *might* put that back into the wordpress database but for now and probably until the next code overhaul there\’s an archive folder of the static pages that survived the migrations.  I had a backup, so restoring the old site and adding the one static generated page into turned out to be easier than I expected.

  • Moving from wordpress to a static site generator

    A long time ago I created my own website and created each page by hand in Windows notepad. I probably even used some server side includes and I certainly used Apache as the web server. I don’t have copies of that site. In 2004 I moved to a blogging system called MovableType

    In 2012 I migrated from Movabletype to WordPress and today in 2020 I’ve migrated my blog to static files, much like the very first pages I created. I’m not writing every page by hand, but using a static site generator that takes simple content files and combines them with templates to make the site as you see it. The generator manages turning formatted text into links, for example

    [blogging system called MovableType]({filename}/about-this-site.md)

    generates the link that you see in the paragraph above to my first ever blog post, or at least, the current generated version of the original blog post.

    The biggest motivation for me to switch was the hassle of keeping PHP, WordPress and all the WordPress plugins and templates up to date to limit the chance of my server being compromised by bad-people(tm). I don’t post here as often as I used to and having a nice web interface to write in really isn’t important to me. I’m comfortable writing in a terminal then running a command or two to generate new pages. This means I don’t need PHP, or a database. It also means I can no longer host comments (although that is possible through third party systems, so perhaps I’ll add them back)

    Of course, there’s a time and effort cost to setting up and learning new software but so far most of it has been intuitive or very similar to things I’ve used before. I chose to use Pelican which is written in Python. Although I’m more comfortably in Ruby, I’m currently working on my Python skills. Actually I haven’t needed to look at any of the Python code! Pelican had clear an easy to follow instructions, I found a template I liked called Flex which I haven’t had to touch at all (although eventually I’ll turn the default red links into my preferred default of blue). There was a plugin that took my WordPress XML backup and extracted all the old blog posts and generated the static files. I’ve also had to use a WordPress plugin to get a list of WordPress URLS to create Nginx rewrites so that people coming from search engines to old pages land on the new pages.

    All in all, this has been a pretty straight forward migration. There are a few issues to resolve. Several of the images have broken links and I know that some pages have artefacts to fix (and some of those related to the 2012 migration and I never got around to fixing them).

    Speaking of images, here’s my first image embeded into a page, a screenshot of the old WordPress site

    and for good measure the same page on the new SITEURL


  • Magic letterhead tray – making preprinted stationary automatically on plain white paper

    A couple of years ago I stopped buying letterheads for my business and instead created a special print queue that merged any document sent to print with a PDF letterhead template.

    Last month, it stopped working on just my PC. I’m not quite sure if it broke from a Windows update or something else had changed but the result was I needed to start from scratch and make it all again. My original notes weren’t very good and in 3 years time I’ll look back on these notes and think much the same. If you’re looking to print letterheads on demand too, these notes may help you achieve it.

    Getting here took me far to long (days!) but the end result is not having to buy preprinted stationary or an extra tray for our printer.

    Summary of what I’m about to do:

    • Create a Print Server (a virtual machine) running linux (Ubuntu) and CUPS (common unix printing system)
    • Connect the Print server to the network printer
    • Create a queue for the printer and share that queue to the network.
    • Within that queue, call a script that turns the print document into a PDF, merge that with a pre created ‘letterhead’ PDF
    • Send that newly merged document to the printer.

    Things that are good to know: Issues and solutions:

    • Sometimes windows doesn’t like browsing for printers, giving error .“Couldn’t connect to printer. Check the printer name and try again. If this is a network printer, make sure that the printer is turned on and that the printer address is correct”
      Solution was to open ‘services’ and restart ‘Print spooler’ service
    • I also found using “http:” for printer connections rather than https seemed to help.

    Instructions from start to finish (mostly)…

    Create virtual server

    # We need to resize the logical volume
    to use all the existing and free space of the volume group
    $ lvm
    lvm> lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv
    lvm> exit
    # And then, we need to resize the file
    system to use the new available space in the logical volume
    $ resize2fs /dev/ubuntu-vg/ubuntu-lv
    resize2fs 1.44.1 (24-Mar-2018)
    Filesystem at /dev/ubuntu-vg/ubuntu-lv is mounted on /; on-line resizing required
    old_desc_blocks = 1, new_desc_blocks = 58
    The filesystem on /dev/ubuntu-vg/ubuntu-lv is now 120784896 (4k) blocks long.
    # Finally, you can check that you now
    have available space:
    $ df -h
    Filesystem                         Size  Used Avail Use% Mounted on
    udev                               3.9G     0  3.9G   0% /dev
    tmpfs                              786M  1.2M  785M   1% /run
    /dev/mapper/ubuntu--vg-ubuntu--lv  454G  3.8G  432G   1% /

    Install CUPS

    1. Openssh-server was installed by default, Login and get IP address
      >ip addr show
    2. Install cups
      #sudo apt install cups
    3. Add my local user to cups lpadmin group
      usermod -aG lpadmin <myusername>
    4. Configure cups
      1. I had problems with cups rewriting the config files I’d changed by hand when the server rebooted. The solution is NEVER EDIT THE CUPS CONFIG FILES WHEN THE SERVER IS RUNNING!
        systemctl stop cups.service
      2. Configure following in /etc/cups/cupsd.conf
        Listen *:631 
      3. Comment out the other listen directives. *:631 listens on all connections but you can also restrict to a specific network with 192.168.1.230:631
    5. Need allow access to the web GUI and web admin GUI by adding an ‘Allow all’ line to cupsd.conf. Note: This may not be a good idea if you can’t trust every device on your network. In that case I think you can restrict access by IP address or other auth methods.

    <Location />
    Order allow,deny
      Allow all
    </Location>

    <Location /admin>
      Order allow,deny
      Allow all
    </Location>

    systemctl start cups.service

    1. Turn off discovery of remote printers
      • There seems to be an issue with remote discovery of printers. They disappear through reboot and maybe other triggers.  So for now I’m manually adding the network printers in the hope they are retained (this has worked so far…)

    systemctl stop cups-browsed.service
     

    /etc/cups/cups-browsed.conf

    BrowseRemoteProtocols none
    # was BrowseRemoteProtocols dnssd cups

    systemctl start cups-browsed.service

    Add printers via the CUPS web interface

    1. Go to web interface in browser, http://<ip>:631

    Check box “share printers connected to this system”

      + check allow printing from the internet

    Nb: it will redirect you to https pages then ask for your username/password as per the account you added to the lpadmin group.
    I decided to call my print server “Mars” and setup up print queues using the format ‘server’+’printer model name’+’optional descriptive label’

    1. Add network printers manually to print server.
      1. Administration > Add Printer
      2. Other network printers > Internet Printing Protocol (ipp)
      3. Connection address: “ipp://<ip>:631”  where IP is the printer IP. EG: ipp://192.168.1.220:631
      4. Name “mars”+model+(dash)+description”, eg “marsP6035” for the default printer “marsP6035-letterhead” for magic letterhead, or maybe “marsP6035-duplex” for a forced duplex mode
      5. Leave the description blank (it appears in the  windows print dialog boxes, better for us to have useful description detail as part of the name).
      6. Check the box ‘share this printer’
      7. Use the manufacturer provided PPD file (mine all came from the manufacturers install files, in a sub directory called ../linux/eu/)
      8. Test print to make sure it works

    Footnote: Adding printers for the magic letterhead has been problematic. The last printer I set up needed to be set up as described here https://www.steveroot.co.uk/2022/11/03/automatic-letterheads-from-a-printer/ using generic CUPS driverless drivers rather than the manufacturer provided PPD.

    Install PDFtk

    1. Apt install pdftk
    2. disable aparmour, it seems to block the scripts we’re going to create. I guess there’s an easy way to allow them but I don’t know what it is.

    AppArmor can be disabled, and the kernel module unloaded by entering the following:
    sudo systemctl stop apparmor.service
    sudo update-rc.d -f apparmor remove

    To re-enable AppArmor in the future enter:
    sudo systemctl start apparmor.service
    sudo update-rc.d apparmor

    Add the magic letterhead code

    1. The knowledge of this came from from http://technik.blogs.nde.ag/2012/08/28/watermarking-printouts-in-the-linux-world/ but I have slightly modified parts to suit my needs
    2. Copy your Letterhead.pdf artwork into /etc/cups
    3. Setup watermark scripts in /usr/lib/cups/filters named: letterheadwatermark

    Chmod 755

    #!/bin/bash

    logfile=/tmp/watermarkpdf.log
    watermark=/etc/cups/Letterhead.pdf

    tempdir=$(mktemp -d)

    echo $(date) “$0 $* (tempdir: $tempdir)” >> $logfile

    # Command line arguments
    job=”$1″
    user=”$2″
    title=”$3″
    numcopies=”$4″
    options=”$5″
    filename=”$6″

    if [ -z “$filename” ] ; then
            filename=”-”
    fi

    if [ $# -ge 7 ]; then
            cat $6 > $tempdir/ps.in
    else
            cat > $tempdir/ps.in
    fi

    # convert Postscript to PDF
    /usr/bin/ps2pdf $tempdir/ps.in $tempdir/pdf.in 2>>$tempdir/err

    # watermarking.  ‘stamp’ puts letterhead over document, ‘background’ puts it under. Some documents send all white background so letterhead will not show through white areas.
    /usr/bin/pdftk $tempdir/pdf.in stamp “$watermark” output $tempdir/pdf.out 2>>$tempdir/err

    # convert PDF to Postscript
    /usr/bin/pdftops $tempdir/pdf.out – 2>>$tempdir/err

    # clean-up. I don’t remove the tmp files as they are very useful to find out what stage of this script is failing
    # rm -rf $tempdir

    From <http://technik.blogs.nde.ag/files/2012/10/watermark.sh>

    1. In /etc/cups create a link to the cups filter folder, eases finding things later
      Ln -s /usr/lib/cups/filter/ cups_filter_directory
    2. Copy script into filter folder, chmod 755 & chown to root
    3. Restart again: systemctl restart cups.service
    4. I’m using the kyocera PPD from <myserver>/software/printer then inserting cupsfilter line to make it print a letterhead. I wanted to use the IPP everywhere PPD (default in cups) but that didn’t work. I suspect the IPP everywhere PPD gets the first input as PDF whereas the kyocera PPD gets the first input as postscript. I tried skipping the PStoPDF but that didn’t work either and I stopped searching once I got it working with the kyocera PPD
    5. Modify the printer PPD (/etc/cups/ppd/<your-print-queue.ppd> to call the script.
      systemctl stop cups.service
      then add this as second line:
      *cupsFilter: "application/vnd.cups-postscript 100 letterheadwatermarkpdf"
      then
      systemctl start cups.service

    Add the printer to the client

    1. Add printers to clients
      1. Printer and scanners > add printer or scanner
      2. From the printers discovered, select printer, eg: “marsP6035 @ marsprint”. Selecting the @server i’m guessing is selecting the IPP service.
      3. Send a test print, hope it works 🙂
    2. Alternative method that had issues of print being scaled down, perhaps near a5 printing instead of a4 before the stamp/watermark applied. Ps2pdf command seems to be the issue here.
      1. Add printer, The printer that I want wasn’t listed, select a shared printer by name
      2. Paste the url from the printers page on the server, it will be like:
        http://192.168.1.230:631/printers/marsP6035
      3. Note: not https (sometimes that seems to fail, not sure why)
      4. Driver: Microsoft > Microsoft PS Class Driver
    3. Add printer directly to computer with manufacturer driver file
      1. This is useful because the Kyocera drivers allow more print options and control, eg paper type, make poster from multiple pages, etc.
      2. Test print… Hopefully this works too !

Search this site


Free apps

  • birthday.sroot.eu – Your birthday or other celebration date based on [years on other planets] / [how many seconds/days] / [how far you’ve travelled around the sun]
  • stampulator.sroot.eu – Calculates the combination and how many 1st, 2nd, large 1st and large 2nd class Royal Mail stamps you need on large envelopes and packets

Recent posts


Archives


Categories