Moodle Analytics – Part 1. – Setting up the Python Machine Learning Backend in cPanel

UPDATE: the guide for moodlemlbackend 3.0.5 with Python 3.6 can be found in this article: Moodle Analytics – Part 1. – Setting up the Python Machine Learning Backend in cPanel – Reloaded Moodle Analytics machine learning models were introduced in Moodle 3.7.Moodle currently supports two predictions processors: PHP machine learning backend which comes with the […]

Read more
How to Unlock a Record in Temenos T24 BrowserWeb?

As always it is tricky to unlock a record in T24 BrowserWeb. When you get: LOCKED BY INGRESO NO EXISTE you can use the following steps to unlock: Enter RECORD.LOCK L Search for your locked record on the %RECORD.LOCK enquiry screen. Eg. @ID CT CUSTOMERID. Then click on the record “FBNK.CUSTOMER$NAU.CUSTOMERID“. It will appear on […]

Read more
Moodle 3.3 with MySQL SSL Connection in the Azure Cloud

Update: Microsoft Azure Database for MySQL: Use PHP (not) to Connect and Query Data article has now some new updates. Microsoft listened to my words, so I have found a documentation how to connect to Azure Database for MySQL with PHP via SSL connection. This can be found here: https://docs.microsoft.com/en-us/azure/mysql/howto-configure-ssl Of course this is not […]

Read more
How to Set Proxy in an Ubuntu Terminal?

Yes, because companies like to use proxy but I needed to access the Internet from my Ubuntu running on a VirtualBox. Just a few steps and access can be established: Edit the /etc/environment file with your favorite editor Add the following lines http_proxy=”http://myproxy.server.com:8080/” https_proxy=”http://myproxy.server.com:8080/” ftp_proxy=”http://myproxy.server.com:8080/” no_proxy=”localhost,127.0.0.1,localaddress,.localdomain.com” HTTP_PROXY=”http://myproxy.server.com:8080/” HTTPS_PROXY=”http://myproxy.server.com:8080/” FTP_PROXY=”http://myproxy.server.com:8080/” NO_PROXY=”localhost,127.0.0.1,localaddress,.localdomain.com” Logout and login again. Apt does […]

Read more