https://docs.moodle.org/38/en/Custom_certificate_module
Arquivo da tag: Moodle
SSL no Moodle com Let’s Encrypt no Ubuntu
I unable to restart Apache – LAMP/MAMP/WAMP
It seems there is a service using this port. You could kill it by executing:
sudo kill -9 $(sudo lsof -t -i:80)
Then, try to start Apache again.
Moodle URL Redirection
I ended up doing the following to get this to work:
In /opt/bitnami/apache2/conf/httpd.conf, change the following lines:
Comment out
DocumentRoot ‘/opt/bitnami/apache2/htdocs’
Add
DocumentRoot ‘/opt/bitnami/aps/moodle/htdocs’
Comment out
Directory ‘/opt/bitnami/apache2/htdocs’
Add
Directory ‘/opt/bitnami/apps/moodle/htdocs’
Seems to work for me.
Fatal error: $CFG->dataroot is not writable, admin has to fix directory permissions! Exiting.
Alterar idioma de inglês para português de todos os usuários no Moodle com comando SQL
UPDATE mdl_user SET lang='pt_br' WHERE lang='en'