Ubuntu16.04: PHP7 MySQL connect

When I tried to run Zabbix locally, the PHP frontend page didn’t show by the following error. PHP Fatal error: Uncaught Error: Call to undefined function mysqli_connect() After adding “php-mysql” package, it turned to work fine. sudo apt-get install php-mysql…

JavaScript: UI test with Nightmare, mocha, and chai

with mocha-generators plugin require(‘mocha-generators’).install(); var Nightmare = require(‘nightmare’); var chai = require(‘chai’); var expect = chai.expect; var should = chai.should(); var settings = { url: ‘http://ats-min.com/dailymagiceye’, timeout: 50000 }; describe(‘Test Daily MagicEye’, function() { var nightmare; this.timeout(settings.timeout); beforeEach(function*() { nightmare…