Menu

Advanced Users

Vishwajit Kolathur

Those looking to edit the program to their needs, here is a 411
The main region you will probably be concerned with is where it saves your files and also where the course list is stored.
script.pl / source.pl line numbers

 14 #Global Variables
 16 $local_address = "http://172.16.100.125/";
 17 $remote_address = "http://111.93.5.216/";
 18 $name = "Academics"; #Folder name under which to store
 19 $permissions = '0755'; #folder permissions
 20 $folder = File::HomeDir->my_home . "/$name";
 21 $fileSpec =".courses.txt";

  • In order to change where it stores the files exactly, you can go ahead and change the $folder variable,
    the $folder var defines the location relative to home where to store the course content repo.
    Place your path within the ."/$name", place the path before name and include a final / before it.
  • In order to change the name of the folder, you can go ahead and hust change the $name variable.
  • In order to change the course list file change the $fileSpec Variable

Related

Wiki: Home