Welcome to My Blog

IT related tech tips since 2006

Login

Blog History

Form POST missing data when added via JQuery .load()

https://forum.jquery.com/topic/reload-dom-after-injecting-form-elements#14737000002044320 Just had an issue where I was using JQuery to add form fields to a page and when I would submit the form all the added fields were missing. Some forums suggested that I check the...

Lets Encrypt

Was doing some work for an Interior Designer based in Newcastle NSW who is using Squarespace as a hosting platform. Squarespace has partnered with Let's Encrypt to provide SSL https connections for every one of their websites. I also have a friend who runs a Building...

Command Line xTuple DB restore on mac

Command Line xTuple DB restore on mac

This is for a restore to a remote host running postgresql on a custom port and using the pg_restore provided by pgAdmin on a mac. gzcat xtuple-2016-11-07_1412.dump.gz | \ /Applications/pgAdmin3.app/Contents/SharedSupport/pg_restore \ -v -p 5434 -h 10.20.20.20 -U...

xTuple Postbooks Edition 4.10.0 RC FTW

xTuple Postbooks Edition 4.10.0 RC FTW

So for a while I was using Simple Invoices to raise invoices for my Small IT Consultancy Business. However in a short space of time I found that it just didn't have the bells and whistles that I needed. Being an avid fan of Open Source software I looked around and...

Perl Script to Parse PDF Invoice and Send Email

This script uses perl to run pdftotext to grab the text from a PDF Invoice. It parses and extracts document meta data and then uses that to construct a meaningful filename and attach and send the PDF to the correct recipient. You could automate this by placing a watch...