Browse Source

Merge branch 'master' of ssh://200.144.254.107:2245/LInE/Ifractions-web into fix/moodle-bugs

lairaalmas 1 year ago
parent
commit
10bfd2d40c
2 changed files with 10 additions and 10 deletions
  1. 2 2
      README.md
  2. 8 8
      php/README.md

+ 2 - 2
README.md

@@ -16,7 +16,7 @@ Follow the description below based on in which platform you want to run iFractio
 
 * Extract the content of `Ifraction-web.zip` inside the server directory
 
-* Check that the variable `moodle` is set to **false** inside `./js/globals/globals_control.js`
+* Check that the variable `moodle` is set to **false** inside `js/globals/globals_control.js`
 
 * It can now be accessed through the **browser** (e.g http://localhost/Ifractions-web)
 
@@ -34,7 +34,7 @@ Follow the description below based on in which platform you want to run iFractio
 
 * To download and setup **iAssign** access: http://200.144.254.107/git/LInE/iassign
 
-* Be sure to check that the variable `moodle` is set to **true** inside `./js/globals/globals_control.js`
+* Be sure to check that the variable `moodle` is set to **true** inside `js/globals/globals_control.js`
 
 * With **iAssign** installed, as a Moodle professor on you'll be able to:
   

+ 8 - 8
php/README.md

@@ -9,8 +9,8 @@ First you'll need a **MySQL** database installed on the server (more info in htt
 Now, in order for iFractions to successfully establish a connection to the database you must:
 
 1. create and set up the database for the game.
-2. update `./php/save.php` 
-3. update `./js/globals/globals_functions.js`
+2. update `php/save.php` 
+3. update `js/globals/globals_functions.js`
 
 ## 1) Creating the database for iFractions
 
@@ -41,7 +41,7 @@ Note that each column has the prefix `line_`.
 
 ## 2) `save.php`
 
-You have to set values for the following variables in `./php/save.php` to match the database's:
+You have to set values for the following variables in `php/save.php` to match the database's:
 
 	$servername = "localhost"; 	// INSERT MySQL server
 	$username = "your_db_username";	// INSERT MySQL user name
@@ -51,7 +51,7 @@ You have to set values for the following variables in `./php/save.php` to match
 
 ## 3) `globals_functions.js`
 
-Inside `./js/globals/globals_functions.js` there's a global function called `sendToDatabase()`. When the player's information is collected after each game, the game file sends it as a parameter to `sendToDatabase()`. It makes an asynchronous call to `./php/save.php`, that executes the connection to the database.
+Inside `js/globals/globals_functions.js` there's a global function called `sendToDatabase()`. When the player's information is collected after each game, the game file sends it as a parameter to `sendToDatabase()`. It makes an asynchronous call to `php/save.php`, that executes the connection to the database.
 
 	const data = 'line_ip='// INSERT the IP of the machine where the MySQL was set up
 		+ '&line_name=' + // player's name
@@ -62,11 +62,11 @@ Inside `./js/globals/globals_functions.js` there's a global function called `sen
 # Where do we use the database in the code?
 
 There is a function `postScore()` in every game file:
-* `./js/games/squareOne.js`
-* `./js/games/squareTwo.js`
-* `./js/games/circleOne.js`
+* `js/games/squareOne.js`
+* `js/games/squareTwo.js`
+* `js/games/circleOne.js`
 
-After each level is completed (with the player's answer being correct or not), before going back to the level map, the function `postScore()`, is called. It joins all the player's progress information into a string (as can be seen below), that is sent as a parameter to `sendToDatabase()`, from `./js/globals/globals_functions.js`, that sends it to the database.
+After each level is completed (with the player's answer being correct or not), before going back to the level map, the function `postScore()`, is called. It joins all the player's progress information into a string (as can be seen below), that is sent as a parameter to `sendToDatabase()`, from `js/globals/globals_functions.js`, that sends it to the database.
 
 	const data = '&line_game=' + // collect game shape
 	+ '&line_mode=' + // collect game mode type