Namely, I first downloaded the wwassignment5 to the ubuntu 14.04 server, then moved the wwlink, and wwassignment directories into moodle, as indicated in the first two steps.
Im stuck on the step 3 where I log into moodle as admin to set up the ww module. I can't "see" the ww module or figure out how to get moodle to recognize "it" has been placed in the moodle directories.
I have tried updating moodle, to a later stable version. A seemed to have messed something up in the git process, a skill I get better at each time I use git!
I checked out branch 2.9, did a git pull, all seemed to go fine. However, when I open moodle and check notifications, it still says Im running 26. I used the git instructions posted at Moodle: In the moodle directory
sudo git branch --track MOODLE_29_STABLE origin MOODLE_29_STABLE
sudo git checkout MOODLE_29_STABLE
sudo git pull
I guess I have two issues:
1. How to correctly upgrade Moodle using git. Not sure why the git processes looks good with no errors, but version is not updating when I open moodle in a browser and check notifications.
2. How to find and set up the wwassignment(5) module within Moodle
Any help would be greatly appreciated.
https://docs.moodle.org/29/en/Step-by-step_Installation_Guide_for_Ubuntu
Are these the correct steps? Well at least they produced a "working" moodle! I have not tested the moodle thoroughly, but it is present and accessible.
My plan is to ensure I have moodle installed correctly, then I will come back to the wwassignment module installation and bridging.
Jim
The one that apache is looking at is in the latter of the two and /opt/moodle is where I was working. Now I am able to update moodle correctly and am running version 2.7. However, I am running into an error when trying to install the wwassignment module. Hopefully the following makes sense to someone:
Here is what I did:
moved wwlink directory into /var/www/html/moodle/blocks
moved wwassignment directory into /var/www/html/moodle/mod
When I open moodle at webpage it takes me immediately to a page for plugin checks
The only option is at the bottom of the page: "update moodle database now". When I click on this another page opens up with the following error (if I remove the two directories, the error goes away):
Oregon Tech Math Development for Moodle
Error code: detectedbrokenplugin
- line 591 of /lib/upgradelib.php: plugin_defective_exception thrown
- line 420 of /lib/upgradelib.php: call to upgrade_plugins_modules()
- line 1615 of /lib/upgradelib.php: call to upgrade_plugins()
- line 434 of /admin/index.php: call to upgrade_noncore()
error/moodle/detectedbrokenplugin
Note: You are currently viewing documentation for Moodle 2.7. Up-to-date documentation for the latest stable version of Moodle may be available here: error/moodle/detectedbrokenplugin.
A broken plugin, such as a module, has been detected. In order for the upgrade to proceed, the broken plugin should be deleted.
In the case of a Theme, then it is more than likely there is a file that has not been renamed correctly, or the theme is missing a vital component like a version.php, or that the version.php is not correct in some small detail, usually the plugin version. To correct this, you must add the theme/THEMENAME/lang/en/theme_THEMENAME.php file, where THEMENAME is the name of the theme folder. Inside that file, add the string "$string['pluginname'] = 'THEMENAME'; ". Make THEMENAME the name of your theme, however you want it displayed in the Theme selector.
Also, make sure to change your config.php file and version.php file to reflect the correct name:
In config.php: $THEME->name = 'NAME';
In version.php: $plugin->component = 'theme_NAME'; // Full name of the plugin (used for diagnostics)
For more information read Themes 2.0