Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Composer lets you manage PHP package dependencies on a per-project basis. You install Composer like so: sudo curl -sS | php Moved it to the suggested location: mv composer.phar /usr/local/bin/composer Still got “composer: command not found” when verifying the install?…
On of our server providers was running a deal on servers equipped with the newly released AMD Ryzen CPUs. We got a couple to test them for future placements. Right off the bat we started experiencing issues with them, the…
Got this while trying to compile nginx from source. ./configure: error: the Google perftools module requires the Google perftools Issue the following at shell to fix this: yum install gperftools-devel
Yet another error while trying to compile nginx from source. ./configure: error: the GeoIP module requires the GeoIP library The fix is simple, issue the following at shell: yum install geoip-devel
If you run into the following error while compiling nginx from source, follow the steps below: ./configure: error: perl module ExtUtils::Embed is required Issue the following at shell: yum install perl-ExtUtils-Embed That’s it.
Ran into this error when I was trying to compile nginx from source: ./configure: error: the HTTP XSLT module requires the libxml2/libxslt libraries. You can either do not enable the module or install the libraries. Luckily there’s a quick fix…
The elusive latest version of OpenSSL, we finally meet. As everyone knows, CentOS does not always ship with the latest version of softwares. The core repo focuses more on stability rather than freshness. We recently needed to update OpenSSL on…
Python PIP is a package installed similar to Yum on CentOS. It is the recommend / preferred way of installing Python packages on machines. To get started make sure you have the epel-release repo installed, make sure by running the…
Ruby language is open source, it is simple and focuses on productivity while at the same time has an elegant syntax that is easy to read and understand. We’ll be installing the latest version released in April 2019, version 2.6.…
CentOS is really slow to update versions of software’s it maintains so we’ll have to add an external repo to install PHP 5.6 on our server. Make sure you backup everything on your server. Start off by removing any previous…