Write a post on your Wordpress site explainig all these steps. Make the screenshots you need to help reading.
We can add users one by one or a lot automatically. In site administration panel we can find user option with two links, Add new user and Upload users.
Create a user with the first option (your user, with your name and username).
After that add 3 classmates usign Upload user option where you can find a csv file with data separated by some symbol, in this case it could be commas (,) or semicolons (;).
If we open this csv file with a text editor we see that the first line represents the titles of the data. The next ones will be user data.
We also can open this file with a spreadsheet program, for example, LibreOffice Calc. Once we open the file we'll see the file options where we indicate that data is separated by commas.
Then a spreadsheet will be opened with the rows that the file contains. The first one is data names and the rest is user data.
So, add four classmates and use an extra column for the password.
When you finish remember to save file with csv extension.
Now you can upload this file to add the users.
Go to Site Administration > Course and create the next information:
Categories: SMX and Batxillerat
Courses: Seguretat informĂ tica (SMX Category), Aplicacions web (SMX Category) and Tecnologies de la InformaciĂł i la ComunicaciĂł (Batxillerat Category).
After that we're going to add participants to the courses. In participants option of these courses, add the following users:
Seguretat InformĂ tica: user 1 and 2
Aplicacions web: user 1
Tecnologies de la InformaciĂł i la ComunicaciĂł: user 2 and 3
So, user1 will have two courses, user2 will have two courses, user3 will have one course and user4 will have no courses.
You can add screenshot of the participants view logging in into their users.
Install the plugins and skins using this documentation.
After they're installed you must go to theme selector and change theme.
This plugin enable Collapsed Topics on Course format option on Course Administration. It allows to close and open different units inside of a course.
Before plugin
After plugin
RESULT
This plugin enable another course format, Pop up activities. It allows to displays resources and simple activities embedded in modals instead of redirecting from the course page.
Before plugin
RESULT
This plugin enable a new type of activity inside of a course, the mindmap.
First of all we must set maintenance mode enable because we don't want users use moodle while we are doing backup. So we can do that from Maintenance interface or from terminal. The options are the next one: enable, disable or enable after X minutes:
sudo -u www-data /usr/bin/php admin/cli/maintenance.php --enable
sudo -u www-data /usr/bin/php admin/cli/maintenance.php --disable
sudo -u www-data /usr/bin/php admin/cli/maintenance.php --enablelater=10
Create a backups folder inside of home or / folder where we will leave backup files. After that create database copy with this sentence (remember set database username):
mysqldump -u usuari_db -p -C -Q -e --create-options nom_bbdd> copia01.sql
If you have any error, give more permissions to the user with this command in mysql program:
GRANT PROCESS ON *.* TO 'usuari_db'@'%';
copia01.sql file has all information from moodle database.
Compress /var/www/moodledata and /opt/moodle with these instructions:
sudo tar -cvf copia_moodledata.tar.gz /var/www/moodledata
sudo tar -cvf copia_moodle.tar.gz /opt/moodle
We're going to restore in a new database and other folders. For example, add numer 2 after database name and folders (moodle_db2, moodledata2, moodle_vf2).
Create new database and grant permissions to database user. After that run this command:
mysql -u usuari_bd -p nom_bd_nova < copia01.sql
Create folders /var/www/moodledata2 and /opt/moodle2 and uncompress the files into them:
sudo tar -xvf file.tar.gz
Create link to /var/www/html with your initial name and initial surname and a 2 (moodle_vf2).
After finish, set config.php with new database and new folders.
Remove maintenance mode.
SHOW THE RESULT