Interventi di Howard Miller

Immagine Core developers Immagine Documentation writers Immagine Particularly helpful Moodlers Immagine Peer reviewers Immagine Plugin developers
This might give you a start. As ever it was all bodged together in a rush so please don't judge me sorridente
 
I also got 1.4 working, but I had to modify the Moodle code to get it to run and I can't remember what I did. 
 
Docker compose...

version: '3'
services:
  web:
    build:
      context: .
      dockerfile: PHP.Dockerfile
    restart: unless-stopped
    ports:
      - "8081:80"
    volumes:
      - ./webroot:/var/www/html
      - ./moodledata:/var/www/moodledata
      - ./php.ini-development:/usr/local/etc/php/php.ini
  db:
    image: mysql:5.7
    volumes:
      - ./my/custom:/etc/mysql/conf.d
      - mysqldata:/var/lib/mysql
    ports:
      - "3307:3306"
    restart: unless-stopped
    environment:
      MYSQL_ROOT_PASSWORD: "purple"
      MYSQL_USER: moodleuser
      MYSQL_PASSWORD: "moodlepass"
      MYSQL_DATABASE: moodle19
volumes:
  mysqldata:
~    
      
PHP.Dockerfile:
 

FROM php:5.6-apache-jessie

ADD root/ /
# Fix the original permissions of /tmp, the PHP default upload tmp dir.
RUN chmod 777 /tmp && chmod +t /tmp
# Remove jessie-updates from sources (https://lists.debian.org/debian-devel-announce/2019/03/msg00006.html)
RUN sed -i '/jessie-updates/d' /etc/apt/sources.list
RUN sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list
RUN sed -i 's|security.debian.org|archive.debian.org|g' /etc/apt/sources.list
RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com 7638D0442B90D010
# Setup the required extensions.
RUN /tmp/setup/php-extensions.sh
RUN /tmp/setup/oci8-extension.sh

RUN mkdir /var/www/moodledata && chown www-data /var/www/moodledata && \
    mkdir /var/www/phpunitdata && chown www-data /var/www/phpunitdata && \
    mkdir /var/www/behatdata && chown www-data /var/www/behatdata && \
    mkdir /var/www/behatfaildumps && chown www-data /var/www/behatfaildumps

 
Immagine Core developers Immagine Documentation writers Immagine Particularly helpful Moodlers Immagine Peer reviewers Immagine Plugin developers
Yeh - get that but it's another THING and I don't see it being enough of a priority to sit down and figure it out. I know how that sounds but it's just the reality of having slightly more stuff to do than there are hours in the day.
Immagine Core developers Immagine Documentation writers Immagine Particularly helpful Moodlers Immagine Peer reviewers Immagine Plugin developers
I may be being completely useless... but I simply couldn't find https://moodledev.io/general/documentation from the links at the top of the page, even though I know it's there.

Regarding making changes... I KNOW I'm being "that guy" but the process is just too much trouble. I don't have the hours in the day. That's a shame because I've always said to people, "if you figure it out, improve the docs with the bits that weren't clear to you".
Immagine Core developers Immagine Documentation writers Immagine Particularly helpful Moodlers Immagine Peer reviewers Immagine Plugin developers

This is possibly a silly question - but I'm confused. 

I noticed something missing on one of the pages and was going to fix it. But I cannot. Is this because I don't have permission or because it's no longer a Wiki? I have a vague recollection of reading something about these pages changing but can't find it now. 

Media dei voti:  -
Immagine Core developers Immagine Documentation writers Immagine Particularly helpful Moodlers Immagine Peer reviewers Immagine Plugin developers
I don't know anything about Windows. However, 'run now' uses the command line version of PHP and that is completely unrelated / different to the PHP that's running the web stuff. It may require different permissions.
 
My next thought would be, how do you have cron setup? Is it working at all?