By editor, 24 October, 2016 Repair MySQL Database Error Tags Server Database Repair all tables mysqlcheck -u root -p --auto-repair --check --all-databases Repair a database mysqlcheck -u root -p --repair --databases databasesname
By editor, 21 October, 2016 SSL / TLS With Let's Encrypt Tags Server SSL/TLS Let's Encrypt is a free, automated, and open certificate authority allow you to get SSL / TLS Certificates for free of charge. https://letsencrypt.org/
By editor, 21 October, 2016 Virtualmin Tips Tags Server Linux 1. How to regain access to Webmin with IP Access Control enabled Edit : /etc/webmin/miniserv.conf Add your IP to : "allow" Example : allow=12.34.56.78 98.76.54.32
By editor, 19 October, 2016 Drupal 8 RESTful Web Services Tags Drupal 8 Code WebService Step 1: Activate RESTful Webservice Active modules: HAL (hal) RESTful Web Services (rest) HTTP Basic Authentication (basic_auth) Download and active contrib modules: REST UI (restui)
By editor, 13 October, 2016 Use Drupal 8 Service and Dependency Injection, Autowire Tags Drupal 8 Code Services You can call drupal 8 services statically as D7, but it is not the best practice (Like Here). Example : $uuid = \Drupal::service('uuid')->generate();