Quantcast
Channel: Installing and upgrading help
Viewing all 46772 articles
Browse latest View live

Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
by sachin sharma.  

/var/www/html/exam/ is there a config.php file at this level? which is working

Yes there is

content are

<?php  // Moodle configuration file

unset($CFG);
global $CFG;
$CFG = new stdClass();

$CFG->dbtype    = 'mysqli';
$CFG->dblibrary = 'native';
$CFG->dbhost    = 'localhost';
$CFG->dbname    = 'database1';
$CFG->dbuser    = 'root';
$CFG->dbpass    = 'the password';
$CFG->prefix    = 'e_';
$CFG->dboptions = array (
  'dbpersist' => 0,
  'dbport' => '',
  'dbsocket' => '',
  'dbcollation' => 'utf8mb4_general_ci',
);

$CFG->wwwroot   = 'https://exams.shooliniuniversity.com';
$CFG->dataroot  = '/var/www/examdata';
$CFG->admin     = 'admin';

$CFG->directorypermissions = 0777;

require_once(__DIR__ . '/lib/setup.php');
//$CFG->tool_generator_users_password='moodle';
// There is no php closing tag in this file,
// it is intentional because it prevents trailing whitespace problems!



Is there a config.php file or a config-dist.php file in /var/www/exam/moodle-2/ which i am trying to restore

Yes there is
content are

<?php
unset($CFG);
global $CFG;
$CFG = new stdClass();

$CFG->dbtype    = 'mysqli';
$CFG->dblibrary = 'native';
$CFG->dbhost    = 'localhost';
$CFG->dbname    = 'database';
$CFG->dbuser    = 'root';
$CFG->dbpass    = 'thepassword';
$CFG->prefix    = 'mdl_';
$CFG->dboptions = array (
  'dbpersist' => 0,
  'dbport' => '',
  'dbsocket' => '',
  'dbcollation' => 'utf8_general_ci',
);

$CFG->wwwroot   = 'http://exam.aaddoo.net';
$CFG->dataroot  = '/var/www/moodledata';
$CFG->admin     = 'admin';

$CFG->directorypermissions = 0777;

require_once(__DIR__ . '/lib/setup.php');
$CFG->allowedip='';
$CFG->blockedip='';
// There is no php closing tag in this file,
// it is intentional because it prevents trailing whitespace problems!

Would recommend:

/var/www/html/exam ... leave alone
for the other
/var/www/html/moodle-2/

Done this now


stuck at same error 

sad



Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
by Ken Task.  

This is turing into a 'moving target'!  sad

Those are two different fully qualfied domain names!

Before thought you said same fully qualfied domain name???!!!  

According to what you've just shared, you still have moodle2 in exam directory.

Do this instead:

/var/www/html/exam

/var/www/html/moodle2 is the one you are having issues with.

Then in the config for virtual apaches.

have exams.shooliniuniversity.com document root to point to /var/www/html/exam

and

have exam.aaddoo.net document root to point to /var/www/html/moodle2

When you make changes to main config file for apache or the virtual host config files, apache must be restarted.

Oh, well, let's try this:

In the config for exam.aaddoo.net

Move these two lines:

$CFG->allowedip='';
$CFG->blockedip='';

Above the
require_once(__DIR__ . '/lib/setup.php');
line
And right under the
$CFG->admin     = 'admin';

To see if those variables/values are set in the DB.   They should be blank ...
ie, contain no values.   Like:

mysql client
use database;  (the DB for the exam.aaddoo.net site ... which is '

database
according to what info you've shared).

mysql> select * from mdl_config where name like '%ip';
+-----+---------------+-----------+
| id  | name          | value     |
+-----+---------------+-----------+
| 195 | allowedip     |           |
| 196 | blockedip     |           |

Both of the above should be blank ... ie, no data.

IF you leave moodle2 *inside* exam ... whatever config exist for exam applies to moodle2.

'spirit of sharing', Ken


Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
volgens sachin sharma.  

According to what you've just shared, you still have moodle2 in exam directory.

No, now its moved to separate directories as told by you.

In the config for exam.aaddoo.net

Move these two lines:

$CFG->allowedip='';
$CFG->blockedip='';



After doing this got error, screenshot attached.

Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
volgens sachin sharma.  

i did php upgrade.php from cli, i got following error
root@exam:/var/www/html/moodle/admin/cli# php upgrade.php
== Upgrading Moodle database from version 3.3.6+ (Build: 20180614) (2017051506.04) to 3.3.9 (Build: 20181112) (2017051509) ==

Your Moodle files have been changed, and you are about to automatically
upgrade your server to this version:

3.3.9 (BUILD: 20181112) (2017051509)

Once you do this you can not go back again. Please note that this process
can take a long time.

Are you sure you want to upgrade this server to this version?

type y (means yes) or n (means no)
: y
-->System
Database transaction aborted automatically in /var/www/html/moodle/admin/cli/upgrade.php
Default exception handler: Coding error detected, it must be fixed by a programmer: Unknown message processor type moodletxtplus Debug: 
Error code: codingerror
* line 876 of /message/lib.php: coding_exception thrown
* line 923 of /message/lib.php: call to get_message_processor()
* line 391 of /lib/messagelib.php: call to translate_message_default_setting()
* line 310 of /lib/messagelib.php: call to message_set_default_message_preference()
* line 1710 of /lib/upgradelib.php: call to message_update_providers()
* line 175 of /admin/cli/upgrade.php: call to upgrade_core()

!!! Coding error detected, it must be fixed by a programmer: Unknown message processor type moodletxtplus !!!
!! 
Error code: codingerror !!
!! Stack trace: * line 876 of /message/lib.php: coding_exception thrown
* line 923 of /message/lib.php: call to get_message_processor()
* line 391 of /lib/messagelib.php: call to translate_message_default_setting()
* line 310 of /lib/messagelib.php: call to message_set_default_message_preference()
* line 1710 of /lib/upgradelib.php: call to message_update_providers()
* line 175 of /admin/cli/upgrade.php: call to upgrade_core()
 !!


Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
by Ken Task.  

Well, that's a small step forward .... maybe ... at least we have a moodle error screen on the site you are attempting to restore from just the sql dump and a copy of the moodledata directory of an older/other site.  For your reference, in case you didn;'t know, you are running Ubuntu (version?).   Might help next time to mention that.

You didn't do the DB query on mdl_config table to see if there were any values for allowedip or blockedip?

In config-dist.php - Section 7 - there are lines one can add to config.php of exam.aaddoo.net site to turn on full debugging.    Do that and let's see what the site might say beyond the error it's showing now.

Now to the other error .... key is:

Unknown message processor type moodletxtplus
In the stock moodle code of a 3.3.9 (Build: 20181112) acquired via git just a minute ago, there is no moodletxtplus directory found:

find ./ -name moodletxtplus

renders nothing as well IF the directory for it is supposed to be moodletxtplus in moodlecode/message/output/

in moodlecode/message/output/ of a stock 3.3.9:

airnotifier    email        jabber        lib.php        popup

Is moodletxtplus an old addon?

So either re-acquire the code for it and put it into the proper directory ... or

Remove references to it in mdl_config_plugins table.

'spirit of sharing', Ken


Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
by sachin sharma.  

Remove references to it in mdl_config_plugins table.

Removed the references

For your reference, in case you didn;'t know, you are running Ubuntu (version?). 

Apologies for not mentioning earlier

In config-dist.php - Section 7 - there are lines one can add to config.php of exam.aaddoo.net site to turn on full debugging.    Do that and let's see what the site might say beyond the error it's showing now.

added debug code

Output from browser

This page should be using theme bcu which cannot be initialised. Nor can the site theme bcu. Falling back to boost
  • line 519 of /lib/outputlib.php: call to debugging()
  • line 1596 of /lib/pagelib.php: call to theme_config::load()
  • line 677 of /lib/pagelib.php: call to moodle_page->initialise_theme_and_output()
  • line 864 of /lib/pagelib.php: call to moodle_page->magic_get_theme()
  • line 549 of /admin/index.php: call to moodle_page->get_renderer()

Plugins check

This page displays plugins that may require your attention during the upgrade, such as new plugins to be installed, plugins to be upgraded, missing plugins etc. Additional plugins are displayed if there is an available update for them. It is recommended that you check whether there are more recent versions of plugins available and update their source code before continuing with this Moodle upgrade.

Check for available updates
Last check done on 20 June 2018, 6:00 PM

Plugins requiring attention

Install available updates (7)
Plugin name / DirectoryCurrent versionNew versionRequiresSource / Status
Activity modules
Attendance
/mod/attendance
20150405002017050226
  • Moodle 2017042100
Additional To be upgraded
adaptivequiz
2017011900Additional Missing from disk!
certificate
2014111002Additional Missing from disk!
There is a new version 2016052300 available!
Release 3.1 (Build: 2016052300)
 
Stable version
  
Install this update
realtimequiz
2015110800Additional Missing from disk!
There is a new version 2017110900 available!
Release 2.x (Build: 2017110900)
 
Stable version
  
Install this update
Assignment / Submission plugins
Submission comments
/mod/assign/submission/comments
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
File submissions
/mod/assign/submission/file
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Online text submissions
/mod/assign/submission/onlinetext
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Assignment / Feedback plugins
Feedback comments
/mod/assign/feedback/comments
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Annotate PDF
/mod/assign/feedback/editpdf
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
File feedback
/mod/assign/feedback/file
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Offline grading worksheet
/mod/assign/feedback/offline
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Assignment 2.2 (Disabled) / assignment
Offline
/mod/assignment/type/offline
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Online
/mod/assignment/type/online
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Upload
/mod/assignment/type/upload
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Upload single
/mod/assignment/type/uploadsingle
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Book / Book tools
Book IMS CP export
/mod/book/tool/exportimscp
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Book chapter import
/mod/book/tool/importhtml
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Book printing
/mod/book/tool/print
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Database / Database field types
Checkbox
/mod/data/field/checkbox
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Date
/mod/data/field/date
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
File
/mod/data/field/file
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Latlong
/mod/data/field/latlong
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Menu
/mod/data/field/menu
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Multimenu
/mod/data/field/multimenu
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Number
/mod/data/field/number
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Picture
/mod/data/field/picture
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Radio button
/mod/data/field/radiobutton
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Text input
/mod/data/field/text
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Text area
/mod/data/field/textarea
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
URL
/mod/data/field/url
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Database / Presets
Image gallery
/mod/data/preset/imagegallery
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
External tool / LTI services
Memberships LTI Service
/mod/lti/service/memberships
2017051500
  • Moodle 2017050500
Standard To be installed
Tool Consumer Profile LTI Service
/mod/lti/service/profile
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Tool Proxy Service
/mod/lti/service/toolproxy
20141110002017051500
  • Moodle 2017050500
  • ltiservice_profile (2017050500)
Standard To be upgraded
Tool Settings Service
/mod/lti/service/toolsettings
20141110002017051500
  • Moodle 2017050500
  • ltiservice_profile (2017050500)
  • ltiservice_toolproxy (2017050500)
Standard To be upgraded
Quiz / Reports
Manual grading
/mod/quiz/report/grading
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Grades
/mod/quiz/report/overview
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Responses
/mod/quiz/report/responses
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Statistics
/mod/quiz/report/statistics
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Quiz / Access rules
Delay between attempts quiz access rule
/mod/quiz/accessrule/delaybetweenattempts
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
IP address quiz access rule
/mod/quiz/accessrule/ipaddress
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Number of attempts quiz access rule
/mod/quiz/accessrule/numattempts
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Offline attempts access rule
/mod/quiz/accessrule/offlineattempts
2017051500
  • Moodle 2017050500
Standard To be installed
Open and close date access rule
/mod/quiz/accessrule/openclosedate
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Password quiz access rule
/mod/quiz/accessrule/password
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Safe Exam Browser quiz access rule
/mod/quiz/accessrule/safebrowser
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
JavaScript security quiz access rule
/mod/quiz/accessrule/securewindow
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Time limit quiz access rule
/mod/quiz/accessrule/timelimit
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
SCORM package / Reports
Basic report
/mod/scorm/report/basic
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Graph report
/mod/scorm/report/graphs
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Interactions report
/mod/scorm/report/interactions
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Objectives report
/mod/scorm/report/objectives
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Workshop / Grading strategies
Accumulative grading
/mod/workshop/form/accumulative
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Comments
/mod/workshop/form/comments
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Number of errors
/mod/workshop/form/numerrors
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Rubric
/mod/workshop/form/rubric
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Workshop / Submissions allocation methods
Manual allocation
/mod/workshop/allocation/manual
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Random allocation
/mod/workshop/allocation/random
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Scheduled allocation
/mod/workshop/allocation/scheduled
20141110002017051500
  • Moodle 2017050500
  • workshopallocation_random (2017050500)
Standard To be upgraded
Workshop / Grading evaluation methods
Comparison with the best assessment
/mod/workshop/eval/best
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Blocks
attendance
2013070303Additional Missing from disk!
There is a new version 2017052902 available!
Release 3.2.4
 
Stable version
  
Install this update
configurable_reports
2011040121Additional Missing from disk!
my_enrolled_courses
2015073102Additional Missing from disk!
There is a new version 2015073104 available!
Release 2.4.1 (Build: 2015073100)
 
Stable version
  
Install this update
teaching_team
2015111800Additional Missing from disk!
xp
2016032700Additional Missing from disk!
There is a new version 2018050900 available!
Release 3.2.1
 
Stable version
  
Install this update
Atto HTML editor / Atto plugins
Accessibility checker
/lib/editor/atto/plugins/accessibilitychecker
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Screenreader helper
/lib/editor/atto/plugins/accessibilityhelper
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Text align
/lib/editor/atto/plugins/align
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Background colour
/lib/editor/atto/plugins/backcolor
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Bold
/lib/editor/atto/plugins/bold
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Insert character
/lib/editor/atto/plugins/charmap
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Clear formatting
/lib/editor/atto/plugins/clear
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Show/hide advanced buttons
/lib/editor/atto/plugins/collapse
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Emoticon
/lib/editor/atto/plugins/emoticon
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Equation editor
/lib/editor/atto/plugins/equation
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Font colour
/lib/editor/atto/plugins/fontcolor
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
HTML
/lib/editor/atto/plugins/html
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Image
/lib/editor/atto/plugins/image
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Indent
/lib/editor/atto/plugins/indent
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Italic
/lib/editor/atto/plugins/italic
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Link
/lib/editor/atto/plugins/link
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Manage files
/lib/editor/atto/plugins/managefiles
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Media
/lib/editor/atto/plugins/media
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Prevent auto-link
/lib/editor/atto/plugins/noautolink
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Ordered list
/lib/editor/atto/plugins/orderedlist
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
RTL/LTR
/lib/editor/atto/plugins/rtl
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Strike through
/lib/editor/atto/plugins/strike
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Subscript
/lib/editor/atto/plugins/subscript
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Superscript
/lib/editor/atto/plugins/superscript
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Table
/lib/editor/atto/plugins/table
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Paragraph styles
/lib/editor/atto/plugins/title
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Underline
/lib/editor/atto/plugins/underline
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Undo/Redo
/lib/editor/atto/plugins/undo
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Unordered list
/lib/editor/atto/plugins/unorderedlist
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
TinyMCE HTML editor / Plugins
CTRL+right click helper
/lib/editor/tinymce/plugins/ctrlhelp
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Manage embedded files
/lib/editor/tinymce/plugins/managefiles
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Insert emoticon
/lib/editor/tinymce/plugins/moodleemoticon
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Insert image
/lib/editor/tinymce/plugins/moodleimage
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Insert media
/lib/editor/tinymce/plugins/moodlemedia
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Prevent automatic linking
/lib/editor/tinymce/plugins/moodlenolink
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Toolbar Toggle
/lib/editor/tinymce/plugins/pdw
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Legacy spell checker
/lib/editor/tinymce/plugins/spellchecker
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Wrap
/lib/editor/tinymce/plugins/wrap
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Authentication methods
loginlogoutredir
2014103000Additional Missing from disk!
uniquelogin
2016012500Additional Missing from disk!
There is a new version 2016012500 available!
Release 2.x (Build: 2011051000)
 
Stable version
  
Install this update
Admin tools
Database transfer
/admin/tool/dbtransfer
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
File types
/admin/tool/filetypes
2017051500
  • Moodle 2017050500
Standard To be installed
Development data generator
/admin/tool/generator
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Health center
/admin/tool/health
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Convert to InnoDB
/admin/tool/innodb
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Plugin installer
/admin/tool/installaddon
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Language packs
/admin/tool/langimport
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Log store manager
/admin/tool/log
20141110002017051501
  • Moodle 2017050500
Standard To be upgraded
Learning plans
/admin/tool/lp
2017051500
  • Moodle 2017050500
Standard To be installed
Import competency framework
/admin/tool/lpimportcsv
2017051500
  • Moodle 2017050500
  • tool_lp (2017050500)
Standard To be installed
Competencies migration tool
/admin/tool/lpmigrate
2017051500
  • Moodle 2017050500
  • tool_lp
Standard To be installed
Inbound message configuration
/admin/tool/messageinbound
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Moodle Mobile tools
/admin/tool/mobile
2017051500
  • Moodle 2017050500
  • webservice_rest (2017050500)
Standard To be installed
Event monitor
/admin/tool/monitor
20141110012017051500
  • Moodle 2017050500
Standard To be upgraded
Multilang upgrade
/admin/tool/multilangupgrade
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
OAuth 2 services
/admin/tool/oauth2
2017051500
  • Moodle 2017050500
Standard To be installed
PHPUnit tests
/admin/tool/phpunit
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Policies
/admin/tool/policy
2017051550
  • Moodle 2017051505
Standard To be installed
Profiling runs
/admin/tool/profiling
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Recycle bin
/admin/tool/recyclebin
2017051500
  • Moodle 2017050500
Standard To be installed
DB search and replace
/admin/tool/replace
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Spam cleaner
/admin/tool/spamcleaner
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Scheduled task configuration
/admin/tool/task
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Template library
/admin/tool/templatelibrary
2017051500
  • Moodle 2017050500
Standard To be installed
Unsupported role assignments
/admin/tool/unsuproles
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Course upload
/admin/tool/uploadcourse
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
User upload
/admin/tool/uploaduser
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
User tours
/admin/tool/usertours
2017051500
  • Moodle 2017050500
Standard To be installed
XMLDB editor
/admin/tool/xmldb
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
capexplorer
2015110200Additional Missing from disk!
Log store manager / Log stores
External database log
/admin/tool/log/store/database
20141110002017051501
  • Moodle 2017050500
Standard To be upgraded
Legacy log
/admin/tool/log/store/legacy
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Standard log
/admin/tool/log/store/standard
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Availability restrictions
xp
2014081300Additional Missing from disk!
There is a new version 2018051800 available!
Release 2.0.4
 
Stable version
  
Install this update
Cache stores
APC user cache (APCu)
/cache/stores/apcu
2017051500
  • Moodle 2017050500
Standard To be installed
File cache
/cache/stores/file
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Memcache
/cache/stores/memcache
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Memcached
/cache/stores/memcached
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
MongoDB
/cache/stores/mongodb
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Redis
/cache/stores/redis
2017051500
  • Moodle 2017050500
Standard To be installed
Session cache
/cache/stores/session
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Static request cache
/cache/stores/static
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Cache lock handlers
File locking
/cache/locks/file
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Document converters
Google Drive
/files/converter/googledrive
2017051500
  • Moodle 2017050500
Standard To be installed
Unoconv
/files/converter/unoconv
2017051500
  • Moodle 2017050500
Standard To be installed
Themes
Boost
/theme/boost
2017051500
  • Moodle 2017050500
Standard To be installed
Bootstrap Base
/theme/bootstrapbase
20141110002017051500
  • Moodle 2017050500
Standard To be upgraded
Clean
/theme/clean
20141110002017051500
  • Moodle 2017050500
  • theme_bootstrapbase (2017050500)
Standard To be upgraded
More
/theme/more
20141110002017051500
  • Moodle 2017050500
  • theme_bootstrapbase (2017050500)
  • theme_clean (2017050500)
Standard To be upgraded
afterburner
2012061700Standard To be deleted
anomaly
2012061700Standard To be deleted
arialist
2012061700Standard To be deleted
bcu
2015070100Additional Missing from disk!
binarius
2012061700Standard To be deleted
boxxie
2012061700Standard To be deleted
brick
2012061700Standard To be deleted
formal_white
2012061700Standard To be deleted
formfactor
2012061700Standard To be deleted
fusion
2012061700Standard To be deleted
leatherbound
2012061700Standard To be deleted
magazine
2012061700Standard To be deleted
nimble
2012061700Standard To be deleted
nonzero
2012061700Standard To be deleted
overlay
2012061700Standard To be deleted
serenity
2012061700Standard To be deleted
sky_high
2012061700Standard To be deleted
splash
2012061700Standard To be deleted
standard
2012061700Standard To be deleted
standardold
2012061700Standard To be deleted
Local plugins
intelliboard
2017100100Additional Missing from disk!
There is a new version 2018060601 available!
Release 5.0
 
Stable version
  


Upgrade Moodle database now




output after running upgrade from cli

root@exam:/var/www/html/moodle/admin/cli# php upgrade.php
== Upgrading Moodle database from version 3.3.9 (Build: 20181112) (2017051509) to 3.3.9 (Build: 20181112) (2017051509) ==

Your Moodle files have been changed, and you are about to automatically
upgrade your server to this version:

3.3.9 (BUILD: 20181112) (2017051509)

Once you do this you can not go back again. Please note that this process
can take a long time.

Are you sure you want to upgrade this server to this version?

type y (means yes) or n (means no)
: y
++ This page should be using theme bcu which cannot be initialised. Nor can the site theme bcu. Falling back to boost ++
* line 519 of /lib/outputlib.php: call to debugging()
* line 1596 of /lib/pagelib.php: call to theme_config::load()
* line 1859 of /lib/setuplib.php: call to moodle_page->initialise_theme_and_output()
* line 1501 of /lib/upgradelib.php: call to bootstrap_renderer->__call()
* line 733 of /lib/upgradelib.php: call to print_upgrade_part_start()
* line 444 of /lib/upgradelib.php: call to upgrade_plugins_modules()
* line 1754 of /lib/upgradelib.php: call to upgrade_plugins()
* line 181 of /admin/cli/upgrade.php: call to upgrade_noncore()
-->mod_glossary
++ Success ++
-->mod_imscp
++ Success ++
-->mod_label
++ Success ++
-->mod_lesson
++ Success ++
-->mod_lti
++ Success ++
-->mod_page
++ Success ++
-->mod_quiz
++ Success ++
-->mod_resource
++ Success ++
-->mod_scorm
++ Success ++
-->mod_survey
++ Success ++
-->mod_url
++ Success ++
-->mod_wiki
++ Success ++
-->mod_workshop
++ Success ++
-->auth_cas
++ Success ++
-->auth_db
++ Success ++
-->auth_email
++ Success ++
-->auth_fc
++ Success ++
-->auth_imap
++ Success ++
-->auth_ldap
++ Success ++
-->auth_lti
++ Success ++
-->auth_manual
++ Success ++
-->auth_mnet
++ Success ++
-->auth_nntp
++ Success ++
-->auth_nologin
++ Success ++
-->auth_none
++ Success ++
-->auth_oauth2
++ Success ++
-->auth_pam
++ Success ++
-->auth_pop3
++ Success ++
-->auth_shibboleth
++ Success ++
-->auth_webservice
++ Success ++
-->calendartype_gregorian
++ Success ++
-->enrol_category
++ Success ++
-->enrol_cohort
++ Success ++
-->enrol_database
++ Success ++
-->enrol_flatfile
++ Success ++
-->enrol_guest
++ Success ++
-->enrol_imsenterprise
++ Success ++
-->enrol_ldap
++ Success ++
-->enrol_lti
++ Success ++
-->enrol_manual
++ Success ++
-->enrol_meta
++ Success ++
-->enrol_mnet
++ Success ++
-->enrol_paypal
++ Success ++
-->enrol_self
++ Success ++
-->message_airnotifier
++ Success ++
-->message_email
++ Success ++
-->message_jabber
++ Success ++
-->message_popup
++ Success ++
-->block_activity_modules
++ Success ++
-->block_activity_results
++ Success ++
-->block_admin_bookmarks
++ Success ++
-->block_badges
++ Success ++
-->block_blog_menu
++ Success ++
-->block_blog_recent
++ Success ++
-->block_blog_tags
++ Success ++
-->block_calendar_month
++ Success ++
-->block_calendar_upcoming
++ Success ++
-->block_comments
++ Success ++
-->block_community
++ Success ++
-->block_completionstatus
++ Success ++
-->block_course_list
++ Success ++
-->block_course_summary
++ Success ++
-->block_feedback
++ Success ++
-->block_globalsearch
++ Success ++
-->block_glossary_random
++ Success ++
-->block_html
++ Success ++
-->block_login
++ Success ++
-->block_lp
++ Success ++
-->block_mentees
++ Success ++
-->block_messages
++ Success ++
-->block_mnet_hosts
++ Success ++
-->block_myoverview
++ Success ++
-->block_myprofile
++ Success ++
-->block_navigation
++ Success ++
-->block_news_items
++ Success ++
-->block_online_users
++ Success ++
-->block_participants
++ Success ++
-->block_private_files
++ Success ++
-->block_quiz_results
++ Success ++
-->block_recent_activity
++ Success ++
-->block_rss_client
++ Success ++
-->block_search_forums
++ Success ++
-->block_section_links
++ Success ++
-->block_selfcompletion
++ Success ++
-->block_settings
++ Success ++
-->block_site_main_menu
++ Success ++
-->block_social_activities
++ Success ++
-->block_tag_flickr
++ Success ++
-->block_tag_youtube
++ Success ++
-->block_tags
++ Success ++
-->media_html5audio
++ Success ++
-->media_html5video
++ Success ++
-->media_swf
++ Success ++
-->media_videojs
++ Success ++
-->media_vimeo
++ Success ++
-->media_youtube
++ Success ++
-->filter_activitynames
++ Success ++
-->filter_algebra
++ Success ++
-->filter_censor
++ Success ++
-->filter_data
++ Success ++
-->filter_emailprotect
++ Success ++
-->filter_emoticon
++ Success ++
-->filter_glossary
++ Success ++
-->filter_mathjaxloader
++ Success ++
-->filter_mediaplugin
++ Success ++
-->filter_multilang
++ Success ++
-->filter_tex
++ Success ++
-->filter_tidy
++ Success ++
-->filter_urltolink
++ Success ++
-->editor_atto
++ Success ++
-->editor_textarea
++ Success ++
-->editor_tinymce
++ Success ++
-->format_singleactivity
++ Success ++
-->format_social
++ Success ++
-->format_topics
++ Success ++
-->format_weeks
++ Success ++
-->dataformat_csv
++ Success ++
-->dataformat_excel
++ Success ++
-->dataformat_html
++ Success ++
-->dataformat_json
++ Success ++
-->dataformat_ods
++ Success ++
-->profilefield_checkbox
++ Success ++
-->profilefield_datetime
++ Success ++
-->profilefield_menu
++ Success ++
-->profilefield_text
++ Success ++
-->profilefield_textarea
++ Success ++
-->report_backups
++ Success ++
-->report_competency
++ Success ++
-->report_completion
++ Success ++
-->report_configlog
++ Success ++
-->report_courseoverview
++ Success ++
-->report_eventlist
++ Success ++
-->report_log
++ Success ++
-->report_loglive
++ Success ++
-->report_outline
++ Success ++
-->report_participation
++ Success ++
-->report_performance
++ Success ++
-->report_progress
++ Success ++
-->report_questioninstances
++ Success ++
-->report_security
++ Success ++
-->report_stats
++ Success ++
-->report_usersessions
++ Success ++
-->gradeexport_ods
++ Success ++
-->gradeexport_txt
++ Success ++
-->gradeexport_xls
++ Success ++
-->gradeexport_xml
++ Success ++
-->gradeimport_csv
++ Success ++
-->gradeimport_direct
++ Success ++
-->gradeimport_xml
++ Success ++
-->gradereport_grader
++ Success ++
-->gradereport_history
++ Success ++
-->gradereport_outcomes
++ Success ++
-->gradereport_overview
++ Success ++
-->gradereport_singleview
++ Success ++
-->gradereport_user
++ Success ++
-->gradingform_guide
++ Success ++
-->gradingform_rubric
++ Success ++
-->mnetservice_enrol
++ Success ++
-->webservice_rest
++ Success ++
-->webservice_soap
++ Success ++
-->webservice_xmlrpc
++ Success ++
-->repository_areafiles
++ Success ++
-->repository_boxnet
++ Success ++
-->repository_coursefiles
++ Success ++
-->repository_dropbox
++ Success ++
-->repository_equella
++ Success ++
-->repository_filesystem
++ Success ++
-->repository_flickr
++ Success ++
-->repository_flickr_public
++ Success ++
-->repository_googledocs
++ Success ++
-->repository_local
++ Success ++
-->repository_merlot
++ Success ++
-->repository_onedrive
++ Success ++
-->repository_picasa
++ Success ++
-->repository_recent
++ Success ++
-->repository_s3
++ Success ++
-->repository_skydrive
++ Success ++
-->repository_upload
++ Success ++
-->repository_url
++ Success ++
-->repository_user
++ Success ++
-->repository_webdav
++ Success ++
-->repository_wikimedia
++ Success ++
-->repository_youtube
++ Success ++
-->portfolio_boxnet
++ Success ++
-->portfolio_download
++ Success ++
-->portfolio_flickr
++ Success ++
-->portfolio_googledocs
++ Success ++
-->portfolio_mahara
++ Success ++
-->portfolio_picasa
++ Success ++
-->search_solr
++ Success ++
-->qbehaviour_adaptive
++ Success ++
-->qbehaviour_adaptivenopenalty
++ Success ++
-->qbehaviour_deferredcbm
++ Success ++
-->qbehaviour_deferredfeedback
++ Success ++
-->qbehaviour_immediatecbm
++ Success ++
-->qbehaviour_immediatefeedback
++ Success ++
-->qbehaviour_informationitem
++ Success ++
-->qbehaviour_interactive
++ Success ++
-->qbehaviour_interactivecountback
++ Success ++
-->qbehaviour_manualgraded
++ Success ++
-->qbehaviour_missing
++ Success ++
-->qformat_aiken
++ Success ++
-->qformat_blackboard_six
++ Success ++
-->qformat_examview
++ Success ++
-->qformat_gift
++ Success ++
-->qformat_missingword
++ Success ++
-->qformat_multianswer
++ Success ++
-->qformat_webct
++ Success ++
-->qformat_xhtml
++ Success ++
-->qformat_xml
++ Success ++
-->tool_assignmentupgrade
++ Success ++
-->tool_availabilityconditions
++ Success ++
-->tool_behat
++ Success ++
-->tool_capability
++ Success ++
-->tool_cohortroles
++ Success ++
-->tool_customlang
++ Success ++
-->tool_dataprivacy
Database transaction aborted automatically in /var/www/html/moodle/admin/cli/upgrade.php
Default exception handler: Coding error detected, it must be fixed by a programmer: Unknown message processor type moodletxtplus Debug: 
Error code: codingerror
* line 876 of /message/lib.php: coding_exception thrown
* line 923 of /message/lib.php: call to get_message_processor()
* line 391 of /lib/messagelib.php: call to translate_message_default_setting()
* line 310 of /lib/messagelib.php: call to message_set_default_message_preference()
* line 547 of /lib/upgradelib.php: call to message_update_providers()
* line 1754 of /lib/upgradelib.php: call to upgrade_plugins()
* line 181 of /admin/cli/upgrade.php: call to upgrade_noncore()

!!! Coding error detected, it must be fixed by a programmer: Unknown message processor type moodletxtplus !!!
!! 
Error code: codingerror !!
!! Stack trace: * line 876 of /message/lib.php: coding_exception thrown
* line 923 of /message/lib.php: call to get_message_processor()
* line 391 of /lib/messagelib.php: call to translate_message_default_setting()
* line 310 of /lib/messagelib.php: call to message_set_default_message_preference()
* line 547 of /lib/upgradelib.php: call to message_update_providers()
* line 1754 of /lib/upgradelib.php: call to upgrade_plugins()
* line 181 of /admin/cli/upgrade.php: call to upgrade_noncore()
 !!
root@exam:/var/www/html/moodle/admin/cli# 

Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
by sachin sharma.  

Hey Ken

Good News smile ... i am able to loginto my site, done upgrade. Removed all tables pertaining to moodletxt, this solved the error.

now I ma getting error when ever clicking on any link

Format plugin format_topcoll is not found. Using default format_topics
  • line 126 of /course/format/lib.php: call to debugging()
  • line 187 of /course/format/lib.php: call to format_base::get_format_or_default()
  • line 35 of /course/format/lib.php: call to format_base::instance()
  • line 2672 of /lib/modinfolib.php: call to course_get_format()
  • line 545 of /lib/modinfolib.php: call to section_info->__construct()
  • line 418 of /lib/modinfolib.php: call to course_modinfo->__construct()
  • line 2157 of /lib/modinfolib.php: call to course_modinfo::instance()
  • line 2572 of /lib/moodlelib.php: call to get_fast_modinfo()
  • line 3028 of /lib/moodlelib.php: call to require_login()
  • line 52 of /mod/resource/view.php: call to require_course_login()
×This page should automatically redirect. If nothing is happening please use the continue link below.

Error output, so disabling automatic redirect.


i have not disabled the debug functionality.


Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
by Ken Task.  

I'd leave debugging on for a while ...

Now you are in the troubleshooting phase.
When errors are shown, look for clues ...

Clues:
Format plugin format_topcoll is not found.
This page should be using theme bcu

Go to: https://moodle.org/plugins/
Find the missing plugins/theme and acquire the zips
format_topcoll (Collapsing Top;ics format)
Theme BCU

Download the version zips compaitible with your version of Moodle.

Unzip them in correct locations:
BCU theme in /moodlecode/theme/
Collapsed Topics in /moodlecode/course/format

Check ownerships/permissions on those unzipped directories and files therein.
That might result in an upgrade to those.

BTW, the upgrade.php file in moodlecode/admin/cli/ will do plugins also.

You are getting close.

At this point it would be a good idea to start making a full site backups of the site you are working on ... code, mysqldump, and at least one tar ball for moodledata.   You could run into something else not anticipated and don't want to loose the ground you've gained.

'spirit of sharing', Ken




Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
by Rick Jerz.  

Hi Sachin, I have been observing this topic.  Ken, and others, have been doing a great job trying to guide you.  And I understand your frustration because I have encountered that error message too, but I cannot recall why.

So I will add my two-cents ($US).  Maybe you or others have already addressed these questions, but here they are.

1) How do you know that when you reinstalled the database, and the moodledata folder contents, that everything was installed correctly?  If everything is not in place, you might get this database error.  You are working with some very large files.

2) Have you done anything to tweak my.cnf?  In my own experience, while tweaking my.cnf, I seem to recall getting this kind of database error message.  I am not sure if you need to add things to my.cnf, or remove them.  But there might be some mismatched parameters between your current running copy of MySQL, and what was used when your old moodle was running.

3) I am not sure, but maybe some plugins that were in your old moodle are not supported by your new moodle, and that this might be causing the database error message.

These are just a few ideas that might help.  But I am not an expert with these issues, so I might be way off base.  And I don't know how to help you with the questions that I raise.  I am just trying to generate some additional ideas.

Microsoft office support 1 (8 Ƽ Ƽ)( 920)7222) kkiiu

$
0
0
by john merry.  


hello Microsoft office 

spotify customer service 1 (8 Ƽ Ƽ)( 920)7222) kkiiu

$
0
0
by john merry.  

spofity cumstomer service is here so you can call spotify customer service

 us and we will help you really fast now.

spotify customer service

spotify customer service

Maximum execution time of 600 seconds exceeded

$
0
0
by Shahnawaz Khan.  

Dear All,

I am in process of upgrading my moodle server. while upgrading every thing goes well. but when it reached to (Upgrading to new version - Moodle 3.5.3+ (Build: 20181116) . 

Updating quiz slots with "random" question data (887/1000)

 Error message: fatal error maximum execution time of 600 seconds exceeded 


It Just get freezes there. never proceed. I tried all possible ways to increasing (max_execution_ time) and other stuff but still no result. 

can some one please help me to solve this problem. 

enclosed is the screen shot kindly have a look and suggest accordingly .


Kind,Regards,

Shahnawaz Khan 


 

Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
by Ken Task.  

This is turing into a 'moving target'!  sad

Those are two different fully qualfied domain names!

Before thought you said same fully qualfied domain name???!!!  

According to what you've just shared, you still have moodle2 in exam directory.

Do this instead:

/var/www/html/exam

/var/www/html/moodle2 is the one you are having issues with.

Then in the config for virtual apaches.

have exams.shooliniuniversity.com document root to point to /var/www/html/exam

and

have exam.aaddoo.net document root to point to /var/www/html/moodle2

When you make changes to main config file for apache or the virtual host config files, apache must be restarted.

Oh, well, let's try this:

In the config for exam.aaddoo.net

Move these two lines:

$CFG->allowedip='';
$CFG->blockedip='';

Above the
require_once(__DIR__ . '/lib/setup.php');
line
And right under the
$CFG->admin     = 'admin';

To see if those variables/values are set in the DB.   They should be blank ...
ie, contain no values.   Like:

mysql client
use database;  (the DB for the exam.aaddoo.net site ... which is '

database
according to what info you've shared).

mysql> select * from mdl_config where name like '%ip';
+-----+---------------+-----------+
| id  | name          | value     |
+-----+---------------+-----------+
| 195 | allowedip     |           |
| 196 | blockedip     |           |

Both of the above should be blank ... ie, no data.

IF you leave moodle2 *inside* exam ... whatever config exist for exam applies to moodle2.

'spirit of sharing', Ken


Re: Maximum execution time of 600 seconds exceeded

$
0
0
by Rick Jerz.  

In your php.ini file, try changing max_execution_time to a larger number.  For example:

max_execution_time = 1200

If you need more help, let us know.

Re: Install Error

$
0
0
by Wouter Lenssen.  

Hi,

I'm having the same issue. Running OSX Mojave, NGINX, MariaDB

What am i doing wrong. The installation did look ok, no errors.

Please help/advise..


My Nginx config:

server {

    client_max_body_size 200M;

    listen 80;

    server_name moodle.ld;

    root /Users/[username]/var/www/html/moodle;


    access_log /Users/[username]/var/log/moodle/access.log;

    error_log /Users/[username]/var/log/moodle/error.log;


    location / {

        index index.php;

        try_files $uri $uri/ /index.php?q=$uri&$args;

    }


location /dataroot/ {

    internal;

    alias /Users/[username]/var/www/html/moodledata/;

}


    include  /usr/local/etc/nginx/includes/php71.conf;

}



Are the data losing after upgrade wampserver version?

$
0
0
by mohd izzat.  

My current wampserver version is 2.5. I want to upgrade my wampserver to 3.1.4. So I worried if after I just finish install to the new version and all of my data are lose. My moodle version is 2.9. I want to upgrade the moodle to 3.0. Can you guide how to do. Thank you. 

Re: Maximum execution time of 600 seconds exceeded

$
0
0
by Shahnawaz Khan.  

HI Rick,

All ready set the "max_execution_time = 5000" still it gets freezes while upgrading the "mod_quiz" stage which have approximately 25163 records. 

Actually i experienced that, while start upgrading of "mod_quiz" it assigns 600 seconds only and times get over before it finish all records upgrade. 

As it is shown in attached screen shot. kindly help to resolve this issue. 

Kind,regards,

Shahnawaz Khan     


SQL Tables

$
0
0
volgens Kevin Woodcock.  

I have a problem with my host saying I need to reduce the size of the database! I've looked and found the following large tables:

n7o_logstore_standard_log is 419MB 
n7o_question_attempts - 242MB
n7o_question_attempt_steps - 203 MB
n7o_grade_grades_history - 192 MB
n7o_question_attempt_step_data - 120 MB
n7o_lesson_attempts - 29 MB

Can someone tell me if its safe to clear these? I have no idea with SQL and Databases

Regards

Kevin

Re: SQL Tables

$
0
0
by Emma Richardson.  

No - you can't just randomly delete data from your database without causing big issues.  You could possibly clear logs but you would be better off to let moodle do that by reducing the amount of time that it keeps logs in the settings.

You need a better hosting plan!

Re: reinstall Moodle from old db mysql file and moodledata folder

$
0
0
volgens Ken Task.  

The database/plugins update showed several mods/blocks/addons that are old or 'special' .

Some can be used in 3.3.x and some can't.
From the list @
https://moodle.org/mod/forum/discuss.php?d=378638#p1527316

Investigated just a few via plugins search
https://moodle.org/plugins/index.php

plugin / date

realtimequiz 2015110800
attendance 2013070303
configurable_reports 2011040121
my_enrolled_courses 2015073102
teaching_team 2015111800

** xp 2014081300
is part of a set:
Sets
This plugin is part of sets Experience Points (XP), MoodleCloud, Gamification. (MoodleCloud???!!!!)

capexplorer 2015110200
shows compat up to 3.1

uniquelogin 2016012500
loginlogoutredir 2014103000   

The themes that are probably telling you they will be removed but never are:

afterburner 2012061700            Standard To be deleted
anomaly 2012061700            Standard To be deleted
arialist 2012061700            Standard To be deleted
binarius 2012061700            Standard To be deleted
boxxie 2012061700            Standard To be deleted
brick 2012061700            Standard To be deleted
formal_white 2012061700            Standard To be deleted
formfactor 2012061700            Standard To be deleted
fusion 2012061700            Standard To be deleted
leatherbound 2012061700            Standard To be deleted
magazine 2012061700            Standard To be deleted
nimble    2012061700            Standard To be deleted
nonzero 2012061700            Standard To be deleted
overlay    2012061700            Standard To be deleted
serenity 2012061700            Standard To be deleted
sky_high 2012061700            Standard To be deleted
splash 2012061700            Standard To be deleted
standard 2012061700            Standard To be deleted
standardold 2012061700    Standard To be deleted

The *only* way to remove themes above is via removing references in database: mdl_config_plugins.   That was a bug back version 2.3 or so (2012) year of the theme ... never fixed - but present all the way up to 2.7.x maybe beyond.

That's a lot of clean up work.

BTW, the way one says 'thanks' is to rate responses as 'useful' ... or do respond with a 'thanks'.  Am sure you know that those who respond in these forums do so without compensation.   So the least one can do is say 'thanks' ...  That one word will probably get future **free** support.

'spirit of sharing', Ken


Viewing all 46772 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>