Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Ran into another error while trying to compile nginx from source ./configure: error: the HTTP image filter module requires the GD library. You can either do not enable the module or install the libraries. This has a quick fix as…
We’ve done guides on installing Odoo 8 and Odoo 9 on CentOS 7, it’s now time to install the latest version of Odoo, version 10, on CentOS 7.2 As always, we’ll start off with a fresh installation of CentOS 7.2.…
Installing the latest stable version of Mariadb, v. 10.1, is pretty straight forward. Start off by heading over to the repo configurator and getting the links for your version of Ubuntu: LINK For us the commands were as follows, enter them…
To add /modify the static IP address of your ubuntu installation follow the steps below: Find out which interface is connected to the internet, issue the following: user@ubuntu:~$ ifconfig enp0s3 Link encap:Ethernet HWaddr 08:00:27:1d:33:18 inet addr:192.168.123.153 Bcast:192.168.123.255 Mask:255.255.255.0 inet6 addr:…
We’ll be using a freshly installed server with Ubuntu Server 16.04, Ubuntu Desktop should also work. By default Ubuntu 16.04 ships with Python 3 but you won’t be able to call it if you issue the following at shell: python…
With CentOS 7 the process of adding the Epel repo has been simplified, you now install the repo with the CentOS package manager yum. With this new method, you don’t need to worry about manually re-adding the repo if it has gone out…
To find out which user is running the php process on your website put the following into a file inside your websites public directory <?php $processUser = posix_getpwuid(posix_geteuid()); print $processUser[‘name’]; ?>
A recent attempt at converting a 1.8GB database from MyISAM to InnoDB ran past 5 hours which triggered this quest to look for tweaks to improve the conversion speed. I was able to bring down the conversion time from 5+…
We recently ran a scan for a clients site (ssllabs.com) and got the following error messages This server supports anonymous (insecure) suites (see below for details). Grade set to F. This server is vulnerable to the POODLE attack. If…
Scenario: If you access a url with a trailing slash it causes the port number of nginx to be appended to the URL and in most cases either breaks the page or causes a blank page. To fix this you…